Nginx是一个免费、开源、高性能的HTTP服务器。Nginx以其稳定的性能、丰富的功能、简单的配置、低资源消耗而闻名。此教程帮助你在Ubuntu下安装支持PHP和MySQL的nginx服务器。
1、安装前注意事项
首先Ubuntu的软件安装要用root权限,所以命令前要全部加Sudo,然后输入密码。否则会显示权限不够。
其次安装前最好先运行apt-get update更新本地软件。以免安装过程中出现错误。
2、安装MySQL5.0
运行语句
apt-get install mysql-server mysql-client
安装过程中会让要求输入MySQL的root用户密码
New password for the MySQL "root" user: <-- yourrootsqlpassword
Repeat password for the MySQL "root" user: <-- yourrootsqlpassword
3、安装nginx
运行
apt-get install nginx
启动nginx
/etc/init.d/nginx start
将nginx加入开机启动
update-rc.d nginx defaults