PHP安装备忘
#
# Installation script
#
# Prepare for compilation environment
yum install -y groupinstall "Development Tools"
# Create a build directory
mkdir -p /opt/install/php
# Prepare for compilation source
cd /opt/install/php
curl -o php-5.4.3.tar.gz http://cn2.php.net/distributions/php-5.4.3.tar.gz
tar -zxvf php-5.4.3.tar.gz
# Install build dependencies
yum install -y libxml2-devel
# Create a User Group
# Compile and deploy
cd php-5.4.3
./configure \
--prefix=/opt/environment/php/5.4.3 \
--with-config-file-path=/opt/environment/php/5.4.3/etc \
--with-apxs2=/opt/server/web/httpd/bin/apxs \
--with-mysql=/opt/server/database/mysql \
--with-mysqli=/opt/server/database/mysql/bin/mysql_config \
--with-mysql-sock=/opt/server/database/mysql/tmp/mysql.sock \
--with-pdo-mysql=/opt/server/database/mysql
make
make install
# Postinstallation setup
cp php.ini-production /opt/environment/php/5.4.3/etc/php.ini
# Configuration
/opt/server/web/httpd
sed -i -e "s/DirectoryIndex index.html/DirectoryIndex index.html index.php/" conf/httpd.conf
sed -i -e "s//\n
cat >htdocs/index.php// Show all information, defaults to INFO_ALL
phpinfo();
?>
eof
/etc/init.d/httpd restart
# Additional
/etc/init.d/httpd start
/etc/init.d/httpd stop
0
0
相关文章
php如何加密密码_php加密密码password_hash法【加密】
php远程访问文件怎么打开_phpcurl设置代理访问远程法【代理】
PHP怎么用LaravelValet建环境_PHP用LaravelValet建环境便捷【框架】
如何在 PHP 中正确捕获 shell 命令的标准错误输出(stderr)
php调用听书插件怎么判断插件是否激活_php判断听书插件激活状态法【核验】
本站声明:本文内容由网友自发贡献,版权归原作者所有,本站不承担相应法律责任。如您发现有涉嫌抄袭侵权的内容,请联系admin@php.cn
热门AI工具










