Ubuntu下部署Apache Web服务器操作手册
Posted 睫树
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ubuntu下部署Apache Web服务器操作手册相关的知识,希望对你有一定的参考价值。
1、安装
sudoapt install apache2 –y
2、修改配置
所有配置文件默认为只读,修改时需要修改操作权限:
sudo chmod 777 [文件名]
修改/etc/apache2/sites-available路径下的000-default.conf文件中的DocumentRoot /var/www/ 为想要的目录,如/data/public/,请确保修改后的目录下至少包含index.html:
修改/etc/apache2路径下的ports.conf文件中的Listen 80 为想要的端口,如8888:
修改/etc/apache2路径下的apache2.conf文件进行访问授权:
3、开启、关闭和重启服务器
sudo /etc/init.d/apache2 start //启动Apache服务
sudo /etc/init.d/apache2 stop //停止Apache服务
sudo /etc/init.d/apache2 restart 或 sudo apache2ctl -k restart //重启Apache服务
4、验证apache是否配置成功
浏览器输入http://192.168.70.43:8888/,显示如下界面则证明配置成功
5、验证访问控制权限设置是否生效:
以上是关于Ubuntu下部署Apache Web服务器操作手册的主要内容,如果未能解决你的问题,请参考以下文章
Linux Ubuntu部署web环境及项目tomcat+jdk+mysql
ubuntu 16.04下搭建web服务器(MySQL+PHP+Apache) 教程