使用LNMP常见问题解答
使用LNMP常见问题解答
一、LNMP的安装过程详解,注:绿色文字为注释,实际使用过程中没有。
##先要下载,并根据不同系统进行安装:tar zxvf lnmp1.0.tar.gzcd lnmp1.0./centos.sh #如果您是其它系统,则命令改为:./ubuntu.sh 或 debian.sh以上为下载及进入安装过程,以下为安装前简易设置,切记输入个其它域名及牢记mysql密码:
=========================================================================LNMP V1.0 for CentOS/RadHat Linux VPS Written by Licess=========================================================================A tool to auto-compile & install Nginx+MySQL+PHP on Linux ====================================================================================================Please input the root password of mysql:(Default password: root):vpsmm.com #请输入mysql密码===========================MySQL root password:vpsmm.com======================================================Do you want to install the InnoDB Storage Engine?(Default no,if you want please input: y ,if not please press the enter button):INPUT error,The InnoDB Storage Engine will NOT install! #是否安装InnoDB===========================Install PHP 5.3.17,Please input yInstall PHP 5.2.17,Please input n or press Enter(Please input y or n):y #选择php版本You will install PHP 5.3.17===========================Install MySQL 5.5.27,Please input yInstall MySQL 5.1.60,Please input n or press Enter(Please input y or n):y #选择mysql版本You will install MySQL 5.5.27Press any key to start...or Press Ctrl+c to cancelCentOS release 6.3 (Final)#按任意键,设置完成,正式进入安装,预计20-40分钟完成其实所谓的域名绑定,就是通过命令的形式,简易创建一个conf文件到/usr/local/nginx/conf/vhost下面,这个过程完全可以手工创建conf,或者,平时修改目录、域名等,直接修改conf文件,效果完全一样:
/root/vhost.sh #lnmp域名绑定命令=========================================================================Add Virtual Host for LNMP V0.9 , Written by Licess =========================================================================LNMP is a tool to auto-compile & install Nginx+MySQL+PHP on Linux This script is a tool to add virtual host for nginx =========================================================================Please input domain:(Default domain: www.lnmp.org):legcloud.com #输入你要绑定的域名,legcould和www.legcloud要分别绑定===========================domain=legcloud.com===========================Do you want to add more domain name? (y/n)y #是否添加子域名,可以输入y或n,这里输入yType domainname,example(bbs.vpser.net forums.vpser.net luntan.vpser.net):www.legcloud.com #输入你要绑定的其它域名,支持泛解析,例如:*.legcloud.com===========================domain list=www.legcloud.com===========================Please input the directory for the domain:legcloud.com :(Default directory: /home/wwwroot/legcloud.com):/home/legcloud.com #网站存放目录,可默认或自行输入===========================Virtual Host Directory=/home/legcloud.com======================================================Allow Rewrite rule? (y/n)===========================y #是否添加伪静态规则,这里输入是Please input the rewrite of programme :wordpress,discuz,typecho,sablog,dabr rewrite was exist.(Default rewrite: other):wordpress #输入wordpress就可以===========================You choose rewrite=wordpress======================================================Allow access_log? (y/n)===========================n #是否创建日志文件,如果不需要可不用Press any key to start create virtul host...#按任意建继续,以下为一些相关信息,包括创建目录,测试nginx等,如果有错误提示,请一定要认真分析Create Virtul Host directory......set permissions of Virtual Host directory......You select the exist rewrite rule:/usr/local/nginx/conf/wordpress.confTest Nginx configure file......nginx: the configuration file /usr/local/nginx/conf/nginx.conf syntax is oknginx: configuration file /usr/local/nginx/conf/nginx.conf test is successfulRestart Nginx......=========================================================================Add Virtual Host for LNMP V0.9 , Written by Licess =========================================================================Your domain:legcloud.comDirectory of legcloud.com:/home/legcloud.com=========================================================================如果lnmp默认的伪静态规则不能满足你的需要,或者,你要自行定义伪静态规则,可以新建一个conf文件,放置于 /usr/local/nginx/conf 下,在域名配置文件,即:/usr/local/nginx/conf/vhost/legcloud.com.conf 里引用。
server{listen 80;server_name legcloud.com www.legcloud.com; #绑定的域名index index.html index.htm index.php default.html default.htm default.php; #首页文件root /home/legcloud.com; #网站存放目录include wordpress.conf; #伪静态规则文件,可自定义成你需要的location ~ .*\.(php|php5)?${try_files $uri =404;fastcgi_pass unix:/tmp/php-cgi.sock;fastcgi_index index.php;include fcgi.conf;}location ~ .*\.(gif|jpg|jpeg|png|bmp|swf)${expires 30d;}location ~ .*\.(js|css)?${expires 12h;}access_log off;}修改设置以后,一定要重新载入lnmp或者,重新载入nginx,以下任决命令都一样:
/root/lnmp reload #使用lnmp重新载入配置/etc/init.d/nginx reload #只重新载入nginx配置,我一般用这个不管是404还是503等常见错误,还是设置/usr/local/nginx/conf/vhost/legcloud.com.conf文件来完成:
listen 80;server_name legcloud.com www.legcloud.com;index index.html index.htm index.php default.html default.htm default.php;root /home/legcloud.com;error_page 404 /404.php; #放在这里,可自定义文件名,再重载nginx就可以了include wordpress.conf;if ($host != 'vpsmm.com' ) {rewrite ^/(.*)$ http://www.vpsmm.com/$1 permanent;}#判断当前域名,如果不是则自动301到主域名,放置于error_page ...;上下均可。lnmp最新版,默认禁用了一些函数,例如fso等,可修改/usr/local/php/etc/php.ini
disable_functions = passthru,exec,system,chroot,scandir....#----这是禁用函数,把不想禁用的删除即可----如果自用主机,最简单的修改方案:disable_functions =; passthru,exec,system,chroot,scandir....#----设置为全部开启修改后,使用/etc/init.d/php-fpm restart,重新启动php
七、升级PHP和NGINX版本
cd lnm0.9 #进入lnmp安装目录./upgrade_nginx.sh #升级nginx,只要输入你要升级的版本即可(可见nginx.org)./upgrade_php.sh #升级php,只要输入你要升级的版本即可(可见php.net)使用LNMP常见问题解答的更多相关文章
- MySQL同步常见问题解答(自己的小心得)
前几天刚刚注册了博客园,我想写一些技巧性的教程,今天给大家分享一个MySQL同步常见问题解答. Q:如果主服务器正在运行并且不想停止主服务器,怎样配置一个从服务器? A:有多种方法.如果你在某时间点做 ...
- Delphi XE5 常见问题解答
Delphi XE5 常见问题解答 有关于新即时试用的问题吗?请看看 RAD Studio 即时试用常见问答. 常见问题 什么是 Delphi? Embarcadero? Delphi? XE5 是易 ...
- SSL/TLS 高强度加密: 常见问题解答
关于这个模块 mod_ssl 简史 mod_ssl会受到Wassenaar Arrangement(瓦森纳协议)的影响吗? mod_ssl 简史 mod_ssl v1 最早在1998年4月由Ralf ...
- [!!!!!]Inno Setup教程-常见问题解答
[转]Inno Setup教程-常见问题解答 功能 * 翻译 Inno Setup 文字 * 它支持 MBCS (多字节字符集) 吗? * 将来会支持 Windows Installer 吗? ...
- 英特尔® 实感™ SDK 前置摄像头 (F200) 常见问题解答
原文地址 https://software.intel.com/zh-cn/articles/intel-realsense-sdk-faq-for-front-facing-camera-f200? ...
- 我个人有关 Azure 网络 SLA、带宽、延迟、性能、SLB、DNS、DMZ、VNET、IPv6 等的 Azure 常见问题解答
Igor Pagliai(微软) 2014 年 9月 28日上午 5:57 年 11 月 3 年欧洲 TechEd 大会新宣布的内容). 重要提示:这篇文章中我提供的信息具有时间敏感性,因为这些 ...
- 关于CopyU!的常见问题解答
拷优(CopyU!)常见问题解答 本常见问题解答列举了一些常见的疑问及其解释,如果您对CopyU!有任何问题,请您首先查看本解答! 本解答将会保持随时更新! 一.使用篇: 1.问:我的杀毒软件 ...
- genymotion常见问题解答
[转]常见问题解答 很多人喜欢使用Genymotion这款安卓模拟器,但是虽然Genymotion很好用,可是却有各种问题存在哦,下面潇潇就一些常见的Genymotion问题来说下解决方法吧. 为什么 ...
- Linux的常见问题解答和管理技巧
Linux的常见问题解答和管理技巧 一. 如何建立多用户 提醒大家一句,别一直使用root用户,因为root用户在系统中有着至高无上的权力,一不小心就可能破坏系统.比如我们想删除/temp目录下的文件 ...
随机推荐
- ELK系列--justniffer0.5.12安装报错解决方法
现象: justniffer的0.5.12(安装后显示0.5.13版本)安装过程中需要升级boost至1.46以上版本,同时在make时会出现如下报错: /opt/Python-2.6.6/Pytho ...
- 循序渐进PYTHON3(十三) --2-- DJANGO之FORM表单(自动生成HTML标签和自定制提示信息)
在上一次的代码上做出进一步修改,使之能在页面上显示自定制的报错信息,并且使用form自动创建标签的功能. views.py from django.shortcuts import render,Ht ...
- Keras 训练时出现 CUDA_ERROR_OUT_OF_MEMORY 错误
不用惊慌,再试一次.估计当时GPU内存可分配不足,可手动结束所有python程序后释放相关GPU内存,或者重新运行一次终端
- nyoj 151 Biorhythms
描述 Some people believe that there are three cycles in a person's life that start the day he or she i ...
- Failure INSTALL FAILED DUPLICATE PERMISSION
韩梦飞沙 韩亚飞 313134555@qq.com yue31313 han_meng_fei_sha Failure [INSTALL_FAILED_DUPLICATE_PERMISSION ...
- [Arc074E] RGB Sequence
[Arc074E] RGB Sequence Description 今天也在愉快地玩Minecraft!现在MM有一块1?N的空地,每个格子按照顺序标记为1到N.MM想要在这块空地上铺上红石块.绿宝 ...
- 【贪心+优先队列】POJ3190-Stall Reservations
[题目大意] 给出每个奶牛挤奶的时间,同一时间同一畜栏内不会有两头奶牛挤奶,问至少要多少个畜栏. [思路] 将奶牛按照挤奶开始的时间进行升序排序,再用一个小顶堆维护每一个畜栏当前的挤奶结束时间.对于当 ...
- java笔记之面向对象
一.面向过程与面向对象的区别 1 面向过程:主要关注点是:实现的具体过程,因果关系[集成显卡的开发思路] * 优点:对于业务逻辑比较简单的程序,可以达到快速开发,前期投入成本较低. * 缺点:采用面向 ...
- mysql 下 计算 两点 经纬度 之间的距离 含具体sql语句
文章转载地址 http://blog.sina.com.cn/s/blog_7bbfd5fd01017d1e.html 感谢作者. 在原文的基础上,我新增了sql语句,方便大家理解 mysql距离计算 ...
- atomic与nonatomic的区别
原子性(atomic):某操作具备整体性,也就是说,系统其他部分无法观察到其中间步骤所生成的临时结果,而只能看到操作前与操作后的结果,那么就称改操作就是“原子的”(atomic),或者说,该操作具备“ ...