centos6.5 yum安装MySQL5.6
- 创建MySQL用户
- #useradd mysql
- #passwd mysql
- #chmod u+w /etc/sudoers
- #vi /etc/sudoers
- mysql ALL=(ALL) ALL
- 安装仓库
要使用yum 安装mysql,要使用mysql的yum仓库,先从官网下载适合你系统的仓库
http://dev.mysql.com/downloads/repo/yum/
然后安装一下这个仓库列表
wget http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpm
rpm -ivh mysql-community-release-el6-5.noarch.rpm
- 或:
- # yum install http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpm
- 选择版本
查看可安装的mysql版本
- [mysql@mysql- ~]$ yum repolist enabled | grep "mysql.*-community.*"
- mysql-connectors-community MySQL Connectors Community
- mysql-tools-community MySQL Tools Community
- mysql57-community MySQL 5.7 Community Server
如果我们要选择版本,可以先执行下面这个命令查看一下有哪些版本
- [mysql@mysql- ~]$ yum repolist all | grep mysql
选择版本,启用5.6版本的,禁用5.7版本子仓库
- [mysql@mysql- ~]$ sudo yum-config-manager --enable mysql56-community
- [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版本
- [mysql@mysql- ~]$ yum repolist enabled | grep "mysql.*-community.*"
- mysql-connectors-community MySQL Connectors Community
- mysql-tools-community MySQL Tools Community
- mysql56-community MySQL 5.6 Community Server
- 安装
- [mysql@mysql- ~]$ sudo yum install mysql-community-server
- 启动数据库
- [root@mysql- mysql]# service mysqld strat
- 用法:/etc/init.d/mysqld {start|stop|status|restart|condrestart|try-restart|reload|force-reload}
- [root@mysql- mysql]# service mysqld start
- 初始化 MySQL 数据库: -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
- -- :: [Note] /usr/sbin/mysqld (mysqld 5.6.) starting as process ...
- -- :: [Note] InnoDB: Using atomics to ref count buffer pool pages
- -- :: [Note] InnoDB: The InnoDB memory heap is disabled
- -- :: [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
- -- :: [Note] InnoDB: Memory barrier is not used
- -- :: [Note] InnoDB: Compressed tables use zlib 1.2.
- -- :: [Note] InnoDB: Using Linux native AIO
- -- :: [Note] InnoDB: Using CPU crc32 instructions
- -- :: [Note] InnoDB: Initializing buffer pool, size = 128.0M
- -- :: [Note] InnoDB: Completed initialization of buffer pool
- -- :: [Note] InnoDB: The first specified data file ./ibdata1 did not exist: a new database to be created!
- -- :: [Note] InnoDB: Setting file ./ibdata1 size to MB
- -- :: [Note] InnoDB: Database physically writes the file full: wait...
- -- :: [Note] InnoDB: Setting log file ./ib_logfile101 size to MB
- -- :: [Note] InnoDB: Setting log file ./ib_logfile1 size to MB
- -- :: [Note] InnoDB: Renaming log file ./ib_logfile101 to ./ib_logfile0
- -- :: [Warning] InnoDB: New log files created, LSN=
- -- :: [Note] InnoDB: Doublewrite buffer not found: creating new
- -- :: [Note] InnoDB: Doublewrite buffer created
- -- :: [Note] InnoDB: rollback segment(s) are active.
- -- :: [Warning] InnoDB: Creating foreign key constraint system tables.
- -- :: [Note] InnoDB: Foreign key constraint system tables created
- -- :: [Note] InnoDB: Creating tablespace and datafile system tables.
- -- :: [Note] InnoDB: Tablespace and datafile system tables created.
- -- :: [Note] InnoDB: Waiting for purge to start
- -- :: [Note] InnoDB: 5.6. started; log sequence number
- -- :: [Note] Binlog end
- -- :: [Note] InnoDB: FTS optimize thread exiting.
- -- :: [Note] InnoDB: Starting shutdown...
- -- :: [Note] InnoDB: Shutdown completed; log sequence number
- -- :: [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details).
- -- :: [Note] /usr/sbin/mysqld (mysqld 5.6.) starting as process ...
- -- :: [Note] InnoDB: Using atomics to ref count buffer pool pages
- -- :: [Note] InnoDB: The InnoDB memory heap is disabled
- -- :: [Note] InnoDB: Mutexes and rw_locks use GCC atomic builtins
- -- :: [Note] InnoDB: Memory barrier is not used
- -- :: [Note] InnoDB: Compressed tables use zlib 1.2.
- -- :: [Note] InnoDB: Using Linux native AIO
- -- :: [Note] InnoDB: Using CPU crc32 instructions
- -- :: [Note] InnoDB: Initializing buffer pool, size = 128.0M
- -- :: [Note] InnoDB: Completed initialization of buffer pool
- -- :: [Note] InnoDB: Highest supported file format is Barracuda.
- -- :: [Note] InnoDB: rollback segment(s) are active.
- -- :: [Note] InnoDB: Waiting for purge to start
- -- :: [Note] InnoDB: 5.6. started; log sequence number
- -- :: [Note] Binlog end
- -- :: [Note] InnoDB: FTS optimize thread exiting.
- -- :: [Note] InnoDB: Starting shutdown...
- -- :: [Note] InnoDB: Shutdown completed; log sequence number
- PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
- To do so, start the server, then issue the following commands:
- /usr/bin/mysqladmin -u root password 'new-password'
- /usr/bin/mysqladmin -u root -h mysql- password 'new-password'
- Alternatively you can run:
- /usr/bin/mysql_secure_installation
- which will also give you the option of removing the test
- databases and anonymous user created by default. This is
- strongly recommended for production servers.
- See the manual for more instructions.
- Please report any problems at http://bugs.mysql.com/
- The latest information about MySQL is available on the web at
- http://www.mysql.com
- Support MySQL by buying support/licenses at http://shop.mysql.com
- Note: new default config file not created.
- Please make sure your config file is current
- WARNING: Default config file /etc/my.cnf exists on the system
- This file will be read by default by the MySQL server
- If you do not want to use this, either remove it, or use the
- --defaults-file argument to mysqld_safe when starting the server
- [确定]
- 正在启动 mysqld: [确定]
- 安全配置
- [root@mysql- mysql]# /usr/bin/mysql_secure_installation
- NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MySQL
- SERVERS IN PRODUCTION USE! PLEASE READ EACH STEP CAREFULLY!
- In order to log into MySQL to secure it, we'll need the current
- password for the root user. If you've just installed MySQL, and
- you haven't set the root password yet, the password will be blank,
- so you should just press enter here.
- Enter current password for root (enter for none): ----输入root密码(默认为空):
- OK, successfully used password, moving on...
- Setting the root password ensures that nobody can log into the MySQL
- root user without the proper authorisation.
- Set root password? [Y/n] y ----是否要修改root密码:
- New password:
- Re-enter new password:
- Password updated successfully!
- Reloading privilege tables..
- ... Success!
- By default, a MySQL installation has an anonymous user, allowing anyone
- to log into MySQL without having to have a user account created for
- them. This is intended only for testing, and to make the installation
- go a bit smoother. You should remove them before moving into a
- production environment.
- Remove anonymous users? [Y/n] y
- ... Success!
- Normally, root should only be allowed to connect from 'localhost'. This
- ensures that someone cannot guess at the root password from the network.
- Disallow root login remotely? [Y/n] y
- ... Success!
- By default, MySQL comes with a database named 'test' that anyone can
- access. This is also intended only for testing, and should be removed
- before moving into a production environment.
- Remove test database and access to it? [Y/n] n
- ... skipping.
- Reloading the privilege tables will ensure that all changes made so far
- will take effect immediately.
- Reload privilege tables now? [Y/n] y
- ... Success!
- All done! If you've completed all of the above steps, your MySQL
- installation should now be secure.
- Thanks for using MySQL!
- Cleaning up...
- [root@mysql- mysql]#
- [root@mysql- mysql]# service mysqld status
- mysqld (pid ) 正在运行...
centos6.5 yum安装MySQL5.6的更多相关文章
- Centos6.8 yum安装MySQL5.6
第一步:安装仓库wget http://repo.mysql.com//mysql57-community-release-el6-8.noarch.rpmrpm -ivh mysql-communi ...
- centos6.x yum 安装 mysql5.6 mysql5.7
先卸载低版本MYSQL yum remove mysql* rpm -ivh http://repo.mysql.com/mysql-community-release-el6.rpm yum ins ...
- CentOS6.8 yum 安装 mysql5.7.12 完美步骤
一,wget http://dev.mysql.com/get/mysql57-community-release-el6-8.noarch.rpm 二,yum localinstall mysql5 ...
- CentOS6.8通过yum安装MySQL5.7
Centos6.8通过yum安装mysql5.7 1.安装mysql的yum源 a.下载配置mysql的yum源的rpm包 根据上面3张图片中的操作下载下来的rpm文件可以通过如下命令获取: wget ...
- Centos6.5使用yum安装Mysql5.7
想要玩新的东东就要付出代价,我的时间悄悄的都溜走了,说多了都是泪! 实践才是真理! 系统版本:Linux localhost.localdomain 2.6.32-431.el6.x86_64 #1 ...
- 在centos6.5中安装mysql5.7
简介 博主最近在研究mysql的读写分离和主从复制,一台master和两台slave,三台机器在同一个局域网中,首先就就要在centos6.5中安装mysql5.7.好了,废话不多说,接下来进入正题. ...
- centos6.7编译安装mysql5.7.17
centos6.7编译安装mysql5.7.17 2017-03-24 09:57:15 提示:mysql5.7.17和之前5.56以前的版本安装不一样,需要用cmake 另外,看本文档的mysql编 ...
- CentOS6.7上安装Mysql5.7
CentOS6.7上安装Mysql5.7 2017年07月22日 18:27:05 阅读数:564 环境的配置总是令人作呕,所以这次表明版本条件: 首先,这是一台新机器 其次,CentOS版本如下: ...
- CentOS6、7安装MySQL5.7全教程
CentOS6.7安装MySQL5.7全教程 做开发总得用到数据吧,Linux作为服务器,总得有一个数据库来存储测试用的数据,所以呢,这里附上CentOS6.7安装MySQL5.7的教程喔~ 用到的工 ...
随机推荐
- ES6中Generator
ES6中Generator Generator是ES6一个很有意思的特性,也是不容易理解的特性.不同于let/const提供了块级作用域这样明显的目的,这玩意儿被搞出来到底是干嘛的? 首先我们需要明确 ...
- angularjs自己总结
1.模块 自定的directive和controller需要在同一个model下,或者另外的model depModules他了. ng-app要等于model的名字,所有的directive要在下面 ...
- 大数据学习——yarn集群启动
启动yarn命令: start-yarn.sh 验证是否启动成功 jps查看进程 http://192.168.74.100:8088页面 关闭 stop-yarn.sh
- Dividing coins (01背包)
It’s commonly known that the Dutch have invented copper-wire. Two Dutch men were fighting over a nic ...
- Linux怎么读? Linux读音考古一日游
Linux怎么读? Linux读音考古一日游/*凡是准备踏入Linux大门的叉子们(N年不关注了,不知道这个称呼是否还有),都必须经历疑问 那就是linux到底怎么读? 也许有些人很容易 什么里纽克 ...
- Android应用的权限配置和权限列表
权限配置写在Mainifest.xml文件中: <?xml version="1.0" encoding="utf-8"?> <manifes ...
- BZOJ4580: [Usaco2016 Open]248
n<=248个数字,可以进行这样的操作:将相邻两个相同的数字合并成这个数字+1,求最大能合成多少. f(i,j)--区间i到j能合成的最大值,f(i,j)=max(f(i,k)+1),f(i,k ...
- Wannafly模拟赛2 C alliances(dfs序+二分)
题目 https://www.nowcoder.com/acm/contest/4/C 题意 由n个点组成一个树,有m个帮派,每个帮派由一些个点组成,这些点以及它们两两路径上的所有点都属于该帮派的管辖 ...
- SpringMvc架构流程
- 转:TLV 格式及编解码示例
TLV是一种可变格式,意思就是: Type类型, Lenght长度,Value值: Type和Length的长度固定,一般那是2.4个字节(这里统一采用4个字节): Value的长度有Length指定 ...