#安装需要的包,有依赖关系,自动帮你解决 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://ip/phpinfo.php,就可以看到phpinfo的输出页面了
时间: 2024-10-22 16:06:42