본문 바로가기

Linux125

zabbix agent2 설치 및 설정 1. zabbix-agent Repository 설치 rpm -Uvh https://repo.zabbix.com/zabbix/5.0/rhel/7/x86_64/zabbix-release-5.0-1.el7.noarch.rpm yum clean all 2. zabbix agent2 설치 yum install -y zabbix-agent2 ### plugin까지 설치할 경우!! yum install -y zabbix-agent2 zabbix-agent2-plugin-* 3. zabbix agent2 설정 vi /etc/zabbix/zabbix_agent2.conf Server=192.168.56.107## Server IP ServerActive=192.168.56.107## Server IP Hostname=.. 2024. 1. 10.
리눅스 나가는 공인IP 확인 ### 외부로 나가는 Public IP 확인 curl ifconfig.me 2023. 12. 28.
git 자주 사용하는 명령어 ### git에서 자주 사용하는 명령어 ### git 명령어 git add filename and folder: 파일 혹은 폴더 추가 git rm file or folder: git에 file 또는 폴더 삭제 git commit -m 'description': message를 repo에 저장 git push: commit 들을 master 저장소에 저장 git push origin develop: commit 들을 develop branch 저장소에 저장 git pull: 저장소에서 변경 내용 가져오기 git pull origin develop: 저장소에서 develop branch 변경 내용 가져오기 git branch: branch 목록을 본다 git branch branchname: 저장소에 bra.. 2023. 12. 28.
gitlab https ssl 적용 ### gitlab https 적용 1. 인증서 준비 및 도메인명으로 인증서 네임 변경 ex) git.bluemary.com.crt 2. 인증서 해당 경로 이동 cp ./git.bluemary.com* /etc/gitlab/ssl/ 3. gitlab설정 gitlab-ctl stop vi /etc/gitlab/gitlab.rb external_url 'https://git.bluemary.com' #nginx['client_max_body_size']='250m' nginx['redirect_http_to_https']=true ## gitlab 재설정 gitlab-ctl reconfigure ## gitlab 시작 gitlab-ctl start 2023. 12. 28.