CentOS 安装Jitamin项目管理软件
因为jitamin 建议使用php7 ,所以,开始要检查一下php 的版本,如php -v
如果是5.5 之类,建议卸载
rpm -qa|grep php
然后一个个删除
rpm -e php56w-gd-5.6.33-1.w7.x86_64
rpm -e php56w-mysql-5.6.33-1.w7.x86_64
rpm -e php56w-5.6.33-1.w7.x86_64
rpm -e php56w-devel-5.6.33-1.w7.x86_64
rpm -e php56w-intl-5.6.33-1.w7.x86_64
rpm -e php56w-odbc-5.6.33-1.w7.x86_64
rpm -e php56w-opcache-5.6.33-1.w7.x86_64
rpm -e php56w-fpm-5.6.33-1.w7.x86_64
rpm -e php56w-mcrypt-5.6.33-1.w7.x86_64
rpm -e php56w-pear-1.10.4-1.w7.noarch
rpm -e php56w-ldap-5.6.33-1.w7.x86_64
rpm -e php56w-pdo-5.6.33-1.w7.x86_64
rpm -e php56w-process-5.6.33-1.w7.x86_64
rpm -e php56w-xml-5.6.33-1.w7.x86_64
rpm -e php56w-cli-5.6.33-1.w7.x86_64
rpm -e php56w-common-5.6.33-1.w7.x86_64
直到php -v 不显示版本, 然后开始安装php 7
wget -O php7.tar.gz http://cn2.php.net/get/php-7.1.1.tar.gz/from/this/mirrortar zxvf php7.tar.gzcd php-7.1.1/yum install libxml2 libxml2-devel openssl openssl-devel bzip2 bzip2-devel libcurl libcurl-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel gmp gmp-devel libmcrypt libmcrypt-devel readline readline-devel libxslt libxslt-devel     //安装依赖包./configure --prefix=/usr/local/php --with-config-file-path=/etc --enable-fpm --with-fpm-user=nginx --with-fpm-group=nginx --enable-inline-optimization --disable-debug --disable-rpath --enable-shared --enable-soap --with-libxml-dir --with-xmlrpc --with-openssl --with-mcrypt --with-mhash --with-pcre-regex --with-sqlite3 --with-zlib --enable-bcmath --with-iconv --with-bz2 --enable-calendar --with-curl --with-cdb --enable-dom --enable-exif --enable-fileinfo --enable-filter --with-pcre-dir --enable-ftp --with-gd --with-openssl-dir --with-jpeg-dir --with-png-dir --with-zlib-dir --with-freetype-dir --enable-gd-native-ttf --enable-gd-jis-conv --with-gettext --with-gmp --with-mhash --enable-json --enable-mbstring --enable-mbregex --enable-mbregex-backtrack --with-libmbfl --with-onig --enable-pdo --with-mysqli=mysqlnd --with-pdo-mysql=mysqlnd --with-zlib-dir --with-pdo-sqlite --with-readline --enable-session --enable-shmop --enable-simplexml --enable-sockets --enable-sysvmsg --enable-sysvsem --enable-sysvshm --enable-wddx --with-libxml-dir --with-xsl --enable-zip --enable-mysqlnd-compression-support --with-pear --enable-opcachemake && make installvi /etc/profilePATH=$PATH:/usr/local/php/binexport PATHsource  /etc/profilecp php.ini-production /etc/php.ini   cp /usr/local/php/etc/php-fpm.d/www.conf.default /usr/local/php/etc/php-fpm.d/www.confcp /usr/local/php/etc/php-fpm.conf.default  /usr/local/php/etc/php-fpm.confcp sapi/fpm/init.d.php-fpm /etc/init.d/php-fpmchmod +x /etc/init.d/php-fpm/etc/init.d/php-fpm start 启动
