전체 글
-
TroubleshootingsPrograming Languages, Framework/Spring, Springboot 2021. 8. 24. 04:50
Error message : unable to start servletwebserverapplicationcontext due to missing servletwebserverfactory bean Don't forget '@SpringBootApplication' Add spring-boot-starter-web, spring-boot-starter-tomcat in Gradle or Maven Remove all springframework dependencies, Just add spring-boot-starter
-
setting java dev env for MacOS vscodePrograming Languages, Framework/Spring, Springboot 2020. 7. 9. 17:51
# install jdk $ /usr/libexec/java_home -V $ vi ~/.bash_profile export JAVA_HOME=$(/usr/libexec/java_home -v 11) $ source ~/.bash_profile $ java -version OR $ brew tap AdoptOpenJDK/openjdk $ brew cask install adoptopenjdk11 $ java -version # install maven, tomcat $ brew install maven $ mvn -version $ vi ~/.bash_profile export M2_HOME=/usr/local/Cellar/maven/3.6.3_1/libexec export M2=$M2_HOME/bin..
-
kubernetes카테고리 없음 2020. 2. 11. 21:20
1. deployment.yaml 2. service.yaml 3. ingress.yaml #ingress.yaml 1. kubectl apply -f ingress.yaml 2. Install nginx ingress controller - kubectl apply -f https://raw.githubusercontent.com/kubernetes/ingress-nginx/nginx-0.28.0/deploy/static/mandatory.yaml - kubectl expose deploy nginx-ingress-controller --type=NodePort -n ingress-nginx 3. check - kubectl get svc -n ingress-nginx or - kubernetes da..
-
minikube skaffold카테고리 없음 2020. 2. 1. 14:45
# install minikube windows > minikube 설치 https://github.com/kubernetes/minikube/releases minikube-windows-amd64.exe 실행 파일을 다운로드 편의를 위해 minikube.exe 로 이름 변경 파일이 위치한 디렉터리 경로를 PATH 환경 변수로 등록 windows > kubectl 설치 https://storage.googleapis.com/kubernetes-release/release/v1.14.0/bin/windows/amd64/kubectl.exe kubectl.exe 실행 파일을 다운로드 파일이 위치한 디렉터리 경로를 PATH 환경 변수로 등록 설치 확인 mikube start (minikube의 쿠버네티스 클..
-
git commandsBackend, Environment/Git 2019. 12. 30. 15:44
## import sources from existing folder - Go to your project folder : $ cd /my/project - create .gitignore - Add your project files to the repository $ git init $ git add . $ git commit -m "Initial import" - Launch the following command, replace with your repository name : $ git remote add origin https://@ecmgitint.lfconfig.xyz/ ex) $ git remote add origin https://deluxjun@ecmgitint.lfconfig.xyz/..
-
docker with Gitlab CI/CDBackend, Environment 2019. 12. 30. 15:25
OS : CentOS7 1. install Gitlab 2. install docker 3. create Gitlab project 4. install Gitlab runner 5. add Kubernetes Cluster yum update -y Docker 설치 및 설정 Docker 설치 스크립트 # 필수 패키지 설치 sudo yum install -y yum-utils device-mapper-persistent-data lvm2 # Docker CE repo 구성 sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo # Docker CE 설치 sudo yum -y install docker..