Laravel中的pgsql上的仙人掌

时间:2016-08-10 19:15:08

标签: php mysql laravel psql cacti

描述

我有一个laravel应用程序,我正在尝试将其与 Cacti 集成:是一个完整的网络图形解决方案,旨在利用RRDTool的数据存储和图形功能。< / p>

的步骤

我已下载它,并将其放在我的public/目录中。

现在,当我转到我的http://localhost:8888/cacti/

我得到了

首先尝试

  

致命:无法连接到'localhost'上的MySQL服务器。请确保在'include / config.php'

中指定了有效的MySQL数据库名称

然后,我打开了'include / config.php'。由于我的目标是尝试将其连接到pgsql而不是mysql,所以我这是我当前的设置

$database_type = "pgsql";
$database_default = 'cacti';
$database_hostname = 'localhost';
$database_username = 'postgres';
$database_password = '';
$database_port = '5432';
$database_ssl = false;

只要我点击已保存,然后刷新页面http://localhost:8888/cacti/

第二次尝试

现在,我得到了:The localhost page isn’t working :(

enter image description here

数据库

我已在端口cacti上运行的localhost上创建了一个5432数据库。

enter image description here

对此的任何提示/建议将不胜感激!

1 个答案:

答案 0 :(得分:2)

this site中所述,cacti仅适用于MySQL。

  

Cacti是用PHP编写的,只支持MySQL存储   RRDTool数据。

尽管如此,仍有此链接可以使用pgsql设置仙人掌 PostgreSQL Host Template