重启MySQL
[root@server ~]# service mysqld restart
停止 mysqld: [确定]
正在启动 mysqld: [确定]
重启Apche
[root@server ~]# service httpd restart
停止 httpd: [确定]
正在启动 httpd:httpd: apr_sockaddr_info_get() failed for server
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
[确定]
在/var/www/html/目录下,创建一个index.php文件,并且编辑,如下:
[root@server ~]# cd /var/www/html/
[root@server html]# ll
总用量 0
[root@server html]# touch index.php
[root@server html]# vim index.php #编辑输入下面内容
<?php
phpinfo();
?>
:wq #保存退出
在客户端浏览器输入服务器:地址,可以看到相关的配置信息!
注意:
apache默认的程序目录是/var/www/html
权限设置:
[root@server ~]# chown apache.apache -R /var/www/html
至此,CentOS 6.3安装配置LAMP服务器(Linux+Apache+PHP5+MySQL)完成!