반응형 Tech73 Jenkins 설치시 public key not installed 에러 상황 jenkins를 cnetos7에 올려서 사용하려고 설치중에Public key for jenkins-2.440.2-1.1.noarch.rpm is not installed 에러가 발생구글링을 해보니 이번 버전부터 키가 변경됬다는걸 보았다. 보통 rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io.key 이렇게 하면 해결된다고 나오나동일한 에러 발생 다시 찾아보니 rpm --import https://pkg.jenkins.io/redhat-stable/jenkins.io-2023.key 이걸 받아오면정상적으로 설치 완료 -------------------------- 설치 완료 후 포트 변경할라니 난 이상하게 /etc/sysconfig/jenkins .. 2024. 3. 21. Zabbix 버전별 설치 및 마이그레이션 * 신규설치는 사용할 각 버전부터 시작하면 된다.* 마이그레이션은 이미 사용중인 버전을 업그레이드시 진행3.2 버전 설치- yum -y install mariadb mariadb-server- yum install http://repo.zabbix.com/zabbix/3.2/rhel/7/x86_64/zabbix-release-3.2-1.el7.noarch.rpm- yum -y install zabbix-server-mysql zabbix-web-mysql- systemctl start mariadb- mysqlmysql> update user set password=password('root패스워드') where user='root';mysql>create database 자빅스디비명 character .. 2020. 12. 1. centos7에서 git 2.x 버전 설치하기 - yum -y remove git* - yum -y install http://opensource.wandisco.com/centos/7/git/x86_64/wandisco-git-release-7-1.noarch.rpm - yum -y install git 2020. 10. 16. vi 한번에 주석방법 // 블록만큼 주석 하기 1. Ctrl + v 로 원하는 만큼 블록지정 2. Shift + i 3. 입력 4. ESC 2번 누름 // 블록만큼 주석 지우기 1. Ctrl + v 로 원하는 만큼 블록지정 2. x 2020. 6. 15. 패스워드 변경 스크립트 echo '패스워드' | passwd --stdin 계정 2020. 6. 8. sftp log 설정 1. sshd_config 수정 - vi /etc/ssh/sshd_config Subsystem sftp /usr/libexec/openssh/sftp-server -f local2 -l INFO 2. syslog.conf 수정 ** Cetos 6 버전에서는 rsyslog.conf - vi /etc/rsyslog.conf #sftp log local2.* /var/log/sftp.log 3. logrotate.d 설정 - vi /etc/logrotate.d/syslog /var/log/sftp.log 추가 4. 서비스 재시작 - /etc/init.d/sshd restart - /etc/init.d/rsyslog restart 5. 확인 - tail -f /var/log/sftp.log 출처: https:.. 2020. 6. 8. 이전 1 2 3 4 ··· 13 다음 반응형