资讯专栏INFORMATION COLUMN

LAMP+LNMP安装注意问题及安装

BlackHole1 / 2072人阅读

摘要:一安装注意事项必须先安装再安装支持需要生成文件,需要编译时添加该语句配置文件修改注意事项修改为允许修改为设置默认首页文件,增加添加增加同时连接数设置工作目录说明搜索修改为搜索修改为设置默认文档索修改为增加类型在后面添加修改配置文

一、LAMP安装注意事项

必须先安装apache再安装 php,apache支持php需要生成libphp5.so 文件,需要编译时添加该语句 --with-apxs2=/usr/local/apache/bin/apxs

apache配置文件修改注意事项
2.1. AllowOverride None  #修改为:AllowOverride All (允许.htaccess)
2.2.DirectoryIndex index.html #修改为:DirectoryIndex index.html index.htm Default.html Default.htm index.php(设置默认首页文件,增加index.php)
2.3.MaxKeepAliveRequests 500 #添加MaxKeepAliveRequests 500 (增加同时连接数)
2.4.设置工作目录 #说明: 搜索DocumentRoot, 修改为 DocumentRoot "/var/www/html" 搜索, 修改为 "/var/www/html">
2.5. 设置默认文档 : 索, 修改为 DirectoryIndex index.html index.php
2.6.增加php类型 AddType application/x-gzip .gz .tgz在后面添加 AddType application/x-httpd-php .html .php
2.6.#修改配置文件 vi /etc/httpd/httpd.conf
#查找ServerName,将注释去掉 ServerName www.example.com:80 www.example.com->需要改的ip
2.7.#添加到自启动
echo "/usr/local/apache2/bin/apachectl start" >> /etc/rc.d/rc.sysinit #将apache添加到系统服务中
cp /usr/local/apache2/bin/apachectl /etc/init.d/httpd
vi /etc/rc.d/init.d/httpd
#在#!/bin/sh后添加下面两行(包含"#")
# chkconfig:2345 85 15
# description:Apache
#添加执行权限 chmod 755 /etc/init.d/httpd
#添加到系统服务中 chkconfig --add httpd
#开启apache service httpd start

*注:设置SELinux为permissive模式 命令行下 setenforce 0 立即生效,重启失效 修改配置文件后, 重启apache才能生效

二、LNMP安装
必须开启 --enbale-fpm

</>复制代码

  1. groupadd www
  2. useradd -s /sbin/nologin -g www www
  3. ./configure --user=www --group=www --prefix=/usr/local/nginx --with-http_stub_status_module --with-http_ssl_module --with-http_spdy_module --with-http_gzip_static_module --with-ipv6 --with-http_sub_module
  4. make && make install
  5. 软连接
  6. ln -sf /usr/local/nginx/sbin/nginx /usr/bin/nginx

修改配置文件支持php
可把 root 改为想要的目录
打开一下 #

</>复制代码

  1. #location ~ .php$ {
  2. # root /home/wwwroot/;
  3. # fastcgi_pass 127.0.0.1:9000;
  4. # fastcgi_index index.php;
  5. # fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  6. # include fastcgi_params;
  7. # }
  8. like this:
  9. location ~ .php$ {
  10. root /home/wwwroot/;
  11. fastcgi_pass 127.0.0.1:9000;
  12. fastcgi_index index.php;
  13. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  14. include fastcgi_params;
  15. }

也可以把给段配置改为改
*$document_root指 定义的根目录

</>复制代码

  1. location ~.php{
  2. fastcgi_pass unix:/tmp/php-fcgi.sock; //下面解释
  3. fastcgi_index index.php;
  4. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  5. include fastcgi.conf;
  6. }

*fastcgi_pass 里的 127.0.0.1:9000; 可改为unix:/tmp/php-fcgi.sock;
需要更改 php-fpm.conf 需要添加
group=www
user=www
listen=/tmp/php-fcgi.sock
listen.owner= www
listen.group =www

还要建立 /tmp/php-fcgi.sock; touch /tmp/php-fcgi.sock

</>复制代码

  1. chown www:www /tmp/php-fcgi.sock 赋予其权限
  2. nginx -s reload
  3. php-fpm 重启

配置文件 :


</>复制代码

  1. server{
  2. listen 8080;
  3. server_name 192.168.139.134:8080;
  4. index index.html index.htm index.php;
  5. root /home/wwwroot/demo;
  6. location ~.php{
  7. fastcgi_pass unix:/tmp/php-fcgi.sock;
  8. fastcgi_index index.php;
  9. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  10. include fastcgi.conf;
  11. }
  12. }
  13. location ~ .*.(gif|jpg|jpeg|png|bmp|swf|mp4)$
  14. {
  15. expires 30d;
  16. }
  17. location ~ .*.(js|css)?$
  18. {
  19. expires 12h;
  20. }
  21. ***************************************************
  22. #user nobody;
  23. worker_processes 1;
  24. #error_log logs/error.log;
  25. #error_log logs/error.log notice;
  26. #error_log logs/error.log info;
  27. #pid logs/nginx.pid;
  28. events {
  29. worker_connections 1024;
  30. }
  31. http {
  32. include mime.types;
  33. default_type application/octet-stream;
  34. #log_format main "$remote_addr - $remote_user [$time_local] "$request" "
  35. # "$status $body_bytes_sent "$http_referer" "
  36. # ""$http_user_agent" "$http_x_forwarded_for"";
  37. #access_log logs/access.log main;
  38. sendfile on;
  39. #tcp_nopush on;
  40. #keepalive_timeout 0;
  41. keepalive_timeout 65;
  42. #gzip on;
  43. server {
  44. listen 80;
  45. server_name localhost;
  46. #charset koi8-r;
  47. #access_log logs/host.access.log main;
  48. location / {
  49. root /home/wwwroot/;
  50. index index.html index.htm index.php;
  51. }
  52. #error_page 404 /404.html;
  53. # redirect server error pages to the static page /50x.html
  54. #
  55. error_page 500 502 503 504 /50x.html;
  56. location = /50x.html {
  57. root html;
  58. }
  59. # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  60. #
  61. #location ~ .php$ {
  62. # proxy_pass http://127.0.0.1;
  63. #}
  64. # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  65. #
  66. location ~ .php$ {
  67. root /home/wwwroot/;
  68. fastcgi_pass 127.0.0.1:9000;
  69. fastcgi_index index.php;
  70. fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
  71. include fastcgi_params;
  72. }
  73. # deny access to .htaccess files, if Apache"s document root
  74. # concurs with nginx"s one
  75. #
  76. #location ~ /.ht {
  77. # deny all;
  78. #}
  79. }
  80. # another virtual host using mix of IP-, name-, and port-based configuration
  81. #
  82. #server {
  83. # listen 8000;
  84. # listen somename:8080;
  85. # server_name somename alias another.alias;
  86. # location / {
  87. # root html;
  88. # index index.html index.htm;
  89. # }
  90. #}
  91. # HTTPS server
  92. #
  93. #server {
  94. # listen 443 ssl;
  95. # server_name localhost;
  96. # ssl_certificate cert.pem;
  97. # ssl_certificate_key cert.key;
  98. # ssl_session_cache shared:SSL:1m;
  99. # ssl_session_timeout 5m;
  100. # ssl_ciphers HIGH:!aNULL:!MD5;
  101. # ssl_prefer_server_ciphers on;
  102. # location / {
  103. # root html;
  104. # index index.html index.htm;
  105. # }
  106. #}
  107. include vhost/*.conf;
  108. }

//nginx 负载均衡 反相代理

</>复制代码

  1. upstream redis { //redis自定义的 和下面 proxy_pass http://redis;名称对应
  2. server 192.168.244.129:8080;
  3. server 192.168.244.109:8080;
  4. #ip_hash;//
  5. }
  6. server {
  7. listen 8787; //主机端口
  8. server_name 192.168.0.123:8787; 主机端口 ip
  9. location / {
  10. proxy_set_header Host $http_host;
  11. proxy_redirect off;
  12. proxy_set_header X-Real-IP $remote_addr;
  13. proxy_set_header X-Scheme $scheme;
  14. proxy_pass http://redis;
  15. }
  16. location ~ .*.(gif|jpg|jpeg|png|bmp|swf|mp4)$
  17. {
  18. expires 30d;
  19. }
  20. location ~ .*.(js|css)?$
  21. {
  22. expires 12h;
  23. }
  24. }

文章版权归作者所有,未经允许请勿转载,若此文章存在违规行为,您可以联系管理员删除。

转载请注明本文地址:https://www.ucloud.cn/yun/40138.html

相关文章

  • 一键安装LNMPLAMP Web环境实现Linux服务器部署 PHP MySQL Nginx/Ap

    摘要:目前,我们看到的老蒋采用的部署的环境,在镜像中配置,于是我们会称作为。有没有一件傻瓜式安装工具脚本呢这里老蒋要推荐的来自国内比较老牌且一直更新维护的一键安装包,我们可以较为直观且无人值守的安装需要的网站服务器环境。如今我们建站较多的还是会选择VPS云服务器,很少会去选择虚拟主机,固然前者有很多的优点。不过相比虚拟主机不同的是,VPS云服务器需要我们自己配置WEB环境,而且我们较多的还是会选择...

    IntMain 评论0 收藏0
  • LAMP+LNMP安装注意问题安装

    摘要:一安装注意事项必须先安装再安装支持需要生成文件,需要编译时添加该语句配置文件修改注意事项修改为允许修改为设置默认首页文件,增加添加增加同时连接数设置工作目录说明搜索修改为搜索修改为设置默认文档索修改为增加类型在后面添加修改配置文 一、LAMP安装注意事项 必须先安装apache再安装 php,apache支持php需要生成libphp5.so 文件,需要编译时添加该语句 --with...

    linkin 评论0 收藏0
  • 详细整理5款较为常用的Linux VPS服务器WEB一键安装工具

    摘要:第一个人记忆中这款工具至今估计有十年左右时间当初也是个人站长为方便自己使用环境配置开发的。第二一键脚本也是由于个人站长提供的,经过几年的改善目前也是比较完善。 早年我们如果在Linux服务器配置网站环境的时候一般如何操作的?安装cPanel面板?这个是要花钱的,记忆中好像每个月需要十多美元,对于普通的个人站长用户来说确实是不小的费用。即便我们用破解版也不行,因为这个牵扯到安全问题。那我...

    techstay 评论0 收藏0
  • LAMP Web一键安装脚本 – Linux服务器安装Apache/MySQL/PHP网站环境

    摘要:前面老蒋有在网站中分享到一键安装包在服务器中部署网站运行环境,且我也有在文章中有提到那脚本也是支持安装的。今天老蒋要介绍的这个脚本是只能安装一键安装脚本,相比上面的这个脚本更为轻便一些,没有附带太多的内置软件。前面老蒋有在网站中分享到LNMP一键安装包在Linux服务器中部署PHP+MySQL+Nginx 网站运行环境,且我也有在文章中有提到那脚本也是支持安装LAMP的。今天老蒋要介绍的这个...

    starsfun 评论0 收藏0
  • docker的简介-安装-pull-push-Dockfile

    摘要:安装还是在上,上建议别折腾。也就是说本地是空的。是否截断显示中间层镜像只是显示仓库一系列镜像的集合。的后台搜索然后直接上传镜像,会展开说。在本地构件一个新的镜像保存对容器修改,并再次使用。然后我们安装上了。 1.1docker概要 一个容器就是宿主机的一个进程。对,就是个进程。原理方面不大懂,但是看更多linux 进程 文件管理 网络 等方面应该会加深理解。namespace+cgro...

    why_rookie 评论0 收藏0

发表评论

0条评论

最新活动
阅读需要支付1元查看
<