CentOS 6.9 搭建PHP基础环境(yum安装)

基础环境配置

#安装需要的包,有依赖关系,自动帮你解决
yum install httpd mysql mysql-server php php-gd php-mbstring php-mysql
 
#启动httpd
service httpd start
#设为开机启动
chkconfig httpd on
 
#启动mysqld
service mysqld start
#设为开机启动
chkconfig mysqld on
 
#在根目录下创建一个测试文件,写个phpinfo函数
vi /var/www/html/phpinfo.php
#或者直接在浏览器中输入
http://localhost  或 http://本机IP  ,应该会看到Apache的测试页面      里需要注意iptables的设置哦。

你可能感兴趣的:(PHP)