今天在安裝cacti軟件時發現PHP運行環境中少了一個sockets擴展,當初在編譯PHP時沒有加入--enable-sockets參數,可是如今又要用到,總不可能爲了這個擴展而從新安裝PHP環境。咱們能夠用phpize這個工具來安裝擴展模塊。phpize這個工具位於php安裝目錄下面的bin目錄中。例如個人位於/home/webserver/php5.2.12/bin目錄下面。php
安裝步驟:web
一、先進入php解壓縮後的源碼包中,找到要安裝的擴展模塊的目錄。apache
[root@redhat5 sockets]# cd /home/soft/php-5.2.12/ext/socketssocket
在sockets目錄下面以絕對路徑運行phpize程序,這時會自動生成sockets的configure程序,在sockets目錄下面能夠看到。ide
[root@redhat5 sockets]# /home/webserver/php5.2.12/bin/phpize工具
二、進行編譯安裝post
[root@redhat5 sockets]# ./configure --with-php-config=/home/webserver/php5.2.12/bin/php-configserver
[root@redhat5 sockets]#makeget
[root@redhat5 sockets]#make install源碼
執行完make install屏幕上會提示sockets.so存放的路徑,而後把它複製到php的extensions目錄中,例如個人路徑爲 /home/webserver/php5.2.12/lib/php/extensions
三、修改php.ini文件
找到extension_dir = "./" 這行,修改成:
extension_dir = "/home/webserver/php5.2.12/lib/php/extensions/"
而後再新增長一行:
extension=sockets.so
四、重啓apache便可生效。
其它模塊的安裝方法和這個如出一轍,無論是php自帶的擴展模塊仍是第三方擴展模塊都照這種方法安裝便可。