目前CentOS/Red Hat (RHEL) 6.2官方自带的mysql版本为5.1,mysql5.5已经出来了。

相比mysql5.1,mysql5.5不仅在多个方面进行了改进:

  • 性能上有了很大提升
  • 默认存储引擎更改为InnoDB
  • CPU多核处理性能提升
  • 复制功能加强,新增半同步复制
  • 增强表分区功能
  • 等等
本文将指导你如何在CentOS/Red Hat (RHEL) 6.2及Fedora 17/16下安装最新版本的社区版本mysql。
如果您要升级mysql,请先备份好你的数据及配置文件再行升级。
 
让我们开始动手吧。
 
step1. 切换到root用户
  1. su -
  2. ## OR ##
  3. sudo -i
step2. 安装remi软件源
 
Fedora平台
 
  1. ## Remi Dependency on Fedora 17, 16, 15
  2. rpm -Uvh http://download1.rpmfusion.org/free/fedora/rpmfusion-free-release-stable.noarch.rpm
  3. rpm -Uvh http://download1.rpmfusion.org/nonfree/fedora/rpmfusion-nonfree-release-stable.noarch.rpm
  4. ## Fedora 17 ##
  5. rpm -Uvh http://rpms.famillecollet.com/remi-release-17.rpm
  6. ## Fedora 16 ##
  7. rpm -Uvh http://rpms.famillecollet.com/remi-release-16.rpm
  8. ## Fedora 15 ##
  9. rpm -Uvh http://rpms.famillecollet.com/remi-release-15.rpm
  10. ## Fedora 14 ##
  11. rpm -Uvh http://rpms.famillecollet.com/remi-release-14.rpm
  12. ## Fedora 13 ##
  13. rpm -Uvh http://rpms.famillecollet.com/remi-release-13.rpm
  14. ## Fedora 12 ##
  15. rpm -Uvh http://rpms.famillecollet.com/remi-release-12.rpm
 
CentOS及Red Hat (RHEL)平台 
  1. ## Remi Dependency on CentOS 6 and Red Hat (RHEL) 6 ##
  2. rpm -Uvh http://download.fedoraproject.org/pub/epel/6/i386/epel-release-6-7.noarch.rpm
  3. ## CentOS 6 and Red Hat (RHEL) 6 ##
  4. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-6.rpm
  5. ## Remi Dependency on CentOS 5 and Red Hat (RHEL) 5 ##
  6. rpm -Uvh http://dl.fedoraproject.org/pub/epel/5/i386/epel-release-5-4.noarch.rpm
  7. ## CentOS 5 and Red Hat (RHEL) 5 ##
  8. rpm -Uvh http://rpms.famillecollet.com/enterprise/remi-release-5.rpm
 
step3. 查看MySQL版本号
 
Fedora 17, 16, 15, 14, 13, 12
  1. yum --enablerepo=remi list mysql mysql-server
CentOS 6.2/6.1/6/5.8 and Red Hat (RHEL) 6.2/6.1/6/5.8

  1. yum --enablerepo=remi,remi-test list mysql mysql-server

输出:

  1. Loaded plugins: changelog, fastestmirror, presto, refresh-packagekit
  2. ...
  3. remi                                                            | 3.0 kB     00:00
  4. remi/primary_db                                                 | 106 kB     00:00
  5. Available Packages
  6. mysql.i686                               5.5.25-1.fc14.remi                        @remi
  7. mysql-server.i686                        5.5.25-1.fc14.remi
 
step4. 安装或升级到MySQL5.5.25
Fedora 17, 16, 15, 14, 13, 12
  1. yum --enablerepo=remi install mysql mysql-server

CentOS 6.2/6.1/6/5.8 and Red Hat (RHEL) 6.2/6.1/6/5.8

  1. yum --enablerepo=remi,remi-test install mysql mysql-server
step5. 开启mysql服务并配置自启动
Fedora 17/16
  1. systemctl start mysqld.service
  2. systemctl enable mysqld.service
Fedora 15/14/13/12/11, CentOS 6.2/6.1/6/5.8 and Red Hat (RHEL) 6.2/6.1/6/5.8

  1. /etc/init.d/mysqld start
  2. ## OR ##
  3. service mysqld start
  4. chkconfig --levels 235 mysqld on
 
step6. MySQL 安全设置
  • 设置(修改)root密码
  • 删除匿名用户
  • 禁用root远程登录
  • 删除测试数据库test
  • 重载权限表

要启用MySQL 安全设置请输入以下命令

  1. /usr/bin/mysql_secure_installation
 
输出
  1. NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
  2. SERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!
  3. In order to log into MySQL to secure it, we\'ll need the current
  4. password for the root user.  If you\'ve just installed MySQL, and
  5. you haven\'t set the root password yet, the password will be blank,
  6. so you should just press enter here.
  7. Enter current password for root (enter for none):
  8. OK, successfully used password, moving on...
  9. Setting the root password ensures that nobody can log into the MySQL
  10. root user without the proper authorisation.
  11. Set root password? [Y/n] Y
  12. New password:
  13. Re-enter new password:
  14. Password updated successfully!
  15. Reloading privilege tables..
  16. ... Success!
  17. By default, a MySQL installation has an anonymous user, allowing anyone
  18. to log into MySQL without having to have a user account created for
  19. them.  This is intended only for testing, and to make the installation
  20. go a bit smoother.  You should remove them before moving into a
  21. production environment.
  22. Remove anonymous users? [Y/n] Y
  23. ... Success!
  24. Normally, root should only be allowed to connect from 'localhost'.  This
  25. ensures that someone cannot guess at the root password from the network.
  26. Disallow root login remotely? [Y/n] Y
  27. ... Success!
  28. By default, MySQL comes with a database named 'test' that anyone can
  29. access.  This is also intended only for testing, and should be removed
  30. before moving into a production environment.
  31. Remove test database and access to it? [Y/n] Y
  32. - Dropping test database...
  33. ... Success!
  34. - Removing privileges on test database...
  35. ... Success!
  36. Reloading the privilege tables will ensure that all changes made so far
  37. will take effect immediately.
  38. Reload privilege tables now? [Y/n] Y
  39. ... Success!
  40. Cleaning up...
  41. All done!  If you\'ve completed all of the above steps, your MySQL
  42. installation should now be secure.
  43. Thanks for using MySQL!
 
【注】:如果您不想启动MySQL 安全设置命令,但至少也得修改一下root用户密码
 
  1. mysqladmin -u root password [your_password_here]
  2. ## 示例##
  3. mysqladmin -u root password myownsecrectpass
step7. 使用密码连接本地数据库

  1. mysql -u root -p
  2. ## OR ##
  3. mysql -h localhost -u root -p
step8. 为指定数据库,指定用户配置指定客户端(IP)远程访问

本示例的配置参数如下

  1. DB_NAME = webdb
  2. USER_NAME = webdb_user
  3. REMOTE_IP = 10.0.15.25
  4. PASSWORD = password123
  5. PERMISSIONS = ALL
1. 创建数据库 webdb

  1. mysql> CREATE DATABASE webdb;

2. 创建用户webdb_user

  1. mysql> CREATE USER 'webdb_user'@'10.0.15.25' IDENTIFIED BY 'password123';

3.  授权

  1. mysql> GRANT ALL ON webdb.* TO webdb_user@'10.0.15.25';

4.  重载权限表

  1. mysql> FLUSH PRIVILEGES;
step9. 配置防火墙开启3306端口
1. 修改/etc/sysconfig/iptables 文件:

  1. vi /etc/sysconfig/iptables

2. 在COMMIT之前加入以下内容:

  1. -A INPUT -m state --state NEW -m tcp -p tcp --dport 3306 -j ACCEPT

3. 重启Iptables:

  1. service iptables restart
  2. ## OR ##
  3. /etc/init.d/iptables restart

4. 在客户机上测试远程访问数据库:

  1. mysql -h dbserver_name_or_ip_address -u webdb_user -p webdb
 
 
 
********************************************
* 作者:叶文涛 
* 链接:在CentOS/Red Hat (RHEL) 6.2/5.8及Fedora 17/16下的安装MySQL 5.5
* 源文:Install MySQL 5.5.25 on Fedora 17/16, CentOS/Red Hat (RHEL) 6.2/5.8
******************转载请注明来源 ***************

使用YUM安装MySQL 5.5(适用于CentOS6.2/5.8及Fedora 17/16平台)的更多相关文章

  1. [转]Centos6.5使用yum安装mysql—配置MySQL允许远程登录

    一.mysql安装 第1步.yum安装mysql[root@stonex ~]#  yum -y install mysql-server安装结果:Installed:    mysql-server ...

  2. Centos6.5使用yum安装mysql——快速上手必备(转载)

    第1步.yum安装mysql[root@stonex ~]#  yum -y install mysql-server安装结果:Installed:    mysql-server.x86_64 0: ...

  3. Centos6.5使用yum安装mysql

    0. 说明 先要查看yum源是否有你想要的mysql版本 yum list | grep mysql 如果没有则先要更新yum源 yum -y update 更新后即可进行下一步操作. 1. yum安 ...

  4. Centos6.5使用yum安装mysql——快速上手必备

    第1步.yum安装mysql [root@stonex ~]#  yum -y install mysql-server 安装结果: Installed:     mysql-server.x86_6 ...

  5. Centos6.5使用yum安装mysql——快速上手必备(转)

    第1步.yum安装mysql[root@stonex ~]#  yum -y install mysql-server安装结果:Installed:    mysql-server.x86_64 0: ...

  6. centos6.9使用yum安装mysql(简单粗暴,亲测有效)

    第1步.yum安装mysql[root@stonex ~]#  yum -y install mysql-server安装结果:Installed:    mysql-server.x86_64 0: ...

  7. Linux学习总结(4)——Centos6.5使用yum安装mysql——快速上手必备

    第1步.yum安装mysql [root@stonex ~]#  yum -y install mysql-server 安装结果: Installed:     mysql-server.x86_6 ...

  8. centos6 yum安装mysql 5.6 (完整版)

    使用源代码编译安装mysql还是比较麻烦,一般来说设备安装时请网络同事临时开通linux上网,通过yum网络实现快速安装,或配置yum仓库进行内网统一安装. 通过网络快速安装过程如下 一.检查系统是否 ...

  9. Yum安装MySQL以及相关目录路径和修改目录

    有些时候,为了方便,有些同学喜欢通过yum的方式安装MySQL,没有设置统一的文件目录以及软件目录,那么就会为后续的维护工作带来很大的麻烦! 下面就简单介绍一下yum安装MySQL的步骤以及这类安装下 ...

随机推荐

  1. Partition--分区Demo

    --============================================================= --创建分区函数 --创建500分区,分区键按照1000依次递增 CRE ...

  2. c#设计模式系列:观察者模式(Observer Pattern)

    引言 在现实生活中,处处可见观察者模式,例如,微信中的订阅号,订阅博客和QQ微博中关注好友,这些都属于观察者模式的应用.在这一章将分享我对观察者模式的理解,废话不多说了,直接进入今天的主题. 观察者模 ...

  3. 记一次 Confluence 被攻击事件

    故事开始 4 月 14 日,星期天,天气不好,呆在家玩 LOL,正 Happy 的时候同事打电话给我,说 Confluence 看文档的时候挂了,报错:502. 一寻思,不就挂了吗,小意思,重启呗,于 ...

  4. mySQL授权(让从服务器用户可以登录到主服务器)

    mySQL授权(让从服务器用户可以登录到主服务器) 1.查看用户授权表 ? 1 select user,host,password from mysql.user; 2.给用户设置密码 ? 1 2 u ...

  5. HTML-JavaScript的DOM操作-非重点部分

    1.DOM的基本概念 DOM是文档对象模型,这种模型为树模型:文档是指标签文档(HTML文档),对象是指文档中每个元素:模型是指抽象划的东西. 2.Windows对象操作 一.属性和方法 属性(值或者 ...

  6. 数据库--sql文件

    sql 脚本是包含一到多个 sql 命令的 sql 语句集合 使用 Linux: mysqldump 命令 1.导出数据和表结构: mysqldump -u 用户名 -p 数据库名称 > nam ...

  7. SQL语句之用户管理

    SQL语句系列 1.SQL语句之行操作 2.SQL语句之表操作 3.SQL语句之数据库操作 4.SQL语句之用户管理 占坑,待写……

  8. 1. JavaScript学习笔记——JS基础

    1. JavaScript基础 1.1 语法 严格区分大小写 标识符,第一个字符可以是 $,建议使用小驼峰法, 保留字.关键字.true.false.null不能作为标识符 JavaScript是用U ...

  9. nginx实现多语言跳转不同的url

    nginx实现多语言跳转不同的url server { listen 80; server_name www.text.com; location / { if ($http_accept_langu ...

  10. iphone手机拍照学习笔记

    大纲: 功能 理论 技巧 实战 一.功能 设置-相机可以打开网格. 短按屏幕.画面曝光切换. 长按调节曝光和聚焦,曝光有范围,取决于点选的地方. live photo可以拍出会动的照片,上划编辑,高速 ...