2016년 8월 23일 화요일

FIX :: Zabbix server is not running: the information displayed may not be current

서버 IP 변경 후 zabbix 웹페이지에 "Zabbix server is not running: the information displayed may not be current"라는 메시지가 계속 노출될 경우 아래와 같은 방법으로 해결합니다. (zabbix v2.4.5)

> vi /etc/zabbix/web/zabbix.conf.php
$ZBX_SERVER      = '192.168.XXX.XXX'; <= 변경된 IP로 수정
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '';

> service zabbix-server restart <= option

댓글 없음:

FIX :: ssh 접속이 느리고, /var/log/messages에 systemd-logind.service failed. 메시지가 남을 때

ssh 접속이 느릴 때가 있습니다. 보통은DNS가 제대로 설정되지 않았는데 /etc/ssh/sshd_config에 UseDNS가 yes로 되어 있을 때 발생합니다. 위와 같을 경우 /etc/ssh/sshd_config파일에서 아래와 같이 수정 후 ...