php5.4环境升级,CentOS环境中编译升级PHP至5.4版本记录
先備份
mv?/data/server/php?/data/server/php.5.2
mv?/etc/init.d/php-fpm?/etc/init.d/php-fpm.5.2
編譯源碼
首先先執行./buildconf ?--force,為了防止出現 cp:cannot stat ‘sapi/cli/php.1‘: No such file or directory
./buildconf?--force
./configure?--prefix=/data/server/php?--with-config-file-path=/data/server/php/etc?--with-mysql=/data/server/mysql?--with-mysqli=/data/server/mysql/bin/mysql_config?--with-gd?--with-iconv??--with-zlib??--enable-xml??--enable-bcmath?--enable-shmop?--enable-sysvsem?--enable-inline-optimization?--with-curlwrappers?--enable-mbregex??--enable-fpm?--enable-mbstring?--enable-ftp?--enable-gd-native-ttf?--with-openssl?--enable-pcntl?--enable-sockets?--with-xmlrpc?--enable-zip?--enable-soap?--without-pear?--with-gettext?--enable-session?--with-mcrypt?--with-curl
make
make?install
如果安裝出現錯誤
make: *** [sapi/cli/php] Error 1
解決方法:
make?ZEND_EXTRA_LIBS=‘-liconv‘
ln?-s?/usr/local/lib/libiconv.so.2?/usr/lib64/
配置文件
cp??php.ini-production???/data/server/php/etc/php.ini
rm?-rf?/etc/php.ini
ln?-s?/data/server/php/etc/php.ini??/etc/php.ini
cp??/data/server/php/etc/php-fpm.conf.default???/data/server/php/etc/php-fpm.conf
vi ?/data/server/php/etc/php-fpm.conf
user?=?www
group?=?www
pid?=?run/php-fpm.pid
listen?=?/tmp/php-cgi.sock
listen.owner?=?www
listen.group?=?www
設置 php-fpm開機啟動
cp?sapi/fpm/init.d.php-fpm???/etc/rc.d/init.d/php-fpm
chmod?+x?/etc/rc.d/init.d/php-fpm
chkconfig?php-fpm?on
vi /etc/php.ini
找到:;date.timezone =
修改為:date.timezone = PRC ? #設置時區
找到:expose_php = On
修改為:expose_php = OFF ?#禁止顯示php版本的信息
找到:short_open_tag = Off
修改為:short_open_tag = ON ?#支持php短標簽
找到:disable_functions =
修改為:
disable_functions?=?passthru,exec,system,chroot,scandir,chgrp,chown,shell_exec,proc_open,proc_get_status,ini_alter,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,stream_socket_server,escapeshell,cmd,dll,popen,disk_free_space,checkdnsrr,checkdnsrr,getservbyname,getservbyport,disk_total_space,posix_ctermid,posix_get_last_error,posix_getcwd,?posix_getegid,posix_geteuid,posix_getgid,?posix_getgrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,?posix_getppid,posix_getpwnam,posix_getpwuid,?posix_getrlimit,?posix_getsid,posix_getuid,posix_isatty,?posix_kill,posix_mkfifo,posix_setegid,posix_seteuid,posix_setgid,?posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname
配置完成后重啟PHP-FPM服務即可!
原文:http://my.oschina.net/u/783086/blog/526112
總結
以上是生活随笔為你收集整理的php5.4环境升级,CentOS环境中编译升级PHP至5.4版本记录的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 现代软件工程讲义 2 开发技术 - 效能
- 下一篇: linux shell 0403-011