centos7 http目录访问

 

安装httpd

yum install httpd

看到安装完成之后,我们执行

httpd -version

如果能看到输出的版本信息,则说明安装成功。

启动一些服务器

service httpd start

如果出现“address already in use”则我们需要修改我们的端口,

配至进入:

/etc/httpd/conf/httpd.conf

可以修改服务器名称和端口:

ServerName localhost:8000
 

修改文件目录:

 

防火墙端口设置:打开端口 80

重启:systemctl restart iptables.service

重启http服务

在终端执行命令  systemctl restart httpd  

或者:systemctl status httpd.service

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章