1,php for nginx就不用说了,我们的博客里面应该有写。
2,直接源码安装,安装apache,安装php7,安装mysql。除了麻烦一点,应该没什么问题。
3,yum的方式安装了apache和mysql,yum安装php7,这种方式也折腾了我一天。在windos下,我到是成功
实现了apache 下的多php版本切换,但linux也已经安装的apache php mysql,突然想把php换成php7,但
yum又实现不了,虽然网上有人说更新yum源,但我试了是不行的。最后我就具体说说怎么不换apahce和mysql
的情况下,如何成功安装php7.
4,mysql好像都是不是源码安装的 需要指定版本
https://dev.mysql.com/downloads/mysql/
选择linux,选择指定的版本,获取到链接sudo wget https://dev.mysql.com/get/mysql-apt-config_0.8.13-1_all.deb
然后 sudo dpkg -i mysql-apt-config_0.8.13-1_all.deb
sudo apt-get install mysql-server-5.6
sudo apt update
sudo apt install mysql-client
sudo apt install libmysqlclient-dev
sudo apt-get install libcurl3-openssl-dev
sudo apt-get install libmysqlclient-dev
首先把已经安装的php,php-common卸载掉,yum remove xxx就可以。
然后下载php源码,https://www.php.net/distributions/php-7.3.9.tar.gz ,解压,安装依赖,然后
./configure --prefix=/usr/local/php --with-curl --with-gd --with-gettext --enable-fpm --with-openssl --enable-libxml --enable-mbstring --with-freetype-dir --with-iconv-dir --with-kerberos --with-pdo-mysql --enable-pcntl --enable-gd-native-ttf --enable-shmop --enable-soap --enable-sockets --enable-mbregex --with-zlib --enable-xml --enable-opcache --enable-sysvsem --enable-inline-optimization --enable-bcmath --with-xsl --with-xmlrpc --with-png-dir --with-pear --with-mysqli=shared,mysqlnd --with-mysql-sock=/var/lib/mysql/mysql.sock --with-mhash --with-libdir=lib64 --with-libxml-dir --with-pcre-regex --with-apxs2=/usr/sbin/apxs (通不过的)
sudo ./configure --prefix=/usr/local/php --with-curl --with-gd --with-gettext --enable-fpm --with-openssl --enable-mbstring --with-freetype-dir --with-iconv-dir --with-kerberos --with-pdo-mysql --enable-pcntl --enable-gd-native-ttf --enable-shmop --enable-soap --enable-sockets --with-mysqli --with-mysql-sock=/var/lib/mysql/mysql.sock --with-mhash --with-libdir=lib64 --with-libxml-dir --with-pcre-regex --with-apxs2=/usr/sbin/apxs --with-zlib(通过的)
没有的,就安装吧:
sudo apt-get install libxml2-dev
sudo apt-get install openssl
sudo apt-get install libssl-dev
sudo apt-get install libcurl3-openssl-dev
sudo apt-get install libcurl4-gnutls-dev
sudo apt-get install libbz2-dev
sudo apt-get install libjpeg-dev
sudo apt-get install libpng-dev
sudo apt-get install libxpm-dev
sudo apt-get install libfreetype6-dev
sudo apt-get install libmcrypt-dev
sudo apt-get install libmysql++-dev
sudo apt-get install libxslt1-dev
最后,make make install就好了,就这么简单。搞了三天,删删减减,各种apt-get configure终于通过了。fk。
但在此之前需要解决几个问题:
1,yum 的apache没有apxs模块,也就安装php时的 --with-apxs2=/usr/sbin/apxs ,
那么这个需要安装。网上说的yum install httpd-devel不行,建议这样,
yum list httpd*先看看找找,然后yum install httpd-dev*。再whereis apax就发现
有了。全部安装完成之后,apache还不能支持php。第二步,找到httpd.conf文件,
AddType application/x-compress .Z
AddType application/x-gzip .gz .tgz
在后面添加:
AddType application/x-httpd-php .php(使Apcche支持PHP) 这样就可以了。然后
重启httpd就没问题了