要在Linux服务器中配置并能够访问前端页面的方式有很多,包括搭建Tomcat,Nginx静态服务器等。但是因为我们的前端之前也一直用的是Httpd的这种方式,正好有机会我装了一次,所以也想作为记录并且分享给大家。本次Httpd服务使用yum的安装方式,安装之前记得服务器先备份,养成良好的备份习惯。
这里使用yum安装方式默认的httpd.conf位置在:
/etc/httpd/conf修改文件之前先拷贝出来一份并命名为httpd.conf.old
执行: vim /etc/httpd/conf/httpd.conf找到默认的80监听端口,改为你想要的 找到 <Directory> blocks below. 下面这一行,修改为如下图所示
<Directory /> AllowOverride none Require all denied Order allow,deny Allow from all </Directory> <VirtualHost *:端口号> DocumentRoot 前端文件包index文件的根目录 ServerName localhost:端口号 </VirtualHost> <Directory "前端文件包index文件的根目录"> AllowOverride None # Allow open access: Require all granted </Directory>修改完毕先按Esc退出编辑模式,安装shift+:输入wq 保存退出
这时候配置完成之后就可以正常启动了
一般yum安装方式默认的启动文件的位置在: /usr/sbin 下面 启动命令: ./apachectl start ./apachectl stop ./apachectl restart到此,其实已经可以使用service httpd start等命令,但在linux服务列表还没有注册
全局可以使用命令:
service httpd start service httpd stop service httpd restart