电话
13363039260
▲ centos7版本
yum -y install httpd
注:采用该方法安装Apache的配置文件的默认路径在/etc/httpd/conf/httpd.conf
执行完运行命令之后是看不到效果的,这时候再输入查看apache服务状态命令来查看服务是否已经启动:
查看状态:service httpd status
Apache开启服务:systemctl start httpd
Apache停止服务:systemctl stop httpd
▲ 开启apache服务
systemctl start httpd.service
▲ 设置apache服务开机启动
systemctl start httpd.service
▲ 开启防火墙
#开启防火墙
systemctl start firewalld
#关闭防火墙
systemctl stop firewalld.service
#防火墙状态
systemctl status firewalld
#重启防火墙
firewall-cmd --reload
#查看端口的开放情况
firewall-cmd --list-all
命令末尾的--permanent表示用久有效,不加这句的话重启后刚才开放的端口就又失效了。
▲ 开启80端口
firewall-cmd --add-service=http --permanent
firewall-cmd --add-service=https --permanent
firewall-cmd --add-port=80/tcp --permanent
▲ 访问apache
在阿里云中需要在安全组中配置对外开放80端口才能用公网IP进行访问,不然是访问不了的,配置如下
添加入站规则
配置好之后,通过IP就可以访问了,出现如下页面就说明安装成功了