博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Centos 6.5下mysql 8.0.11的rpm包的安装方式
阅读量:4975 次
发布时间:2019-06-12

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

1.系统版本及mysql下载地址

操作系统:Centos 6.5(Centos 7.4下载对应的mysql版本安装同理)

mysql数据库版本:mysql8.0.11

mysql官方网站:

2.安装新版mysql之前,我们需要将系统自带的mariadb-lib卸载

  1. [bigdata@eric011 software-package]$ rpm -qa | grep mariadb
  2. mariadb-libs-5.5.56-2.el7.x86_64
  3. [bigdata@eric011 software-package]$ sudo rpm -e mariadb-libs-5.5.56-2.el7.x86_64 --nodeps
  4. [bigdata@eric011 software-package]$ rpm -qa | grep mysql
  5. mysql-community-common-8.0.11-1.el6.x86_64.rpm
  6. [bigdata@eric011 software-package]$ sudo rpm -e mysql-community-common-8.0.11-1.el6.x86_64.rpm

 

查看系统中是否已安装 MySQL 服务,以下提供两种方式:

 

rpm -qa | grep mysqlyum list installed | grep mysql

 

 

有的话,我们就通过 rpm -e 命令 或者 rpm -e --nodeps 命令来卸载掉

 

[root@xiaoluo ~]# rpm -e mysql  // 普通删除模式[root@xiaoluo ~]# rpm -e --nodeps mysql  // 强力删除模式,如果使用上面命令删除时,提示有依赖的其它文件,则用该命令可以对其进行强力删除

 

3.到mysql的官网下载最新版mysql的rpm集合包并解压:

 

mysql-8.0.11-1.el6.x86_64.rpm-bundle.tar 选择对应的系统版本

 

 

shell> wget https://cdn.mysql.com//Downloads/MySQL-8.0/mysql-8.0.11-1.el6.x86_64.rpm-bundle.tar

  1. centOS 7: mysql-8.0.11-1.el7.x86_64.rpm-bundle.tar

  2. centOS 6:mysql-8.0.11-1.el6.x86_64.rpm-bundle.tar

 4..其中最简单的安装mysql-server服务,只需要安装如下4个软件包即可,我们可以使用rpm -ivh命令进行安装

  1. shell> sudo rpm -ivh mysql-community-common-8.0.11-1.el6.x86_64.rpm
  2. shell> sudo rpm -ivh mysql-community-libs-8.0.11-1.el6.x86_64.rpm --(依赖于common)
  3. shell> sudo rpm -ivh mysql-community-client-8.0.11-1.el6.x86_64.rpm --(依赖于libs)
  4. shell> sudo rpm -ivh mysql-community-server-8.0.11-1.el6.x86_64.rpm --(依赖于client、common)

 

       1)遇到错误

  

  处理方法:

  1.shell> sudo yum install perl

  2.shell> yum install numactl

5.初始化mysql数据库

  shell>  sudo mysqld --initialize //该命令会在/var/log/mysqld.log生成随机密码

6.修改mysql数据库目录的所属用户及其所属组,然后启动mysql数据库

  shell>  sudo chown mysql:mysql /var/lib/mysql -R

  shell>  systemctl start mysqld.service

7.根据第6步中的密码,更改root用户的密码,新版的mysql必须先修改root用户的密码,否则登录后是不能执行任何命令的

  shell> mysql_secure_installation //根据提示修改root用户密码

8.安装完成,接下来既可以正常操作mysql

    1. [bigdata@eric011
      lib]$ mysql -uroot -pxxxx
    2. mysql: [Warning]
      Using a password on the command line interface can be insecure.
    3. Welcome
      to the MySQL monitor. Commands end with ; or \g.
    4. Your MySQL connection id
      is 13
    5. Server version:
      8.0.11 MySQL Community Server - GPL
    6.   
    7. Copyright (c)
      2000, 2018, Oracle and/or its affiliates. All rights reserved.
    8.   
    9. Oracle
      is a registered trademark of Oracle Corporation and/or its
    10. affiliates. Other names may be trademarks
      of their respective
    11. owners.
    12.   
    13. Type
      'help;' or '\h' for help. Type '\c' to clear the current input statement.
    14.   
    15. mysql> show databases;
    16.  +--------------------+
    17.  | Database |
    18.  +--------------------+
    19.  | information_schema |
    20.  | mysql |
    21.  | performance_schema |
    22.  | sys |
    23.  +--------------------+
    24.  
      4 rows in set (0.01 sec)
    25.   
    26.  mysql>
      exit

  

 

转载于:https://www.cnblogs.com/Jesse8/p/9298984.html

你可能感兴趣的文章
cross socket和msgpack的数据序列和还原
查看>>
解决跨操作系统平台JSON中文乱码问题
查看>>
DELPHI搭建centos开发环境
查看>>
IdHTTPServer允许跨域访问
查看>>
更新.net core 3.0,dotnet ef命令无法使用的解决办法
查看>>
React躬行记(13)——React Router
查看>>
前端利器躬行记(1)——npm
查看>>
前端利器躬行记(2)——Babel
查看>>
前端利器躬行记(6)——Fiddler
查看>>
Forbidden You don't have permission to access / on this server.
查看>>
Intellij Idea新建web项目(转)
查看>>
用JAVA编写浏览器内核之实现javascript的document对象与内置方法
查看>>
centos iptables
查看>>
unity3d 移动与旋转 2
查看>>
寻找二叉查找树中比指定值小的所有节点中最大的那个节点
查看>>
如何设置输入框达到只读效果
查看>>
RT3070 USB WIFI 在连接socket编程过程中问题总结
查看>>
MIS外汇平台荣获“2013年全球最佳STP外汇交易商”
查看>>
LeetCode 题解之Add Digits
查看>>
hdu1502 , Regular Words, dp,高精度加法
查看>>