Blogger Information
Blog 16
fans 0
comment 0
visits 14628
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
ubuntu 下lnmp搭建
进击的小菜鸟
Original
1667 people have browsed it


主要步骤参考下面的文章

https://www.cnblogs.com/LO-gin/p/6032026.html  

安装php的时候需要加一步 添加ppa 不然是找不到php源的(现在最低版本也是5.6了,如果要5.6以下的版本  只有下载源码编译安装)

$ sudo apt-get install python-software-properties software-properties-common

$ sudo add-apt-repository ppa:ondrej/php

$ sudo apt-get update

文章中的php5-fpm 应该改成php5.6-fpm      cli同理 


mysql 安装完成之后   要远程访问的话需要修改权限

vim /etc/mysql/my.cnf找到bind-address = 127.0.0.1

注释掉或者改为: bind-address = 0.0.0.0

允许任意IP访问;

或者自己指定一个IP地址。


重启 MySQL:sudo /etc/init.d/mysql restart


第二步:


授权用户能进行远程连接


   grant all privileges on *.* to root@"%" identified by "自己的密码" with grant option;



flush privileges;//清除缓存  使得修改的系统设置立即生效


   第一行命令解释如下,*.*:第一个*代表数据库名;第二个*代表表名。这里的意思是所有数据库里的所有表都授权给用户。root:授予root账号。“%”:表示授权的用户IP可以指定,这里代表任意的IP地址都能访问MySQL数据库。“password”:分配账号对应的密码,这里密码自己替换成你的mysql root帐号密码。


nginx的默认配置中有个ipv6only的配置项 这个得删掉  不然无法正常处理请求

Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!