yum方式安装lnmp

Posted linyouyi

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了yum方式安装lnmp相关的知识,希望对你有一定的参考价值。

1、安装mysql
>>>yum -y install mariadb mariadb-server
给root用户设置密码
>>>mysqladmin -uroot password "pwd123"
>>>grant all privileges on *.* to ‘root‘@‘localhost‘ identified by ‘pwd123‘ with grant option;#高版本可能出现问题
>>>grant all privileges on *.* to "root"@"localhost" identified by "pwd123";


2、安装php
>>>yum -y install php php-fpm php-mysql php-gd
centos7.2不需要设置php.ini和php-fpm.conf

3、安装nginx
>>>yum -y install nginx
或者源码安装
>>>yum -y install make zlib zlib-devel gcc-c++ libtool openssl openssl-devel
>>>./configure --prefix=/usr/local/nginx --user=nginx --group=nginx --with-http_stub_status_module --with-http_ssl_module


4、配置
nginx
location ~ .php$ {
  root html/aaaa;
  fastcgi_pass 127.0.0.1:9000;
  fastcgi_index index.php;
  include fastcgi.conf;
}





















以上是关于yum方式安装lnmp的主要内容,如果未能解决你的问题,请参考以下文章

Centos 7 下yum搭建lnmp环境(yum安装方式)

LNMP(Linux+Nginx+MySQL+PHP) yum方式安装Redis

CentOS 7.4 yum方式搭建LNMP环境,部署WordPress博客,并安装XCache模块

Nginx 实践案例(yum安装方式):利用LNMP实现可道云盘

LNMP平台搭建---MySQL安装篇

linux入门系列20--Web服务之LNMP架构实战