get方法安装LNMP环境

 

 

首页服务器应用

背景:

阅读新闻

Ubuntu 14.04下apt-get方法安装LNMP环境

[日期:2016-07-28]   来源:Linux社区  作者:zhangchengjie   [字体:]  

1.使用root登陆Ubuntu 14.04主机,执行如下命令:

sudo apt-get install nginx
    sudo apt-get install php5
    sudo apt-get install php5-fpm
    sudo apt-get install MySQL-server    设置root密码
    sudo apt-get install phpmyadmin    选择lighttp这里nginx不是apache2

2.在安装MySQL时会出现错误:

get方法安装LNMP环境

1.1按照官方给的解决办法依然无法解决

1.2更改ubuntu14.04源升级

vim /etc/apt/sources.list

deb trusty main restricted universe multiverse
deb trusty-security main restricted universe multiverse
deb trusty-updates main restricted universe multiverse
deb trusty-proposed main restricted universe multiverse
deb trusty-backports main restricted universe multiverse
deb-src trusty main restricted universe multiverse
deb-src trusty-security main restricted universe multiverse
deb-src trusty-updates main restricted universe multiverse
deb-src trusty-proposed main restricted universe multiverse
deb-src trusty-backports main restricted universe multiverse
deb trusty main restricted universe multiverse

1.4执行升级命令
apt-get update

3.设置MySQL密码登陆MySQL查看

get方法安装LNMP环境

get方法安装LNMP环境

4.配置nginx支持php拷贝nginx的vhost模板
1.1:cp /etc/nginx/sites-enabled/default打开如下内容 在root位置添加index.php

get方法安装LNMP环境

1.2:fastcgi_pass 127.0.0.1:9000;方式连接不在使用sock连接
1.3:修改php.ini配置 vim /etc/php5/fpm/php.ini

get方法安装LNMP环境

1.4:使用TCP连接 vim /etc/php5/fpm/pool.d/www.conf

get方法安装LNMP环境

注释掉sock
5.从新启动服务

/etc/init.d/php5-fpm restart
/etc/init.d/nginx restart

6.在nginx的vhost目录下写一个phpinfo文件
<?php
phpinfo();
?>

get方法安装LNMP环境

7.还可以通过如下命令查看PHP5支持MySQL
apt-cache search php5
使用如下命令安装
apt-get install php5-mysql php5-curl php5-gd php5-intl php-pear php5-imagick php5-imap php5-mcrypt php5-memcache php5-ming php5-ps php5-pspell php5-recode php5-snmp php5-sqlite php5-tidy php5-xmlrpc php5-xsl
加速器也是一样
apt-get install php5-XCache
从新启动服务器
/etc/init.d/php5-fpm restart
/etc/init.d/nginx restart

php5-fpm在使用service调用的时候从新reload和restart会出现不能装载情况产考如下文章

LNMP安装参考如下文章

Ubuntu 14.04 搭建 LNMP 

Ubuntu 14.04 LTS 安装 LNMP Nginx\PHP5 (PHP-FPM)\MySQL 

Ubuntu 13.04 安装 LAMP\Vsftpd\Webmin\phpMyAdmin 服务及设置

在部署LNMP的时候遇到Nginx启动失败的2个问题

Ubuntu安装Nginx php5-fpm MySQL(LNMP环境搭建)

更多Ubuntu相关信息见Ubuntu 专题页面 ?tid=2

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/868558cc60f714837b13ef6d32f0fb8e.html