云服务器如何安装apache
时间:2020-08-14 10:45:15
作者:重庆seo小潘
来源:
云服务器如何安装apache?Apache是目前世界上非常流行的web服务器,以云服务器 centos系统为例,在上面安装apache非常简单。 利用yum命令安装apache yum install httpd -y 执行完成之后,使用Systemctl start httpd 将apache加入开机命令中 systemctl enable
云服务器如何安装apache?Apache是目前世界上非常流行的web服务器,以云服务器 centos系统为例,在上面安装apache非常简单。
利用yum命令安装apache
yum install httpd -y
执行完成之后,使用Systemctl start httpd 将apache加入开机命令中
systemctl enable httpd
简单介绍一下apache目录
网站数据主要存放在 /var/www/html
运行日志 /var/log/httpd/access_log
错误日志 /var/log/httpd/error_log
apache常搭配PHP语言使用,php是目前较为流行的后端语言,接下来简单介绍一下如何安装。
安装php7.1
可以将php设置为开机自启