红联Linux门户
Linux帮助

centos通过http方式访问本地目录(文件服务器)

发布时间:2016-03-26 09:58:27来源:linux网站作者:八十七杯奶茶

首先,需要有一个http的服务器。在centos里面,我们只需要执行:

yum install httpd

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

httpd -version

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


这时,可以尝试启动一些服务器,

service httpd start

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

/etc/httpd/conf/httpd.conf

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

ServerName localhost:8000


修改文件目录:

#修改http文件服务器的文件目录为自己想要的目录,例如:
DocumentRoot "/opt"
#修改
<Directory "/var/www/html"></Directory>
为:
<Directory "/opt"></Directory>


删除之前的欢迎页面的方式:
我们只要删除掉/etc/httpd/conf.d/welcome.conf 这个文件即可。


好了,行到这里,重启一下服务,打开浏览器,输入“localhost”,你看到你想看到的东西了吗?


本文永久更新地址:http://www.linuxdiyf.com/linux/19254.html