zabbix_server [43308]: cannot run as root! 解决:需要建立启动zabbix的用户 问题:Host 'zabbix' is not allowed to connect to this MySQL server 解决:mysql不允许远程登陆执行 update user set host='%' where user='zabbix'; flush privileges; 问题:Error connecting to database: Access denied for user...
Single quotes are not supported. Parameter - unquoted string: any Unicode character is allowed except comma and right square bracket (]). Unquoted parameter cannot start with left square bracket ([). Parameter – array: it is again enclosed in square brackets, where individual parameters come in...
0 - not allowed 1 - allowed This parameter is supported since Zabbix 3.4.0. ExternalScripts否usr/local/share/zabbix/externalscripts部脚本位置 (依赖编译安装时的环境变量datadir)。 ExternalScriptsno/usr/local/share/zabbix/externalscriptsLocation of external scripts (depends on compile-time installation ...
# mysql -uroot -p<password> mysql> create database zabbix character set utf8 collate utf8_bin; mysql> grant all privileges on zabbix.* to zabbix@localhost identified by '<password>'; mysql> quit; # cd /usr/share/doc/zabbix-server-mysql-3.0.0 # zcat create.sql.gz | mysql -uroot zab...
Multiple comma-delimited addresses can be provided to use several independent Zabbix servers in parallel. Spaces are allowed. If the port is not specified, default port is used. IPv6 addresses must be enclosed in square brackets if port for that host is specified. If port is not specified, ...
mysql> create database zabbix character set utf8 collate utf8_bin; 因为zabbix-server与数据库在两台机器上,所以新建用户的时候,不能用localhost了,应该换成zabbix-server端的IP mysql>create user zabbix@192.168.51.xxx identified by 'password'; ...
create database zabbix character set utf8 collate utf8_bin; create user zabbix@localhost identified by 'zabbix_passwd'; //zabbix_passwd修改为你要设置的密码 grant all privileges on zabbix.* to zabbix@localhost; flush privileges; //设置MySQL全局变量"log_bin_trust_function_creators"为1,允许二进制...
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin; Query OK, 1 row affected (0.00 sec) MariaDB [(none)]> create user zabbix@localhost identified by '000000'; Query OK, 0 rows affected (0.00 sec) MariaDB [(none)]> grant all privileges on zabbix.* to za...
Escape character is '^]'. Connection closed by foreign host. 四、自定义监控项 1:更改agent配置: a.自定义监控项一 UserParameter=key,shell ss -ant State Recv-Q Send-Q Local Address:Port Peer Address:Port LISTEN 0 128 *:22 *:*
MariaDB [(none)]> create database zabbix character set utf8 collate utf8_bin; MariaDB [(none)]> create user zabbix@localhost identified by 'zabbix123'; MariaDB [(none)]> grant all privileges on zabbix.* to zabbix@localhost; MariaDB [(none)]> flush privileges; MariaDB [(none)]> qui...