• 创建MySQL用户
  1. #useradd mysql
  2. #passwd mysql
  3. #chmod u+w /etc/sudoers
  4. #vi /etc/sudoers
  5. mysql ALL=(ALL) ALL
  • 安装仓库

要使用yum 安装mysql,要使用mysql的yum仓库,先从官网下载适合你系统的仓库
http://dev.mysql.com/downloads/repo/yum/
然后安装一下这个仓库列表

  1.  

wget http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpm
rpm -ivh mysql-community-release-el6-5.noarch.rpm

  1. 或:
  2. # yum install http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpm
  • 选择版本

查看可安装的mysql版本

  1. [mysql@mysql- ~]$ yum repolist enabled | grep "mysql.*-community.*"
  2. mysql-connectors-community MySQL Connectors Community
  3. mysql-tools-community MySQL Tools Community
  4. mysql57-community MySQL 5.7 Community Server

如果我们要选择版本,可以先执行下面这个命令查看一下有哪些版本

  1. [mysql@mysql- ~]$ yum repolist all | grep mysql

选择版本,启用5.6版本的,禁用5.7版本子仓库

  1. [mysql@mysql- ~]$ sudo yum-config-manager --enable mysql56-community
  2. [mysql@mysql- ~]$ sudo yum-config-manager --disable mysql57-community

或者
编辑/etc/yum.repos.d/mysql-community.repo文件
enabled=0 表示禁用
比如要安装5.7版本的mysql,要确定5.6的enabled=0,5.7的enabled=1,一次保证只启用一个子仓库

查看可安装的mysql版本

  1. [mysql@mysql- ~]$ yum repolist enabled | grep "mysql.*-community.*"
  2. mysql-connectors-community MySQL Connectors Community
  3. mysql-tools-community MySQL Tools Community
  4. mysql56-community MySQL 5.6 Community Server
  • 安装
  1. [mysql@mysql- ~]$ sudo yum install mysql-community-server
  • 启动数据库
  1. [root@mysql- mysql]# service mysqld strat
  2. 用法:/etc/init.d/mysqld {start|stop|status|restart|condrestart|try-restart|reload|force-reload}
  3. [root@mysql- mysql]# service mysqld start
  4. 初始化 MySQL 数据库: -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  5. -- :: [Note] /usr/sbin/mysqld (mysqld 5.6.) starting as process ...
  6. -- :: [Note] InnoDB: Using atomics to ref count buffer pool pages
  7. -- :: [Note] InnoDB: The InnoDB memory heap is disabled
  8. -- :: [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
  9. -- :: [Note] InnoDB: Memory barrier is not used
  10. -- :: [Note] InnoDB: Compressed tables use zlib 1.2.
  11. -- :: [Note] InnoDB: Using Linux native AIO
  12. -- :: [Note] InnoDB: Using CPU crc32 instructions
  13. -- :: [Note] InnoDB: Initializing buffer pool, size = 128.0M
  14. -- :: [Note] InnoDB: Completed initialization of buffer pool
  15. -- :: [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
  16. -- :: [Note] InnoDB: Setting file ./ibdata1 size to MB
  17. -- :: [Note] InnoDB: Database physically writes the file full: wait...
  18. -- :: [Note] InnoDB: Setting log file ./ib_logfile101 size to MB
  19. -- :: [Note] InnoDB: Setting log file ./ib_logfile1 size to MB
  20. -- :: [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
  21. -- :: [Warning] InnoDB: New log files created, LSN=
  22. -- :: [Note] InnoDB: Doublewrite buffer not found: creating new
  23. -- :: [Note] InnoDB: Doublewrite buffer created
  24. -- :: [Note] InnoDB: rollback segment(s) are active.
  25. -- :: [Warning] InnoDB: Creating foreign key constraint system tables.
  26. -- :: [Note] InnoDB: Foreign key constraint system tables created
  27. -- :: [Note] InnoDB: Creating tablespace and datafile system tables.
  28. -- :: [Note] InnoDB: Tablespace and datafile system tables created.
  29. -- :: [Note] InnoDB: Waiting for purge to start
  30. -- :: [Note] InnoDB: 5.6. started; log sequence number
  31. -- :: [Note] Binlog end
  32. -- :: [Note] InnoDB: FTS optimize thread exiting.
  33. -- :: [Note] InnoDB: Starting shutdown...
  34. -- :: [Note] InnoDB: Shutdown completed; log sequence number
  35.  
  36. -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
  37. -- :: [Note] /usr/sbin/mysqld (mysqld 5.6.) starting as process ...
  38. -- :: [Note] InnoDB: Using atomics to ref count buffer pool pages
  39. -- :: [Note] InnoDB: The InnoDB memory heap is disabled
  40. -- :: [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
  41. -- :: [Note] InnoDB: Memory barrier is not used
  42. -- :: [Note] InnoDB: Compressed tables use zlib 1.2.
  43. -- :: [Note] InnoDB: Using Linux native AIO
  44. -- :: [Note] InnoDB: Using CPU crc32 instructions
  45. -- :: [Note] InnoDB: Initializing buffer pool, size = 128.0M
  46. -- :: [Note] InnoDB: Completed initialization of buffer pool
  47. -- :: [Note] InnoDB: Highest supported file format is Barracuda.
  48. -- :: [Note] InnoDB: rollback segment(s) are active.
  49. -- :: [Note] InnoDB: Waiting for purge to start
  50. -- :: [Note] InnoDB: 5.6. started; log sequence number
  51. -- :: [Note] Binlog end
  52. -- :: [Note] InnoDB: FTS optimize thread exiting.
  53. -- :: [Note] InnoDB: Starting shutdown...
  54. -- :: [Note] InnoDB: Shutdown completed; log sequence number
  55.  
  56. PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
  57. To do so, start the server, then issue the following commands:
  58.  
  59. /usr/bin/mysqladmin -u root password 'new-password'
  60. /usr/bin/mysqladmin -u root -h mysql- password 'new-password'
  61.  
  62. Alternatively you can run:
  63.  
  64. /usr/bin/mysql_secure_installation
  65.  
  66. which will also give you the option of removing the test
  67. databases and anonymous user created by default. This is
  68. strongly recommended for production servers.
  69.  
  70. See the manual for more instructions.
  71.  
  72. Please report any problems at http://bugs.mysql.com/
  73.  
  74. The latest information about MySQL is available on the web at
  75.  
  76. http://www.mysql.com
  77.  
  78. Support MySQL by buying support/licenses at http://shop.mysql.com
  79.  
  80. Note: new default config file not created.
  81. Please make sure your config file is current
  82.  
  83. WARNING: Default config file /etc/my.cnf exists on the system
  84. This file will be read by default by the MySQL server
  85. If you do not want to use this, either remove it, or use the
  86. --defaults-file argument to mysqld_safe when starting the server
  87.  
  88. [确定]
  89. 正在启动 mysqld [确定]
  • 安全配置
  1. [root@mysql- mysql]# /usr/bin/mysql_secure_installation
  2.  
  3. NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
  4. SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
  5.  
  6. In order to log into MySQL to secure it, we'll need the current
  7. password for the root user. If you've just installed MySQL, and
  8. you haven't set the root password yet, the password will be blank,
  9. so you should just press enter here.
  10.  
  11. Enter current password for root (enter for none): ----输入root密码(默认为空):
  12. OK, successfully used password, moving on...
  13.  
  14. Setting the root password ensures that nobody can log into the MySQL
  15. root user without the proper authorisation.
  16.  
  17. Set root password? [Y/n] y ----是否要修改root密码:
  18. New password:
  19. Re-enter new password:
  20. Password updated successfully!
  21. Reloading privilege tables..
  22. ... Success!
  23.  
  24. By default, a MySQL installation has an anonymous user, allowing anyone
  25. to log into MySQL without having to have a user account created for
  26. them. This is intended only for testing, and to make the installation
  27. go a bit smoother. You should remove them before moving into a
  28. production environment.
  29.  
  30. Remove anonymous users? [Y/n] y
  31. ... Success!
  32.  
  33. Normally, root should only be allowed to connect from 'localhost'. This
  34. ensures that someone cannot guess at the root password from the network.
  35.  
  36. Disallow root login remotely? [Y/n] y
  37. ... Success!
  38.  
  39. By default, MySQL comes with a database named 'test' that anyone can
  40. access. This is also intended only for testing, and should be removed
  41. before moving into a production environment.
  42.  
  43. Remove test database and access to it? [Y/n] n
  44. ... skipping.
  45.  
  46. Reloading the privilege tables will ensure that all changes made so far
  47. will take effect immediately.
  48.  
  49. Reload privilege tables now? [Y/n] y
  50. ... Success!
  51.  
  52. All done! If you've completed all of the above steps, your MySQL
  53. installation should now be secure.
  54.  
  55. Thanks for using MySQL!
  56.  
  57. Cleaning up...
  58. [root@mysql- mysql]#
  1. [root@mysql- mysql]# service mysqld status
  2. mysqld (pid ) 正在运行...

centos6.5 yum安装MySQL5.6的更多相关文章

  1. Centos6.8 yum安装MySQL5.6

    第一步:安装仓库wget http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpmrpm -ivh mysql-communi ...

  2. centos6.x yum 安装 mysql5.6 mysql5.7

    先卸载低版本MYSQL yum remove mysql* rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpm yum ins ...

  3. CentOS6.8 yum 安装 mysql5.7.12 完美步骤

    一,wget http://dev.mysql.com/get/mysql57-community-release-el6-8.noarch.rpm 二,yum localinstall mysql5 ...

  4. CentOS6.8通过yum安装MySQL5.7

    Centos6.8通过yum安装mysql5.7 1.安装mysql的yum源 a.下载配置mysql的yum源的rpm包 根据上面3张图片中的操作下载下来的rpm文件可以通过如下命令获取: wget ...

  5. Centos6.5使用yum安装Mysql5.7

    想要玩新的东东就要付出代价,我的时间悄悄的都溜走了,说多了都是泪! 实践才是真理! 系统版本:Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 ...

  6. 在centos6.5中安装mysql5.7

    简介 博主最近在研究mysql的读写分离和主从复制,一台master和两台slave,三台机器在同一个局域网中,首先就就要在centos6.5中安装mysql5.7.好了,废话不多说,接下来进入正题. ...

  7. centos6.7编译安装mysql5.7.17

    centos6.7编译安装mysql5.7.17 2017-03-24 09:57:15 提示:mysql5.7.17和之前5.56以前的版本安装不一样,需要用cmake 另外,看本文档的mysql编 ...

  8. CentOS6.7上安装Mysql5.7

    CentOS6.7上安装Mysql5.7 2017年07月22日 18:27:05 阅读数:564 环境的配置总是令人作呕,所以这次表明版本条件: 首先,这是一台新机器 其次,CentOS版本如下: ...

  9. CentOS6、7安装MySQL5.7全教程

    CentOS6.7安装MySQL5.7全教程 做开发总得用到数据吧,Linux作为服务器,总得有一个数据库来存储测试用的数据,所以呢,这里附上CentOS6.7安装MySQL5.7的教程喔~ 用到的工 ...

随机推荐

  1. ES6中Generator

    ES6中Generator Generator是ES6一个很有意思的特性,也是不容易理解的特性.不同于let/const提供了块级作用域这样明显的目的,这玩意儿被搞出来到底是干嘛的? 首先我们需要明确 ...

  2. angularjs自己总结

    1.模块 自定的directive和controller需要在同一个model下,或者另外的model depModules他了. ng-app要等于model的名字,所有的directive要在下面 ...

  3. 大数据学习——yarn集群启动

    启动yarn命令: start-yarn.sh 验证是否启动成功 jps查看进程 http://192.168.74.100:8088页面 关闭 stop-yarn.sh

  4. Dividing coins (01背包)

    It’s commonly known that the Dutch have invented copper-wire. Two Dutch men were fighting over a nic ...

  5. Linux怎么读? Linux读音考古一日游

    Linux怎么读?  Linux读音考古一日游/*凡是准备踏入Linux大门的叉子们(N年不关注了,不知道这个称呼是否还有),都必须经历疑问 那就是linux到底怎么读? 也许有些人很容易 什么里纽克 ...

  6. Android应用的权限配置和权限列表

    权限配置写在Mainifest.xml文件中: <?xml version="1.0" encoding="utf-8"?> <manifes ...

  7. BZOJ4580: [Usaco2016 Open]248

    n<=248个数字,可以进行这样的操作:将相邻两个相同的数字合并成这个数字+1,求最大能合成多少. f(i,j)--区间i到j能合成的最大值,f(i,j)=max(f(i,k)+1),f(i,k ...

  8. Wannafly模拟赛2 C alliances(dfs序+二分)

    题目 https://www.nowcoder.com/acm/contest/4/C 题意 由n个点组成一个树,有m个帮派,每个帮派由一些个点组成,这些点以及它们两两路径上的所有点都属于该帮派的管辖 ...

  9. SpringMvc架构流程

  10. 转:TLV 格式及编解码示例

    TLV是一种可变格式,意思就是: Type类型, Lenght长度,Value值: Type和Length的长度固定,一般那是2.4个字节(这里统一采用4个字节): Value的长度有Length指定 ...