apache配置zabbix下setup.php無法顯示

at_1發表於2021-09-09

apache

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安裝過程出現問題。

 

安裝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   --------執行命令,使用動態裝入器裝載找到的共享庫

 

安裝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圖片的支援

 

解決方案三:apache沒有提供對php的支援

開啟apache的配置文件/usr/local/apache/conf/httpd.conf,修改其中引數

模組中修改為

  DirectoryIndex index.html index.php

 

模組中新增

AddType application/x-httpd-php .php .php3 .php4

修改完成後需重新啟動apache

 

2、訪問目錄會顯示:

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行資料註釋掉,頁面不會顯示錯誤


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/1817/viewspace-2803259/,如需轉載,請註明出處,否則將追究法律責任。

相關文章