gpt4 book ai didi

Zabbix 安装过程中不显示 MySQL

转载 作者:行者123 更新时间:2023-11-29 14:06:39 24 4
gpt4 key购买 nike

我在 ubuntu 14.04 上安装 Zabbix 2.4-1 时遇到问题。我使用了 official site 的手册,安装成功,没有报错。接下来,我创建了具有所有权限的用户“zabbix”和数据库“zabbix”,并从 Zabbix 存档中导入了 schema.sql、images.sql 和 data.sql。然后我更改了/etc/zabbix 目录中的配置文件:

zabbix.conf.php

// Zabbix GUI configuration file
global $DB;

// Valid types are MYSQL, SQLITE3 or POSTGRESQL
$DB["TYPE"] = 'MYSQL';
$DB["SERVER"] = 'localhost';
$DB["PORT"] = '3306';

// SQLITE3 use full path to file/database: $DB["DATABASE"] = '/var/lib/zabbix/zabbix.sqlite3';
$DB["DATABASE"] = 'zabbix';
$DB["USER"] = 'zabbix';
$DB["PASSWORD"] = 'root';
// SCHEMA is relevant only for IBM_DB2 database
$DB["SCHEMA"] = '';

$ZBX_SERVER = 'localhost';
$ZBX_SERVER_PORT = '10051';
$ZBX_SERVER_NAME = '';

$IMAGE_FORMAT_DEFAULT = IMAGE_FORMAT_PNG;

zabbix-server-mysql.conf

...
# dbc_dbtype: type of underlying database to use
# this exists primarily to let dbconfig-common know what database
# type to use when a package supports multiple database types.
# don't change this value unless you know for certain that this
# package supports multiple database types
dbc_dbtype='mysql'

# dbc_dbuser: database user
# the name of the user who we will use to connect to the database.
dbc_dbuser='zabbix'

# dbc_dbpass: database user password
# the password to use with the above username when connecting
# to a database, if one is required
dbc_dbpass='root'
...

我用 apache 服务器启动它。当我转到 localhost/zabbix 时,我看到了 Zabbix 安装程序。在第 3 步中,需要配置数据库连接。所以,这里有一个问题:

Trouble

如您所见,选择列表中 PostgreSQL,因此,我无法连接到数据库(mysql 服务器正在运行)并转到下一步。

最佳答案

您的 PHP 目前不支持 MySQL。您需要安装一些 php-mysql* 包,然后重新启动您的网络服务器。

关于Zabbix 安装过程中不显示 MySQL,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35347878/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com