centos6.6yum安装mysql

我的个人博客地址:[漫步乄时光](http://www.rajoy.me) ## 添加源 ## 下载rpm包 `wget http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm` 安装Mysql源 `sudo rpm -Uvh mysql-community-release-el6-5.noarch.rpm` 查看mysql源 ` yum repol

我的个人博客地址:

添加源

下载rpm包
wget http://dev.mysql.com/get/mysql-community-release-el6-5.noarch.rpm
安装Mysql源
sudo rpm -Uvh mysql-community-release-el6-5.noarch.rpm
查看mysql源
yum repolist all | grep mysql
如果正常 你就能看到mysql 5.6社区版啦。

编辑下载源

/etc/yum.repos.d/mysql-community.repo中你可以看到类似

# Enable to use MySQL 5.6
[mysql56-community]
name=MySQL 5.6 Community Server
baseurl=http://repo.mysql.com/yum/mysql-5.6-community/el/5/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

通过配置 enable等于1或者0 来决定启用那个版本。
例如我启用了Mysql5.7

# Note: MySQL 5.7 is currently in development. For use at your own risk.
# Please read with sub pages: https://dev.mysql.com/doc/relnotes/mysql/5.7/en/
[mysql57-community-dmr]
name=MySQL 5.7 Community Server Development Milestone Release
baseurl=http://repo.mysql.com/yum/mysql-5.7-community/el/6/$basearch/
enabled=1
gpgcheck=1
gpgkey=file:///etc/pki/rpm-gpg/RPM-GPG-KEY-mysql

安装mysql

开始安装
sudo yum install mysql-community-server
启动mysql
service mysqld start
如果是mysql5.7会生成初始密码,用下面命令查看
sudo grep 'temporary password' /var/log/mysqld.log
然后你就可以对mysql 为所欲为了。

配置mysql

然而事情并没有结束,mysql初始配置,占用的内存非常高。Then,what can I do.
参考。相当详细。
当然你也可以参考,非常详细。请叫我教程搬运工。

作者: dawei

【声明】:永州站长网内容转载自互联网,其相关言论仅代表作者个人观点绝非权威,不代表本站立场。如您发现内容存在版权问题,请提交相关链接至邮箱:bqsm@foxmail.com,我们将及时予以处理。

为您推荐

联系我们

联系我们

0577-28828765

在线咨询: QQ交谈

邮箱: xwei067@foxmail.com

工作时间:周一至周五,9:00-17:30,节假日休息

返回顶部