博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
centos6.5安装MySQL5.7(使用yum源安装方法)
阅读量:6261 次
发布时间:2019-06-22

本文共 1803 字,大约阅读时间需要 6 分钟。

  1. 检测系统是否已安装 mysql
    [root@localhost ~]# yum list installed | grep mysql
  2. 删除系统已安装的 mysql 及其依赖
    [root@localhost ~]# yum -y remove mysql-libs.i686
  3. 给CentOS添加rpm源
    wget
    4.安装yum源
    [root@localhost ~]# yum install mysql-community-release-el6-5.noarch.rpm
    [root@localhost ~]# yum repolist all | grep mysql
    [root@localhost ~]# yum repolist all | grep mysql
    [root@localhost ~]# yum-config-manager --disable mysql55-community
    [root@localhost ~]# yum-config-manager --disable mysql56-community
    [root@localhost ~]# yum-config-manager --enable mysql57-community-dmr
  4. 安装 MySQL 服务端
    [root@localhost ~]#yum install mysql-community-server
    Dependency Installed:
    mysql-community-client.x86_64 0:5.7.22-1.el6
    mysql-community-common.x86_64 0:5.7.22-1.el6
    mysql-community-libs.x86_64 0:5.7.22-1.el6

Complete!

看到以上结束语句,表示安装成功

  1. 启动 mysql 服务
    [root@localhost ~]# service mysqld start
    查看启动是否成功:
    [root@localhost ~]# service mysqld status
    mysqld (pid 10698) 正在运行...
  2. 修改 root 初始密码
    我这里用的是安全模式下进入设置密码
    [root@localhost ~]#service mysqld stop
    [root@localhost ~]#mysqld_safe –skip-grant-tables &
    重新开一个终端输入一下命令,然后直接敲enterj键:
    [root@localhost ~]#mysql -uroot -p
    进入之后,敲use mysql,用mysql数据库;
    修改root用户密码
    mysql> update user set authentication_string=password(123456) where user='root';
    注:mysql5.7的密码字段是authentication_string,不是password
    刷新权限并退出
    mysql> >flush privileges;
    mysql> >quit
    重启mysql,用密码123456即可登录mysql
    [root@localhost ~]# service mysqld restart
    [root@localhost ~]# mysql -u root -p
    Oracle is a registered trademark of Oracle Corporation and/or its
    affiliates. Other names may be trademarks of their respective
    owners.

Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.

mysql>

出现以上内容,登录成功

  1. 设置mysql开机启动
    [root@localhost ~]# chkconfig mysqld on
    [root@localhost ~]# chkconfig mysqld status

转载于:https://blog.51cto.com/10169618/2143042

你可能感兴趣的文章
ES6笔记(7)-- Promise异步编程
查看>>
早睡早起
查看>>
C#软件监控外部程序运行状态
查看>>
几款开源的图形化Redis客户端管理软件推荐
查看>>
数据库设计中常见表结构的设计技巧
查看>>
CVPR论文《100+ Times Faster Weighted Median Filter (WMF)》的实现和解析(附源代码)。...
查看>>
MATLAB模糊逻辑(2)
查看>>
linux 内核模块管理
查看>>
【每日一摩斯】-【序列】-续-RAC and Sequences (853652.1)
查看>>
把一个select查询结果插入到一个表(可选指定字段和值实例)
查看>>
使用windbg抓取崩溃文件和分析的过程
查看>>
ViewHolder模式超简洁写法
查看>>
项目管理学习笔记之三.绩效分析
查看>>
php十行代码将xml转成数组
查看>>
centos 7 执行 groupinstall报错
查看>>
Web开发入门
查看>>
Flex开发小结(1)如何使用AdvancedDataGrid
查看>>
AFNetworking 下载文件断点续传操作
查看>>
Jar mismatch! Fix your dependencies
查看>>
哀悼日, 网页变灰的实现
查看>>