Debian과 저장소에서 Nagios를 설치할 수 있나요?

Debian과 저장소에서 Nagios를 설치할 수 있나요?

Nagios를 설치하고 Debian VM을 실행하고 싶습니다. Nagios 공식 웹사이트에서는 CentOS나 Red Hat의 최소 버전이 필요하다고 말합니다. 그런데 데비안에 Nagios를 설치할 수 있나요? 또 다른 질문은 저장소를 사용하여 가장 쉬운 방법으로 설치할 수 있는지입니다. apt-get install nagios를 설치하면 즉시 E: Unable to located package nagios가 표시됩니다.

Nagios를 설치하는 가장 좋은 방법은 무엇입니까?

답변1

https://www.howtoforge.com/tutorial/install-nagios-4-3-on-debian-9/프로세스가 설명되어 있습니다.

apt install wget unzip zip bash-completion net-tools

호스트 이름 설정

hostnamectl set-hostname nagios.server.lan

PC 호스트 이름 및 호스트 파일 확인

hostnamectl 
cat /etc/hostname
cat /etc/hosts

변경사항을 적용하려면 다시 시작하세요.

Nagios가 포함된 웹 서버 패키지를 설치하고 포트 80에서 실행 중인지 확인합니다.

apt install apache2 libapache2-mod-php7.0 php7.0 && netstat –tlpn

자세한 내용은 위의 링크를 참조하세요.

관련 정보