어떻게 해야 할까요? 잘 실행되고 있다고 생각했던 zabbix 서버에 대한 모든 설정이 완료되었지만 이제 마지막 단계에서 실행되지 않습니다. 나는 무엇이 잘못되었는지 모른다. 이 문제를 어떻게 해결할 수 있나요? 처음이네요 도와주세요 감사합니다 :)
?php
// Zabbix GUI configuration file.
$DB['TYPE'] = 'MYSQL';
$DB['SERVER'] = 'localhost';
$DB['PORT'] = '0';
$DB['DATABASE'] = 'zabbix';
$DB['USER'] = 'zabbix';
$DB['PASSWORD'] = 'zabbix_db_pass';
// Schema name. Used for PostgreSQL.
$DB['SCHEMA'] = '';
// Used for TLS connection.
$DB['ENCRYPTION'] = false;
$DB['KEY_FILE'] = '';
$DB['CERT_FILE'] = '';
$DB['CA_FILE'] = '';
$DB['VERIFY_HOST'] = false;
$DB['CIPHER_LIST'] = '';
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
"/etc/zabbix/web/zabbix.conf.php" 47L, 1484C
///////zabix.conf.php starts here
// Use IEEE754 compatible value range for 64-bit Numeric (float) history values.
// This option is enabled by default for new Zabbix installations.
// For upgraded installations, please read database upgrade notes before enabling this$
$DB['DOUBLE_IEEE754'] = true;
$ZBX_SERVER = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '';
$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;
// Uncomment this block only if you are using Elasticsearch.
// Elasticsearch url (can be string if same url is used for all types).
//$HISTORY['url'] = [
// 'uint' => 'http://localhost:9200',
// 'text' => 'http://localhost:9200'
//];
또한 방화벽 상태에서 다음과 같은 작은 메시지를 발견했습니다.
firewalld.service - firewalld - dynamic firewall daemon
Loaded: loaded (/usr/lib/systemd/system/firewalld.service; enabled; vendor preset: enabled)
Active: active (running) since Mon 2021-11-22 13:14:25 EST; 2h 5min ago
Docs: man:firewalld(1)
Main PID: 767 (firewalld)
Tasks: 2
CGroup: /system.slice/firewalld.service
내 서버에 너무 많은 일이 벌어지고 있는 것 같은데 어디서 편집해야 할지 모르겠습니다. 누구든지 CentOS Linux 버전 7.9,2009(코어)와 호환되는 가이드를 찾도록 도와줄 수 있나요?
답변1
끝까지 읽어보셨다면Zabbix 지침 다운로드 및 설치서비스가 실행되고 있지 않으면 "Zabbix 서버 및 에이전트 프로세스 시작" 명령을 시도해 볼 가치가 있는 것 같습니다.
systemctl restart zabbix-server zabbix-agent httpd php-fpm
systemctl enable zabbix-server zabbix-agent httpd php-fpm
답변2
ps -ef | grep -i zabb
zabbix-server 콘솔(프로세스 = zabbix_server
) 에서 zabbix 서버 프로세스가 실행 중인지 확인하세요 .
또한 동일한 서버에서 zabbix-agent(process =)를 실행하고 있는지 확인하십시오 zabbix_agentd
.