Ubuntu下LNMP环境配置
程序员文章站
2022-06-11 16:10:48
...
Ubuntu下LNMP环境配置
1.安装mysql
sudo apt install mysql-server
注:设置密码看这里:https://blog.csdn.net/weixin_36429334/article/details/77188821
2.安装nginx和php
#添加nginx和php的ppa源
sudo apt-add-repository ppa:nginx/stable
sudo apt-add-repository ppa:ondrej/php
sudo apt update
sudo apt install nginx
安装好nginx,打开浏览器输入 http://localhost 看到 Welcome to nginx! 说明安装成功了。
3.安装PHPFastCGI管理器
sudo apt install php7.0-fpm
4.修改配置文件
(1) 修改www.conf配置文件
sudo vim /etc/php/7.0/fpm/pool.d/www.conf
#nginx 和fastcgi通信有2种方式,一种是TCP方式,还有种是UNIX Socket方式
#默认是socket方式
listen = /run/php/php7.0-fpm.sock
#修改重启下 php-fpm7.0
sudo /etc/init.d/php7.0-fpm restart
(2) #修改nginx配置文件
sudo vim /etc/nginx/sites-enabled/default
#修改网站存放目录
root /var/www;
# Add index.php to the list if you are using PHP
index index.php index.html index.htm index.nginx-debian.html;
#找到 location ~ \.php$ { 修改里面
include snippets/fastcgi-php.conf;
#socket 方式 必须和上面socket的listen路径一样
fastcgi_pass unix:/run/php/php7.0-fpm.sock;
服务器重启:
1.php: sudo /etc/init.d/php7.0-fpm restart
2.nginx: sudo /etc/init.d/nginx restart
3.mysql: sudo service mysql restart
上一篇: C#数据类型及差异(复习专用)
下一篇: 对CIS的认识
推荐阅读
-
win10和win7下java开发环境配置教程
-
Ubuntu Server下无线网卡的配置详解
-
Linux环境下双网卡主机路由配置教程
-
老司机传授Ubuntu下Apache+PHP+MySQL环境搭建攻略
-
Mysql 5.7.17 winx64免安装版,win10环境下安装配置图文教程
-
Windows下JSP开发环境的配置
-
Ubuntu16.04 server下配置MySQL,并开启远程连接的方法
-
ubuntu16.4下用jexus部署ASP.NET Core环境
-
Linux(Ubuntu)下mysql5.7.17安装配置方法图文教程
-
Linux(Ubuntu)下搭建ASP.NET Core环境