일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
- HATEOAS
- Developer
- 환경변수
- 스프링부트 #springboot #project #Intellij
- tcping
- restapi
- Database
- 웹개발
- Tomcat #SpringFramework
- Maven
- IntelliJ
- SpringSecurity
- springboot
- springboot #controller #jsp
- ojdbc
- mysql
- SpringInitializer
- oracle
- Web
- sqldeveloper
- 스프링부트
- undefined
- 스프링시큐리티
- apache
- postman
- development
- Oracle11g
- mssql
- RESTful
- install
- Today
- Total
목록분류 전체보기 (49)
여백에 도장 찍기
CentOS7 에 Apache Tomcat 설치 [root@localhost ~]# wget http://archive.apache.org/dist/tomcat/tomcat-8/v8.5.11/bin/apache-tomcat-8.5.11.tar.gz [root@localhost ~]# tar xvfz apache-tomcat-8.5.11.tar.gz [root@localhost ~]# mv apache-tomcat-8.5.11 /usr/local [root@localhost ~]# /usr/local/apache-tomcat-8.5.11/bin/startup.sh // Tomcat 시작 [root@localhost ~]# /usr/local/apache-tomcat-8.5.11/bin/shutdown.sh..
보호되어 있는 글입니다.
1. NGINX 설치 및 시작 CentOS 7 환경에 Nginx를 설치하기 위해서는 'epel-release' 라는 rpm을 먼저 설치해주어야 한다. [root@localhost ~]# yum -y install epel-release [root@localhost ~]# yum -y install nginx NGINX를 부팅 시 실행시키는 심볼릭 링크를 생성하고, NGINX를 시작한다. [root@localhost ~]# systemctl enable nginx [root@localhost ~]# systemctl start nginx 2. NGINX 설정 파일에서 HTTP > HTTPS Redirection 설정 적용 CentOS7에서 Default로 설정된 Nginx 설정파일은 '/etc/nginx/..
Git - Submodule Git의 서브모듈은 Git 저장소 안에 다른 Git 저장소를 둘 수 있게 해준다. 이렇게 해도 두 Git 저장소 모두 여전히 독립적으로 관리된다. 서브모듈을 사용하는 프로젝트를 Clone하면 해당 서브모듈 디렉토리는 빈 디렉터리다: 먼저 git submodule init 명령으로 서브모듈을 초기화하고 git submodule update 명령으로 서버에서 데이터를 가져온다 [vagrant:root@localhost ~]# git clone 'http://git_repo_dir' [vagrant:root@localhost ~]# submodule init [vagrant:root@localhost ~]# submodule update
git clone 을 통해 remote repository 의 데이터를 내려받으려고 할때, 다음과 같은 에러가 발생하는 경우가 있다. ※ Error: fatal: unable to access 'remote repository url': SSL connect error Solution: [vagrant:root@localhost ~]# yum -y update nss curl >> 다시 git clone 수행하면 정상 작동하는 것을 확인할 수 있다.