젠킨스 파이프라인 젠킨스 파이프라인 플러그인 https://wiki.jenkins.io/display/JENKINS/Pipeline+Plugin 젠킨스 UI 프로젝트 Blue Ocean https://jenkins.io/doc/book/blueocean/ CI/CI__Jenkins 2019.06.05
도커에 젠킨스 설치하기 2) 젠킨스 설치 --------아직 설치 안해봄... 설치할 내용들 정리 docker run -p 7707:8080 -p 50000:50000 jenkins/jenkins:lts docker ps -al -status의 ports, names 확인 exec로 젠킨스 bash로 이동 docker exec -it bewe_jenkins /bin/bash 여기서 jenkins_home이 있는지 확인 car /var/junkins_home/secrets/initialAdminPassword 여기서 패스워드 저장 jenkins 접속 암호 입력 여기서 젠킨스가 알아서 설치된다고 합니다.. 젠킨스 계정 생성 도커에서 젠킨스에 접근 docker exec -it bewe_jenkins /bin/bash ssh-keygen cat /va.. CI/CI__Jenkins 2019.06.05
도커에 젠킨스 설치하기 1) 도커 설치 docker 설치하기 설치 및 설정 sudo yum install -y yum-utils sudo yum-config-manager --add-repo https://download.docker.com/linux/centos/docker-ce.repo sudo yum makecache fast sudo yum install -y docker-ce sudo systemctl start docker sudo systemctl enable docker sudo gpasswd -a root docker centos 6과 7은 설치 방법이 다르다 7 명령어로 6에서 설치하려고 해봤자 실패 설치가 정상적으로 되었다면 버전 확인 docker version 도커 기본 명령어 도커 컨테이너 확인 docker ps 도커 .. CI/CI__Jenkins 2019.06.05
jenkins 정리 build 서버에 올릴 수 있는 상태로 만드는 것 deploy(배포) 서버에 올려서 사용자가 사용할 수 있게 하는 것 jenkins 빌드 자동화 툴 카테고리 없음 2019.06.05
could not find tools.jar in the active jre could not find tools.jar in the active jre 아래 내용중 jdk 버젼은 컴퓨터에 설치된 버젼을 체크하고 해야한다 1) eclipse.ini(or SpringToolSuite4.ini)에에) 추가하기 \-vm C:\\Program Files\\Java\\jdk1.8.0\_171\\bin\\[javaw.exe](javaw.exe) 2) 터미널에서 던져보기 javac -version 만약 이때 버젼 안나오면 JAVA_HOME을 다시 잡아준다 3) 정말로 tools.jar가 없을 수도 있다 C:\Program Files\Java\jdk1.8.0_171\lib 에서 tools.jar를 복사해서 C:\Program Files\Java\jre1.8.0_181\lib에 넣어준다 4) 이.. JAVA/JAVA__IDE 2019.06.05
springboot cli 다운로드 사이트 주소 https://repo.spring.io/release/org/springframework/boot/spring-boot-cli/ Index of release/org/springframework/boot/spring-boot-cli repo.spring.io 하 에러 짜증난다...... 스프링부트 망했으면 ㅠㅠ JAVA/JAVA__Framework-Springboot 2019.06.04
iterate multiple sequences with zip a = 'apple', 'banana', 'mango' b = 1, 2, 3 list_test = list(zip(a, b)) print(list_test) # >>> [('apple', 1), ('banana', 2), ('mango', 3)] dict_test = dict(zip(a, b)) print(dict_test) # >>> {'apple': 1, 'banana': 2, 'mango': 3} Python/Python__works 2019.06.03
set combinations and operators #introducing python #set combinations and operators a = {1, 2} b = {2, 3} print(a & b) print(a.intersection(b)) >>> {2} print(a | b) print(a.union(b)) >>> {1,2,3} print(a-b) print(a.difference(b)) >>> {1} print(a^b) print(a.symmetric_difference(b)) >>>{1, 3} Python/Python__works 2019.06.03
Dictionaries intoducing python Dictionaries #튜플 생성 empty_tuple = () one_tuple = ('test') #multiple variables assign test_tuple = ('apple', 'banana', 'mango') a, b, c = test_tuple print(a) >>> apple print(b) >>> banana #리스트로 튜플 생성 test_list = ['apple', 'banana', 'mango'] tuple(test_tuple) print(test_tuple) >>> ('apple', 'banana', 'mango') #Dict 생성 empty_dict = {} #리스트를 Dict로 convert 1) test_list = [[1,2],[3,4.. Python/Python__works 2019.06.03
introducing python - strings #-------------------------- f = 'apple \nbanana \npear' print(f) >> apple >> banana >> pear #-------------------------- test = "\"apple\" love" print(test) >> "apple" love #-------------------------- test = "\\apple\\" print(test) >> \apple\ #-------------------------- test = 'iloveapples' print(test[0]) >> i print(test[-1]) >> s print(test[0:11:2]) >> ioepls print(test[0:11:3]) >> ivpe #-------.. Python/Python__works 2019.05.31