在centos上安裝gmp擴充套件

2021-09-02 19:28:10 字數 837 閱讀 2660

在centos:(基本php擴充套件都是這樣裝)

1.進入到php的安裝包(不是安裝目錄)

我的是lnmp一鍵安裝包(lnmp安裝好了會把php的安裝包刪掉,所以需要我們自己解壓)

2.進入到我的php安裝包

$ cd /lnmp1.

4/src/

$ tar jxvf php-

7.1.7

.tar.bz2

$ cd php-

7.1.7

/ext/gmp

3開始編譯安裝

$ .

/configure --

with

-php-config=

/usr/local/php/bin/php-config

$ make && make install

4如果出現:

build complete.

don』t forget to run 『make test』.

installing shared extensions: /usr/local/php/lib/php/extensions/no-debug-non-zts-20060613/

表示就安裝成功

5如果出現:

-bash: ./configure: no such file or directory

就執行以下這句

$ /usr/local/php/bin/phpize
5.在php.ini中新增

$ extension = gmp.so

在Cent OS上安裝Bugzilla

這幾天一直在折騰bugzilla,原以為應該挺簡單的,卻也是一波三折。下面是 的過程 在 var www html目錄中建立乙個symbolic link ln s var local bugzilla bugzilla 為httpd的使用者分配該資料夾的訪問許可權 chown apache.apa...

在CentOS上安裝Git

centos的yum源中沒有git,只能自己編譯安裝,現在記錄下編譯安裝的內容,留給自己備忘。確保已安裝了依賴的包 30 你的目錄可能不是這個 autoconf configure make sudo make install 檢查下安裝的版本,大功告成 git version 通過ssh 進行認證...

在centos上安裝nodejs

注 出處不明,但我按照下面的步驟,安裝沒有問題 1.安裝必要的make以及gcc,gcc c 編譯器,以及編譯python需要的bzip2 yum y install make gcc gcc c yum y install bzip2 2.安裝python2.6 1 先公升級python,假設公升...