CentOS 7下安装配置PHP7跟LAMP及MongoDB和Redis

CentOS 7下安装配置PHP7跟LAMP及MongoDB和Redis

我是想能yum就yum,所有软件的版本一直会升级,注意自己当时的版本是不是已经更新了。

首先装CentOS 7

Win10下安装CentOS 7双系统详解 

如果你忘了设置swap分区,下面的文章可以教你怎么补一个上去:

装好centos7后默认是不能上网的

cd /etc/sysconfig/network-scripts/

找到形如ifcfg-enp0s3的文件,修改onboot=yes

然后

service network restart

安装apache2 (centos里叫httpd)

yum install httpd

启动apache2

service httpd start

看看生效了没

curl

设置开机自动运行

chkconfig httpd on

安装php7

首先要更新源

rpm -Uvh https://dl.Fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm

rpm -Uvh https://mirror.webtatic.com/yum/el7/webtatic-release.rpm

然后yum安装

yum install php70w

重启apache

service httpd restart

看下phpinfo

vi /var/www/html/info.php

<?php phpinfo(); ?>

访问

看到php7.0.x信息就OK啦

安装MySQL5.7

更新源先

rpm -ivh

安装

yum install mysql-community-server

mysql5.7初始密码不再是空,会在shell输出里告诉你密码文件地址,一般在~/.mysql_secret下

如果这个文件不幸没有的话,也不是没有办法,按操作。

设置开机启动:

chkconfig mysqld on

安装php7的mysql扩展

yum install php70w-mysql

重启apache2生效

安装mongodb最新版

mongodb官网的说明非常详细,照做即可:

https://docs.mongodb.com/manual/tutorial/install-mongodb-on-red-hat/

安装php7的mongo扩展

先要装一堆东西

yum install php-pear

yum install php-devel

yum -y install gcc

yum install openssl openssl-devel

pecl channel-update pecl.php.net

然后通过pecl装php7的mongodb扩展

pecl install mongo

pecl install mongodb

mongo是老版本,现在不会再升级了,但很多历史代码都在用。mongodb是新版的扩展,官方推荐。

不要忘了php.ini加上

extension=mongo.so 或 extension=mongodb.so 并且重启apache2

安装redis一套

不能用yum啦,很不爽。

下载最新版本(目前是3.2.5)

wget

tar xzf redis-3.2.5.tar.gz

cd redis-3.2.5

make

make后可能会提示Hint: It's a good idea to run 'make test'

然后运行make test,可能提示没有安装tcl

yum install -y tcl

重新make test 然后make

---

也有可能发生错误2:error: jemalloc/jemalloc.h: No such file or directory

原因:一些编译依赖或原来编译遗留出现的问题

解决:make distclean 清理一下,然后再make。

---

安装成功后src目录会多出redis-server,redis-cli等可执行文件

./src/redis-server 服务器端

./src/redis-cli 客户端

安装php7的redis扩展

pecl install redis

修改php.ini添加extension=redis.so,然后重启apache2

PS1:

如果yum的时候提示xxx not signed,加上参数 --nogpgcheck。

下面关于LAMP相关的内容你可能也喜欢

LAMP平台安装Xcache和Memcached加速网站运行   

CentOS 7下搭建LAMP平台环境 

CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境

Ubuntu 14.04 配置 LAMP+phpMyAdmin PHP(5.5.9)开发环境 

Ubuntu 14.10 下安装 LAMP 服务图文详解 

LAMP结合NFS构建小型博客站点 

CentOS7下安装部署LAMP环境 

内容版权声明:除非注明,否则皆为本站原创文章。

转载注明出处:https://www.heiqu.com/b3c8ef5191c28db10040f4a9956dfbb8.html