TypechoJoeTheme

IT技术分享

统计

Linux Ubuntu 14.04中安装Apache2——VPS使用大全之服务器安装与配置

2015-09-12
/
0 评论
/
729 阅读
/
正在检测是否收录...
09/12

Apache 是最常见的 Web 服务器,功能强大。

一、安装Apache2

输入以下代码安装MySQL,然后输入Y继续。

vps-ubuntu-apache2-1

输入以下命令开启Apache2

vps-ubuntu-apache2-2

输入以下命令开启Apache2 伪静态 rewrite 支持.

vps-ubuntu-apache2-3

至此,Apache2安装完成。

二、优化Apache2

由于VPS资源有限,需要限制网站访问的并发数。输入以下命令即可。

sed -i -e "s/^[[:blank:]]*StartServers[[:blank:]]*.*/StartServers 5/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*MinSpareServers[[:blank:]]*.*/MinSpareServers 5/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*MaxSpareServers[[:blank:]]*.*/MaxSpareServers 10/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*ServerLimit[[:blank:]]*.*/ServerLimit 10/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*MaxClients[[:blank:]]*.*/MaxClients 10/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*MinSpareThreads[[:blank:]]*.*/MinSpareThreads 5/" /etc/apache2/apache2.conf

sed -i -e "s/^[[:blank:]]*MaxSpareThreads[[:blank:]]*.*/MaxSpareThreads 10/" /etc/apache2/apache2.conf

vps-ubuntu-web-3

然后输入以下命令重启Apache2

vps-ubuntu-web-4

朗读
赞 · 0
版权属于:

IT技术分享

本文链接:

https://idunso.com/archives/2747/(转载时请注明本文出处及文章链接)