CentOS的lnmp环境配置

时间:2022-07-23
本文章向大家介绍CentOS的lnmp环境配置,主要内容包括其使用实例、应用技巧、基本知识点总结和需要注意事项,具有一定的参考价值,需要的朋友可以参考一下。

一 、安装nginx

1.安装mysql nginx php

yum install nginx

2.启动nginx,测试nginx服务是否正常运行

service nginx restart

wget http://127.0.0.1

1.png

二、配置php

1.安装和启动php-fpm

yum install php php-fpm service php-fpm start

2.修改php-fpm和nginx的配置,实现nginx和php联动

(1)查看php-fpm的默认配置 cat /etc/php-fpm.d/www.conf |grep -i 'listen =

2.png

(2)修改配置,将php解析的请求转发到127.0.0.0:9000 vim /etc/nginx/conf.d/default.conf

server {

  listen       80;
  root   /usr/share/nginx/html;
  server_name  localhost;

  #charset koi8-r;
  #access_log  /var/log/nginx/log/host.access.log  main;

  location / {
      index  index.html index.htm;
  }

  #error_page  404              /404.html;

  # redirect server error pages to the static page /50x.html
  #
  error_page   500 502 503 504  /50x.html;
  location = /50x.html {
      root   /usr/share/nginx/html;
  }

  # proxy the PHP scripts to Apache listening on 127.0.0.1:80
  #
  #location ~ .php$ {
  #    proxy_pass   http://127.0.0.1;
  #}

  # pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
  #
  location ~ .php$ {
      fastcgi_pass   127.0.0.1:9000;
      fastcgi_index   index.php;
      fastcgi_param  SCRIPT_FILENAME  $document_root$fastcgi_script_name;
      include        fastcgi_params;
  }
  # deny access to .htaccess files, if Apache's document root
  # concurs with nginx's one
  #
  #location ~ /.ht {
  #    deny  all;
  #}
}

3.配置生效

重启nginx,使配置生效 service nginx restart

4.环境配置验证

vim /usr/share/nginx/html/index.php

3.png

5.杀掉php-fpm

killall php-fpm

6.重新开启php-fpm

service php-fpm start

三、安装mysql

1.安装

yum install mysql mysql-server

2.启动

service mysqld start

4.png

3.设置用户名和密码

mysqladmin -u root password "XXXXXXXX"

4.进入mysql

mysql -u root -p