安装依赖库和编译需要的和一些工具:
yum install -y gcc gcc-c++ make autoconf zlib zlib-devel pcre pcre-devel libjpeg libjpeg-devel libpng libpng-devel freetype freetype-devel libxml2 libxml2-devel glibc glibc-devel glib2 glib2-devel bzip2 bzip2-devel ncurses ncurses-devel curl curl-devel e2fsprogs e2fsprogs-devel krb5 krb5-devel openssl openssl-devel openldap openldap-devel nss_ldap openldap-clients openldap-servers
yum install -y git wget net-tools curl vim psmisc nc
php 加入服务启动:
cp ./sapi/fpm/init.d.php-fpm /etc/init.d/php-fpm
chmod +x /etc/init.d/php-fpm
$/etc/init.d/php-fpm start
# php-fpm 启动命令
$ /etc/init.d/php-fpm stop
# php-fpm 停止命令
$ /etc/init.d/php-fpm restart
# php-fpm 重启命令
dhclient
自动获取一个 IP 地址,再用命令 ip addr
查看 IP
注意 php7.2 不支持 --with-mcrypt=/usr/local/libmcrypt,–enable-gd-native-ttf 这两个选项。官方建议用 openssl_* 系列函数代替 Mcrypt_* 系列的函数
phpize 扩展编译
./configure --with-php-config=/usr/local/php/bin/php-config
vagrant vm 名字配置
config.vm.provider "virtualbox" do |vb|
vb.name = "centos"
config.vm.hostname = "centos"
end
配合apache
编译安装php(配合apache的)
在安装nginx+php时,生成了php的FastCGI进程管理器PHP-FPM
但是在apache环境中,无需使用这个管理器.
php提供了编译选项”–with-apxs2”用于编译apache模块
(其中数字2表示该编译选项是为2.x版本的apache设计的)
make clean
./configure --prefix=/usr/local/php --with-apxs2=/usr/local/apache2/bin/apxs --with-zlib --enable-zip --enable-mbstring --with-mcrypt --with-mysql --with-mysqli --with-pdo-mysql --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-curl --with-openssl --with-mhash --enable-bcmath --enable-opcache
make && make install
配合nginx或者原生使用
./configure --prefix=/usr/local/php --enable-fpm --with-zlib --enable-zip --enable-mbstring --with-mcrypt --with-mysql --with-mysqli --with-pdo-mysql --with-gd --with-jpeg-dir --with-png-dir --with-freetype-dir --with-curl --with-openssl --with-mhash --enable-bcmath --enable-opcache