목록Server,OS/[Linux] (88)
른록노트
@ 설명 EOF가 나올때 까지의 명령어를 실행중인 프로그램에 입력해 줄 수 있음 입력의 끝을 나타내는 EOF는 반드시 앞에 공백이나 tab이 없어야함 @ 예제 cat > ttt
@ pods 확인 kubectl get pods @ worker node ssh 접속 kubectl exec -ti [파드이름] sh @ 참고사이트 https://velog.io/@pa324/%EC%BF%A0%EB%B2%84%EB%84%A4%ED%8B%B0%EC%8A%A4-worker-node-ssh-%EC%A0%91%EC%86%8D
@ 레디스 버전 확인 redis-server --version @ 레디스 포트 오픈 확인 netstat -nlpt | grep 6379 @ redis-cli를 통한 레디스 접속 redis-cli (auth 등록되어있으면) auth 비밀번호 그리고 자유롭게 사용하면 됩니다 @참고사이트 https://dejavuqa.tistory.com/155
@ 설명 레디스는 오픈소스이고 모리 내 데이터 구조 저장소입니다 데이터베이스, 캐시 및 메시지 브로커로 사용됩니다 String, hash, list, set, stored set 등 데이터 구조를 지원합니다 디스크 내에 지속성을 갖고있고 Redis Sentinel을 통해 고가용성을 지원하고 Redis Cluster를 통해 자동 파티셔닝을 지원합니다 @기능 Transactions Pub/Sub Lua scripting Keys with a limited time-to-live LRU eviction of keys Automatic failover @참고사이트 https://redis.io/topics/introduction https://ram2ram2.tistory.com/4 https://bcho.ti..
@ 방법 @실행방법 build.xml이 있는곳으로 경로를 이동하여 ant main 명령어 실행 @ 참고사이트 https://kamang-it.tistory.com/entry/Ant%EC%99%B8%EB%B6%80-%EB%9D%BC%EC%9D%B4%EB%B8%8C%EB%9F%AC%EB%A6%ACjar%EB%A5%BC-%EC%82%AC%EC%9A%A9%ED%95%B4%EC%84%9C-%EB%B9%8C%EB%93%9C-%ED%95%98%EA%B8%B08
@ 다운로드 https://ant.apache.org/bindownload.cgi?Preferred=http%3A%2F%2Fapache.mirror.cdnetworks.com%2F @ 방법 1. 압축해제 2. 압축해제한 폴더를 이동시킴 => mv apache-ant-1.10.8 /usr/local/ant 3. 환경변수 설정 =>vi /etc/profile =>export ANT_HOME=/usr/local/ant export PATH=$PATH:$ANT_HOME/bin =>source /etc/profile
@ Jenkins 버전 2.222.4 @Pipeline 사용 (Pipeline script 사용) node { stage ('clone'){ git branch: 'master',credentialsId: '만든아이디', url: '깃주소' } } * credentialsId는 인증값이다 메인메뉴 -> Credential -> System -> Global Credentials -> Add Credentials Username : 깃아이디 Password : 깃비밀번호 OK눌러서 저장 후 다시 메인메뉴의 -> Credential로 돌아와 항목에 있는 id값을 복사해서 붙혀넣어주면 된다. @제대로 동작되면 /var/lib/jenkins/workspace/
@ Jenkins란 Git이나 Gogs에서 소스를 받아와 자동으로 빌드시켜주는 프로그램 @ 설치환경 운영체제 : CentOS Linux release 7.4.1708 @ 다운방법 https://pkg.jenkins.io/redhat-stable/ sudo wget -O /etc/yum.repos.d/jenkins.repo https://pkg.jenkins.io/redhat-stable/jenkins.repo sudo rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key yum install jenkins @ 설치 메뉴얼 https://www.jenkins.io/doc/book/installing/#red-hat-centos