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
PHP怎么学习?PHP怎么入门?PHP在哪学?PHP怎么学才快?不用担心,这里为大家提供了PHP速学教程(入门到精通),有需要的小伙伴保存下载就能学习啦!
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号