安装zabbix安装php

WBOY
Freigeben: 2016-06-20 12:49:04
Original
1722 Leute haben es durchsucht

1,安装php可通过官网进行下(wget http://www.php.net/get/php-5.5.0.tar.bz2/from/jp1.php.net/mirror)。


2,安装相关的依赖包,确保安装之前有安装gd,png,curl,xml等等lib开发库可以使用yum进行安装。

[root@localhost conf]# yum install gcc make gd-devel libjpeg-devel libpng-devel libxml2-devel bzip2-devel libcurl-devel -y


3,编译安装PHP 5.5

[root@localhost install]# tar -xvf php-5.5.28.tar.bz2 

[root@localhost install]# cd  php-5.5.28

[root@localhost install]# ./configure   --prefix=/usr/local/php  \

--with-config-file-path=/usr/local/php/etc  --with-bz2  --with-curl  \

--enable-ftp  --enable-sockets  --disable-ipv6  --with-gd  \

--with-jpeg-dir=/usr/local  --with-png-dir=/usr/local  \

--with-freetype-dir=/usr/local  --enable-gd-native-ttf  \

--with-iconv-dir=/usr/local  --enable-mbstring  --enable-calendar  \

--with-gettext  --with-libxml-dir=/usr/local  --with-zlib  \

--with-pdo-mysql=mysqlnd  --with-mysqli=mysqlnd  --with-mysql=mysqlnd  \

--enable-dom  --enable-xml  --enable-fpm  --with-libdir=lib64  --enable-bcmath


[root@localhost install]#make

[root@localhost install]# make install


4,配置php


[root@localhost install]cp php.ini-production /usr/local/php/etc/php.ini

[root@localhost install]cd /usr/locat/php/etc/

[root@localhost etc]# cp php-fpm.conf.default php-fpm.conf


5,查看该服务是否启动:

[root@localhost sbin]# netstat -lnt|grep 9000

tcp        0      0 127.0.0.1:9000              0.0.0.0:*                   LISTEN


Verwandte Etiketten:
Quelle:php.cn
Erklärung dieser Website
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn
Beliebte Tutorials
Mehr>
Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage
Über uns Haftungsausschluss Sitemap
Chinesische PHP-Website:Online-PHP-Schulung für das Gemeinwohl,Helfen Sie PHP-Lernenden, sich schnell weiterzuentwickeln!