CentOS下安装php 5.6.19
Posted mhl1003
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CentOS下安装php 5.6.19相关的知识,希望对你有一定的参考价值。
# php安装包下载 wget https://www.php.net/distributions/php-5.6.19.tar.bz2 # 解压 bunzip2 php-5.6.19.tar.bz2 tar xvf php-5.6.19.tar # 配置安装php (中间可能报缺少某些包, 按照缺少的提示装上即可) cd php-5.6.19 ./configure --prefix=/usr/local/php-5.6.19 --with-config-file-path=/usr/local/php-5.6.19/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 --without-pear make && make install # 设置软链接 ln -s /usr/local/php-5.6.19 /usr/local/php #配置文件拷贝到/etc/ cp php.ini-production /usr/local/php-5.6.19/etc/php.ini cp /usr/local/php-5.6.19/etc/php-fpm.conf.default /usr/local/php-5.6.19/etc/php-fpm.conf cp -rf sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm #增加执行权限 chmod +x /etc/init.d/php-fpm #环境变量配置 cat "export PHP_HOME=/usr/local/php" >> /etc/profile cat "export PATH=$PATH:$PHP_HOME/bin" >> /etc/profile #配置生效 source /etc/profile #增加开机启动 chkconfig --add php-fpm chkconfig php-fpm on #启动php service php-fpm start #验证是否已经启动 php -v
能正确打印版本号说明是安装成功!
以上是关于CentOS下安装php 5.6.19的主要内容,如果未能解决你的问题,请参考以下文章