ubuntu怎么安装nginx+mysql+php

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了ubuntu怎么安装nginx+mysql+php相关的知识,希望对你有一定的参考价值。

参考技术A 1、更新 1 sudo apt-get update 2、安装nginx 1 sudo apt-get intsall nginx Ubuntu安装之后的文件结构大致为:* 所有的配置文件都在/etc/nginx下,并且每个虚拟主机已经安排在了/etc/nginx/sites-available下*程序文件在/usr/sbin/nginx * 日志放在了/var/log/nginx中*并已经在/etc/init.d/下创建了启动脚本nginx* 默认的虚拟主机的目录设置在了/var/www/nginx-default 下面可以启动nginx来看看效果(请确保80端口没有其他服务在使用): 1 sudo /etc/init.d/nginx start #或者简单的 1 service nginx start 然后打开浏览器,查看localhost/ 看看是否看到了”Welcome to nginx!” 如果看到了,说明安装成功.当然,基本上,这块儿都不会出问题. 如果运行不成功,可以先 1 sudo killall apache2 杀掉apache进程3、安装php sudo apt-get install php5 php5-cgi php5-mysql php5-curl php5-gd php5-idn php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-mhash php5-ming php5-pspell php5-recode php5-snmp php5-tidy php5-xmlrpc php5-sqlite php5-xsl 4、安装spawn-fcgi为什么要安装spawn-fcgi呢,它用来控制php-cgi进程,以防止进程崩溃或是单进程的效率太低.网上很多人都说要使用spawn-fcgi必须得安装lighttpd,实际上不必要,可以直接安装spawn-fcgi运行: 1 sudo apt-get install spawn-fcgi 5、配置接下来就是最让人头疼的配置.配置Nginx和spawn-fcgi配合运行(1).在/etc/nginx/fastcgi_params 文件最后,加入一行,可以用 1 sudo vi /etc/nginx/fastcgi_params 加入此行: 1 fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name; (2).另外需要在PHP-CGI的配置文件(Ubuntu 上此配置文件位于/etc/php5/cgi/php.ini)中,找到cgi.fix_pathinfo选项,修改为: 1 cgi.fix_pathinfo=1; 这样php-cgi方能正常使用SCRIPT_FILENAME这个变量.(3).打开/etc/nginx/sites-available/default文件在 1 2 3 server listen 80; server_name localhost; 下面添加web根目录的绝对地址,这里是使用的是nginx的默认地址 1 root /var/www/nginx-default 即root和server_name同级这段即相当于apache的默认目录如果没有这个的话,容易在执行php 文件的时候,会提示”No input file specified”.我就曾在此绕了好大个圈子才发现问题.然后修改 1 2 3 4 5 6 #location ~ .php$ #fastcgi_pass 127.0.0.1:9000; #fastcgi_index index.php; #fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name; #includefastcgi_params; # 修改成 1 2 3 4 location ~ .php$ fastcgi_pass 127.0.0.1:9000; fastcgi_index index.php; fastcgi_param SCRIPT_FILENAME /var/www/nginx-default$fastcgi_script_name; include /etc/nginx/fastcgi_params; #包含fastcgi的参数文件地址6、开始fast_cgi进程 1、sudo /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 5 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid 7、设置开机启动fastcgi进程并启动 1 sudo vi /etc/rc.local 添加下一行 1 /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 5 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid 如果打开php文件出现:No input file specified请检查php.ini的配置中 1 cgi.fix_pathinfo=1 1 doc_root= 还有,每个虚机要根据自己不同的虚机设置不同的目录,要保证这个路径正确.检查/etc/nginx/sites-available下的配置文件中,server内包含 root 及地址 而非location内的root启动 1 fast-cgisudo /usr/bin/spawn-fcgi -a 127.0.0.1 -p 9000 -C 5 -u www-data -g www-data -f /usr/bin/php5-cgi -P /var/run/fastcgi-php.pid 参数含义如下* -f 指定调用FastCGI的进程的执行程序位置,根据系统上所装的PHP的情况具体设置* -a 绑定到地址addr* -p 绑定到端口port* -s 绑定到unix socket的路径path* -C 指定产生的FastCGI的进程数,默认为5(仅用于PHP)* -P指定产生的进程的PID文件路径* -u和-g FastCGI使用什么身份(-u 用户 -g 用户组)运行,Ubuntu下可以使用www-data,其他的根据情况配置,如nobody、apache等现在可以在web根目录下放个探针或php文件测试一下了8、安装mysql 1 sudo apt-get install mysql-server mysql-client 中间会提示输入Root用户密码,依次输入即可.启动MySQL 1 sudo /etc/init.d/mysql start 测试mysql服务是否正常:运行 1 mysql -uroot -p 输入mysql密码 1 show databases; 如果看到下面的内容 Database information_schema mysql 则mysql已正确安装了.至此,ubuntu下的nginx+php+mysql就安装完成了.

Ubuntu 14.04 + nginx + php + mysql搭建

版本:Ubuntu 14.04             nginx-1.12.2               mysql-5.6             php-5.6

1、安装nginx-1.12.2

1)依赖安装

sudo apt-get install openssl libssl-dev

sudo apt-get install libpcre3 libpcre3-dev

sudo apt-get install zlib1g-dev

2)添加用户

sudo useradd www

3)下载http://nginx.org/download/nginx-1.12.2.tar.gz 并解压

进入nginx-1.12.2所在目录,比如/home/cky

cd /home/cky

解压

tar xzf nginx-1.12.2.tar.gz

4)进入相应目录并编译

cd  nginx-1.12.2


./configure 
--prefix=/usr/local/nginx 
--user=www 
--group=www 
--with-http_stub_status_module 
--with-http_ssl_module

5)安装

sudo make install

6)复制nginx到bin目录下,方便使用

sudo cp /usr/local/nginx/sbin/nginx  /usr/bin/

7)启动

sudo nginx

8)其他常用操作

关闭nginx

sudo ginx -s stop

重读nginx配置文件

sudo nginx -s reload

9)测试,浏览器输入http://127.0.0.1弹出Welcome to nginx!即表示安装成功

 

2、安装php

# 下列两行可以先不安装【好像可以不安装】
sudo apt-get install php5
sudo  apt-get  install  php5-cli
sudo  apt-get  install  php5-fpm

 

3、修改nginx配置文件以支持 PHP

#打开配置文件  

sudo  vi  /usr/local/nginx/conf/nginx.conf

按键盘a进入编辑模式

更改内容1,第43行左右

location / {

            root   html;

            index  index.html index.htm;

        }

更改为:

location / {

            root   /www/wwwroot;

            index  index.html index.htm index.php;

        }

更改内容2,第65行左右

        #location ~ \.php$ {

        #    root           html;

        #    fastcgi_pass   127.0.0.1:9000;

        #    fastcgi_index  index.php;

        #    fastcgi_param  SCRIPT_FILENAME  /scripts$fastcgi_script_name;

        #    include        fastcgi_params;

        #}

更改为:

location ~ \.php$ {

            root           /www/wwwroot/;

            fastcgi_pass   127.0.0.1:9000;

            fastcgi_index  index.php;

            fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;

            include        fastcgi_params;

        }

按ESC键退了插入模式,并保存退出

:wq

 

4、修改php配置文件

1)修改php5-fpm属组与监听端口,在 PHP 5.4 之后,php5-fpm并不是监听 9000 端口

sudo vi /etc/php5/fpm/pool.d/www.conf

php5-fpm属组:

;user = www-data

;group = www-data

改为

user = www

group = www

 

更改监听端口:

;listen = /var/run/php5-fpm.sock

改为

listen = 127.0.0.1:9000

 

2)配置php-fpm

sudo  vi  /etc/php5/fpm/php.ini

768行,将

;cgi.fix_pathinfo=1

改为(还要去掉分号)

cgi.fix_pathinfo=0

保存退出

 

5、安装mysql数据库

1)安装 mysql-client-core-5.6

sudo apt-get install mysql-client-core-5.6

2)安装 mysql-client-5.6

sudo apt-get install mysql-client-5.6

3)安装 mysql-server-5.6

sudo apt-get install mysql-server-5.6

安装过程中要设置root用户的密码

 4)mysql相关操作

查看mysql进程是否运行

ps -ef | grep mysql

查看msyql 监听端口

netstat -tap | grep mysql

msyql服务停止

sudo service mysql stop

Mysql 服务启动

sudo service mysql start

Mysql 服务重启

sudo service mysql restart

5)设置Mysql 服务远程访问

sudo vi /etc/mysql/my.cnf

47行改为

#bind-address           = 127.0.0.1

重启msyql

sudo service mysql restart

修改访问权限

进入mysql,输入如下命令,输入密码,进入mysql命令行

mysql -u root -p

授权root用户访问权限,并刷新权限,此处的root可用其它MySQL用户替换,pwd部分需替换为该用户对应的密码

grant all privileges on *.* to [email protected]"%" identified by "pwd" with grant option;


flush privileges;

exit;

重启mysql服务

sudo service mysql restart

 

6、数据库中存储中文时出现乱码

1)进入mysql命令行,查看mysql 服务端编码

status

发现是latin1的编码方式非utf8,需要修改为 utf8编码方式

2)退出mysql命令行并修改配置文件

sudo vi /etc/mysql/my.cnf

在[client]下追加

default-character-set = utf8 

在[mysqld]下追加

character-set-server = utf8

修改后如下

[mysqld]

#

# * Basic Settings

#

user            = mysql

pid-file        = /var/run/mysqld/mysqld.pid

socket          = /var/run/mysqld/mysqld.sock

port            = 3306

basedir         = /usr

datadir         = /var/lib/mysql

tmpdir          = /tmp

lc-messages-dir = /usr/share/mysql

character-set-server = utf8

skip-external-locking

在[mysql]下追加

default-character-set = utf8

保存退出,重启mysql服务器

sudo service mysql restart

再次查看mysql服务端的编码方式

进入mysql的命令行再次输入:

status

 确认latin1等的编码已改为utf8

 

 

以上是关于ubuntu怎么安装nginx+mysql+php的主要内容,如果未能解决你的问题,请参考以下文章

ubuntu 14.04安装nginx+php+mysql

linux Ubuntu下php+mysql+nginx的安装与配置

ubuntu 12.04 安装 nginx+php+mysql web服务器

Ubuntu 16.04 LTS 安装 Nginx/PHP 5.6/MySQL 5.7 (LNMP) 与Laravel

阿里云ECS Ubuntu安装PHP+Mysql+Apache+Nginx+Redis+Discuz

Ubuntu 14.04 + nginx + php + mysql搭建