nginx的最新版本为1.12.2,是现在很火的一个款 web代理服务和中间件。
mysql的最新稳定版本为 5.7 是一个开源而且稳定高效的关系行数据库。
mongo的最新稳定版本为 3.4 是一个性能卓越的no sql型的数据库。
很多人都在为安装消耗了不少时间,初学者很多时间都花费再这个上面,其实如果你不作管理员,真心消耗在安装上的时间,幕客觉得是很没必要的。
也有一些管理员,喜欢用源码的方式安装,原因是能定制更复合的场景。但幕客看来,其实也没必要,官方的yum源,安装对性能的降低确切的说幕客还没遇到过。参数和模块很多都是可以用yum安装完后调节的。
所以大家真心没太有必要纠结安装上了!!
下面幕客给大家介绍下着几款常用在企业中的很火、而且最新的、稳定版本的web中间件、数据库的简单安装方式、和yum源配置。
repo文件是redhat、centos系列中yum使用的配置,目的在于告诉yum install安装的时候去哪个地方寻找最合适的安装包。
一、mysql 5.7 安装
1、编辑repo
执行vim /etc/yum.repos.d/mongo.repo
内容如下:
[mysql57-community-dmr]
name=MySQL 5.7 Community Server Development Milestone Rel
easebaseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=1gpgcheck=0
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql
2、安装:
mysql-community-client.i686 5.7.20-1.el6 mysql57-community-dmr
mysql-community-client.x86_64 5.7.20-1.el6 mysql57-community-dmr
mysql-community-common.i686 5.7.20-1.el6 mysql57-community-dmr
mysql-community-common.x86_64 5.7.20-1.el6 mysql57-community-dmr
mysql-community-devel.i686 5.7.20-1.el6 mysql57-community-dmr
mysql-community-devel.x86_64 5.7.20-1.el6 mysql57-community-dmr
mysql-community-embedded.i686 5.7.20-1.el6 mysql57-community-dmr
mysql-community-embedded.x86_64 5.7.20-1.el6 mysql57-community-dmr
mysql-community-embedded-devel.i686 5.7.20-1.el6 mysql57-community-dmr
mysql-community-embedded-devel.x86_64 5.7.20-1.el6 mysql57-community-dmr
mysql-community-libs.i686 5.7.20-1.el6 mysql57-community-dmr
执行如下命令:
yum install mysql
3、官方介绍
https://dev.mysql.com/doc/mysql-yum-repo-quick-guide/en/
二、Mongo 官方源
1、编辑repo
执行vim /etc/yum.repos.d/mongo.repo
粘贴内容如下:
[mongodb-org-3.4]
name=MongoDB 3.4 Repositorybaseurl=https://repo.mongodb.org/yum/redhat/$releasever/mongodb-org/3.4/x86_64/
gpgcheck=0
enabled=1
2、安装
执行:yum install mongodb
mongodb.x86_64 2.4.14-4.el6 geoip-extras
mongodb-org.x86_64 3.4.10-1.el6 mongodb-org-3.4
mongodb-org-mongos.x86_64 3.4.10-1.el6 mongodb-org-3.4
mongodb-org-server.x86_64 3.4.10-1.el6 mongodb-org-3.4
mongodb-org-shell.x86_64 3.4.10-1.el6 mongodb-org-3.4
mongodb-org-tools.x86_64 3.4.10-1.el6 mongodb-org-3.4
3 、官方安装文档
https://docs.mongodb.com/manual/tutorial/install-mongodb-on-red-hat/
三、Nginx 官方源
1、编辑repo文件
执行:vim /etc/yum.repos.d/nginx
编辑文件,如下:
注意:需要根据你的系统版本修改OS和OSRELEASE
[nginx]name=nginx repobaseurl=http://nginx.org/packages/OS/OSRELEASE/$basearch/gpgcheck=0
enabled=1
2、安装
nginx.x86_64 1.12.2-1.el6.ngx nginx
执行:
yum install nginx
3、官方文档
http://nginx.org/en/linux_packages.html#stable
课程介绍:https://coding.imooc.com/class/160.html
课程问答区:https://coding.imooc.com/learn/qa/160.html
共同学习,写下你的评论
评论加载中...
作者其他优质文章