일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
- install
- Web
- 웹개발
- Database
- apache
- 스프링부트 #springboot #project #Intellij
- mysql
- SpringSecurity
- HATEOAS
- ojdbc
- springboot
- undefined
- 스프링시큐리티
- mssql
- SpringInitializer
- RESTful
- Tomcat #SpringFramework
- Developer
- Oracle11g
- sqldeveloper
- tcping
- 환경변수
- restapi
- springboot #controller #jsp
- Maven
- oracle
- IntelliJ
- 스프링부트
- development
- postman
- Today
- Total
목록분류 전체보기 (49)
여백에 도장 찍기
Environment CentoOS 7.4 rpm-build 설치 [root@localhost ~]# yum install -y rpm-build rpm build용 계정 생성 (root 계정 사용하지 않기 위해) [root@localhost ~]# useradd builduser [root@localhost ~]# su - builduser [builduser@localhost ~]$
Environment CentOS7 Installation # yum install -y httpd Apache # systemctl start httpd.service # systemctl enable httpd.service # systemctl status httpd.service Install Test http://ip_or_domain 접속하여 다음과 같은 화면이 보여지면 설치 및 실행이 정상적으로 이루어진 것이다. Configuration File - Apache의 설정파일은 '/etc/httpd/conf/httpd.conf' 이다. - /etc/httpd/conf.d 디렉터리는 추가적인 웹 서버 설정파일을 포함한다. httpd.conf 파일에서는 conf.d/*.conf 파일을 모두 Incl..
Git 설치없이 Git Repository File을 가져오는 법 Git repository에 존재하는 하나의 스크립트 파일을 서버에 내려받고자 하는 경우에는 파일하나 때문에 git을 설치하기 부담스럽다. 이런 경우 wget 이나 curl을 사용하여 해당 파일을 출력하거나 저장할 수 있다. TOKEN: User settings > Access Tokens > Personal Access Tokens 에서 토큰 생성을 생성한다. Token Name입력 및 Expires at을 설정한 뒤, scopes를 설정하고 Create personal access token을 클릭하면 생성된다. git_filerepos: project > Files > 가져오고자 하는 파일 > Open raws 클릭하여 url 확인 ..
Git Repository Adding - Existing folder 폴더가 존재할 경우 git repository에 폴더를 추가하는 과정은 다음과 같다. # cd my_folder # git init # git remote add origin https://git_repo_url # git add . # git commit -m 'initial commit' # git push -u origin master * push 했을 때 다음과 같은 에러가 발생할 수 있다. error: The requested URL returned error: 401 Unauthorized while accessing https://git_repo_url/info/refs fatal: HTTP request failed >..