CentOS7.0搭建LNMP之二

1,添加软件源Remi,Remi源中的软件几乎都是最新稳定版。或许您会怀疑稳定不?放心吧, 这些都是Linux骨灰级的玩家编译好放进源里的,他们对于系统环境和软件编译参数的熟悉程度毋庸置疑。

Remi官方网站:http://rpms.famillecollet.com/

添加Remi源,不管32位还是64位的系统,运行下面命令:

rpm -ivh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm

Remi源默认是没有启用的,我们来启用Remi源,修改 /etc/yum.repos.d/remi.repo 文件,把文件内的 enabled=0 改为 enabled=1 ,注意:改文件内有2个 enabled=0 我们修改[remi]下面的,不要修改[remi-test]下面的。

2,安装php,php-fpm以及php扩展:

yum install php php-fpm php-bcmatch php-gd php-mbstring php-mcrypt php-mysql

3,安装mysql:

yum install mysql-server

初始化配置MYSQL,包括设置密码(默认密码为空),删除匿名用户,禁止远程连接,删除测试数据库等等

mysql_secure_installation,一路y下去就可以

4,安装nginx:

yum install nginx

安装完成,种软件配置文件自动生成:
Mysql配置文件my.cnf路径:/etc/my.cnf

Nginx配置文件nginx.conf路径:/etc/nginx/nginx.conf

PHP配置文件php.ini路径: /etc/php.ini

php-fpm配置文件php-fpm.conf路径:/etc/php-fpm.conf

Leave a Comment

Your email address will not be published.

*

此站点使用Akismet来减少垃圾评论。了解我们如何处理您的评论数据