zabbix php無法顯示的解決方法:1、安裝apache;2、完整安裝php;3、修改apache並使其提供對php的支援;4、將mysql的socket.sock檔案軟連結到zabbix的路徑。
本文操作環境:linux5.9.8系統、PHP5.6版,DELL G3電腦
zabbix安裝好了打不開? apache配置zabbix下setup.php無法顯示?
1、web頁面無法顯示:
原因一:檢查系統是否安裝apache,以便解析html
原因二:php沒有完全安裝好
原因三:apache沒有提供對php的支援
原因四:apache的設定檔中DocumentRoot的參數值沒有改成zabbix的路徑,zabbix預設的路徑 是/var/www/html/下
解決方案一:安裝apache
tar zxvf httpd-2.2.23.tar.gz cd httpd-2.2.23 ./configure --prefix=/usr/local/apache make && make install
若安裝過程中出現錯誤, 則在編譯時入加--with-included-apr 參數。
解決方案二:完整安裝php
安裝php時首先要檢查系統是否安裝了支援zabbix的依賴包,特別GD庫的安裝,如果gd庫沒安裝會導致zabbix安裝過程出現問題。
f35d6e602fd7d0f0edfa6f7d103c1b57安裝freetype,libpng,jpeg以便於讓php支援GD函式庫(WeatherMap外掛程式必須要較新的GD函式庫支援)
tar -zxvf libpng-1.2.18.tar.gz ./configure --prefix=/usr/local/libpng make && make install tar -zxvf freetype-2.3.5.tar.gz ./configure --prefix=/usr/local/freetype make &&make install tar -zxvf jpegsrc.v7.tar.gz mkdir /usr/local/libjpeg mkdir /usr/local/libjpeg/bin mkdir /usr/local/libjpeg/lib mkdir /usr/local/libjpeg/man mkdir /usr/local/libjpeg/man/man1 ./configure --prefix=/usr/local/libjpeg/ --enable-shared --enable-static make && make install tar -zxvf gd-2.0.28.tar.gz ./configure --prefix=/usr/local/libgd --with-png --with-freetype=/usr/local/freetype/ --with- jpeg=/usr/local/libjpeg/ make && make install
安裝完成後,對gd函式庫進行設定:
vi /etc/ld.so.conf /usr/local/freetype/lib /usr/local/libjpeg/lib /usr/local/libgd/lib ldconfig --------执行命令,使用动态装入器装载找到的共享库
2cc198a1d5eb0d3eb508d858c9f5cbdb安裝PHP
cd php-5.6.0 ./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache/bin/apxs --with- mysql=/usr/local/mysql/ --with-mysqli=/usr/local/mysql/bin/mysql_config --enable-bcmath --enable- mbstring --enable-sockets --with-gd --with- gettext --with-freetype-dir=/usr/local/freetype/ --with-jpeg- dir=/usr/local/libjpeg/ make clean make && make install
安裝後將tar套件中的php.ini-development或php.ini-production複製到到/usr/local/php /lib下,並更名為php.ini
-with-apxs2=/usr/local/apache/bin/apxs支持apache --with-mysql=/usr/local/mysql/支持mysql --with-mysqli=/usr/local/mysql/bin/mysql_config优化支持mysqli --enable-bcmath打开图片大小调整 --enable-mbstring多字节,字符串的支持 --enable-sockets打开sockets 支持 --with-gd打开gd库的支持 --with-gettext打开gnu的gettext 支持,编码库用到 --with-freetype-dir=/usr/local/freetype/打开对freetype字体库的支持 --with-jpeg-dir=/usr/local/libjpeg/打开对jpeg图片的支持
推薦學習:《PHP視訊教學》
解決方案三:apache沒有提供對php的支援
開啟apache的設定文件/usr/local/apache/conf/httpd.conf,修改其中參數
模組中修改為
DirectoryIndex index.html index.php
模組中新增
AddType application/x-httpd-php .php .php3 .php4
修改完成後需重新啟動apache
2、訪問目錄http://ip/zabbix會顯示:
Forbidden You don't have permission to access /test/ on this server.
解決方案:
在apache的設定文檔中找到,其中定義了Deny from all,可以將其註釋,就不會封網段
3、zabbix在安裝過程中出現無法找到sock檔案的問題
解決方案:
將mysql的socket.sock檔案軟連結到zabbix的路徑
4、登入進zabbix頁面中,頁面顯示如下錯誤:
ini_set(): Use of mbstring.internal_encoding is deprecated [dashboard.php:21 → require_once() → ZBase->run() → ZBase>initLocales() → init_mbstrings() → ini_set() in /var/www/html/zabbix/include/locales.inc.php:25]
解決方案:
將路徑中/var/www/html/zabbix/include/locales.inc.php的第25行資料註解掉,頁面不會顯示錯誤
以上是zabbix php無法顯示怎麼辦的詳細內容。更多資訊請關注PHP中文網其他相關文章!