OS
CentOS7.x 모니터링 & 관리 툴 Cockpit
- 비아웹 오래 전 2022.02.14 16:29 인기
-
- 3,864
- 0
1. 설치 환경
OS : CentOS Linux release 7.7.1908 (Core)
SELINUX : disabled
테스트일자 : 2020.11.23
2. Cockpit 패키지 설치
[root@viaweb ~]# yum -y install cockpit
3. 패키지 설치 확인
[root@viaweb ~]# rpm -qa | grep cockpit
4. iptables 또는 firewalld 9090-PORT 허용
(cockpit은 기본 포트로 9090포트를 사용합니다.)
** iptables 사용 시
[root@viaweb ~]# iptables -IINPUT-p tcp --dport 9090-j ACCEPT
[root@viaweb ~]# iptables -nL | grep 9090
** firewalld 사용 시(--permanent 옵션 추가 시 영구적으로 등록)
[root@viaweb ~]# firewall-cmd --permanent --add-service=cockpit
5. 서비스 시작 및 자동실행 등록
[root@viaweb ~]# systemctl start cockpit
[root@viaweb ~]# netstat -nltp | grep cockpit
[root@viaweb ~]# systemctl enable cockpit
[root@viaweb ~]# systemctl status cockpit
6. 웹브라우저 URL : http://<IP주소>:9090
ex) http://192.168.88.140:9090
계정 및 패스워드 입력
콘솔 제어
- 이전글컴파일한 apache 서비스 등록2022.02.14
- 다음글php 컴파일시 의존성 오류 처리2022.02.14
댓글목록
등록된 댓글이 없습니다.