引言
之前的视频分享项目现在预上线了,重新拿到一台阿里云ECS,硬件配置如下:四核八G 10M带宽 系统Centos 6.8
在这台服务器上准备安装LAMP
。
Linux + Apache + MySQL + PHP.
我这边暂时不用数据库交互,所以暂时不安装MySQL.
安装图解
一.安装Apache服务
yum install httpd –y
注:采用该方法安装Apache的配置文件的默认路径在
/etc/httpd/conf/httpd.conf
需要设置一下Apache服务开机自启,如果不设置,每次开机后都需要自己重启服务:
chkconfig --level 36 httpd on
再使用chkconfig
查看一下开机启动的服务中是否有httpd服务;
httpd 0:off 1:off 2:off 3:on 4:off 5:off 6:on
启动Apache服务
service httpd start
[root@greydistrict httpd]# service httpd start
Starting httpd: httpd: apr_sockaddr_info_get() failed for greydistrict
httpd: Could not reliably determine the server's fully qualified domain name, using 127.0.0.1 for ServerName
先检查Httpd服务是否已经启动
[root@greydistrict httpd]# service httpd status
httpd (pid 7639) is running...
但是上面有一个报错,意思是说无法可靠地确定服务器的完全合格的域名,使用127.0.0.1作为服务名;
查看hostname主机名,并将该主机添加到Apache配置文件的severname参数
vim /etc/httpd/conf/httpd.conf
将里面的 #ServerName localhost:80 注释去掉即可。
重启Apache服务,则不会再报错
[root@greydistrict conf]# service httpd restart
Stopping httpd: [ OK ]
Starting httpd: [ OK ]
配置完成后再本机输入127.0.0.1(非本机输入主机ip),出现下列页面声明配置搭建成功
二、安装MySQL(5.7)服务
三、安装PHP服务
centos 6.8 默认没有安装php组件,因此我们需要输入命令:
yum –y install php #程序会自动安装配置
网友评论