搭建lnmp的笔记
程序员文章站
2022-05-17 20:58:18
...
操作指南
网址 https://lnmp.org/install.html
安装LNMP稳定版
wget http://soft.vpser.net/lnmp/lnmp1.6.tar.gz -cO lnmp1.6.tar.gz && tar zxf lnmp1.6.tar.gz && cd lnmp1.6 && ./install.sh lnmp
添加conf文件
https://lnmp.org/faq/lnmp-vhost-add-howto.html
lnmp vhost add
conf文件
server
{
listen 80;
#listen [::]:80;
server_name www.onlyni.com onlyni.com;
index index.html index.htm index.php default.html default.htm default.php;
root /home/wwwroot/onlyni;
#重点
location / {
if (!-e $request_filename) {
rewrite ^(.*)$ /index.php?s=$1 last;
break;
}
}
#error_page 404 /404.html;
#error_page 502 /502.html;
#重点
include enable-php-pathinfo.conf;
location ~ .*\.(gif|jpg|jpeg|png|bmp|swf|flv|mp4|ico)$ {
expires 30d;
access_log off;
}
location ~ .*\.(js|css)?$ {
expires 7d;
access_log off;
}
location ~ /\.ht {
deny all;
}
location ~ /data/kk_fjc/SiteData/Logs {
deny all;
}
access_log /home/wwwlogs/www.aqqs.io.log;
}
可能遇到的问题
问题一
thinkphp5项目放在线上的LNMP环境中打开为空白问题解决 https://blog.51cto.com/phpervip/2135435?source=dra
服务器上安装的环境是LNMP, lnmp.org的方法一键安装的。
1.代码传到服务器
2.建站点。lnmp vhost add
3.奇怪是打开后空白的,也没报错误。什么鬼呢?
只有一步步检查了, 在public/index.php中,echo '1111'; 前面有,后面没有。
发现访问不了 项目的框架文件 thinkphp/start.php
网上搜罗了一遍,后来修改fastcgi的配置文件解决了。
/usr/local/nginx/conf/fastcgi.conf
找到最后一句:在:/tmp前面加'../' fastcgi_param PHP_ADMIN_VALUE "open_basedir=$document_root/../:/tmp/:/proc/";
4,重启 lnmp nginx restart
5,搞定:
问题二
解决MySQLAccess denied for user 'root' https://jingyan.baidu.com/article/f7ff0bfcb914916e26bb13ac.html
使用命令"mysql -uroot -p"登录到Mysql数据库。如下图所示: 解决MySQLAccess denied for user 'root'
使用命令"use mysql"进入到mysql数据库中,再使用语句"select host, user from user;"查询登录用户的授权列表(这里吐槽下,网上有很多帖子都是说如何授权,从不讲怎么查询),根据授权列表判断是否可以登录。如下图所示: 解决MySQLAccess denied for user 'root' 4
根据上图的结果得知,我没有授权root用户可以在"10.10.1.35"登录,所以造成无法登录。授权root用户可以在10.10.1.35登录,授权方式有两种。
1、授权root用户可以从10.10.1.35登录MySQL数据库,如下所示:
GRANT ALL PRIVILEGES ON . TO 'root'@'10.10.1.35' IDENTIFIED BY 'youpassword' WITH GRANT OPTION;
上一篇: Linux下安装oracle客户端并配置php5.3_PHP
下一篇: oracle 手动热备