說明
我有一個laravel的應用程序,那我想是集成了Cacti:是一個旨在利用RRDTool的數據存儲和繪圖功能的電源完整的網絡圖形解決方案。仙人掌上的pgsql在Laravel
步驟
我已經下載了它,並把它放在我的public/
目錄。
現在,當我去我的http://localhost:8888/cacti/
我
一次嘗試
致命錯誤:無法連接到MySQL服務器上 'localhost' 的。請確保您在指定一個有效的MySQL數據庫名稱「包括/ config.php文件」
於是,我打開了「包括/ 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
:(
數據庫
我已經在端口上運行5432
我的本地主機創建cacti
數據庫。
任何提示/這個建議,我們將不勝感激!
您是否在pgsql中創建了一個cacti數據庫? –
是的,我做過。看到它[這裏](https://postimg.org/image/c047oeqat/) – ihue
@ihue你檢查過了嗎? http://forums.cacti.net/about23300.html – jaysingkar