1、安装 apache:yum install httpd httpd-devel 启动 apache:/etc/init.d/httpd start此时输入服务器的 IP 地址,应该看到 apache 的服务页面,端口不用输,apache 默认就是使用 80 端口安装 mysql:yum install mysql mysql-server启动 mysql:/etc/init.d/mysqld start安装 phpyum install php php-devel重启 apache 使 php 生效/etc/init.d/httpd restart此时可以在目录:/var/www/html/下
2、建立一个 PHP 文件代码:然后访问这个文件,就能看到 PHP 的一些信息,php.ini 配置文件的路径可以在这个页面上看到解决 httpd: Could not reliably determine the servers fully qualified domain name解决方案:用记事本打开 httpd.conf将里面的 #ServerName localhost:80 注释去掉即可。再执行 httpd然后可以通过浏览器访问 http:/localhost:80 ,如果页面显示 “It works!” ,即表示 apache 已安装并启动成功。+using localhost.localdomain for ServerName 说不能确认服务器完全确认域名 localhost.localdoman 这个问题怎么解决最佳答案: vi /etc/httpd/conf/httpd.conf 加入一句 ServerName localhost:8012:关闭防火墙(实际环境下,不需要)# service iptables stop# chkconfig iptables off