mysql 指定根目录 迁移根目录

mysql 指定根目录 迁移根目录

  • 1、问题描述
  • 2、问题分析
  • 3、解决方法
    • 3.1、初始化mysql前就手动指定mysql根目录为一个大的分区(支持动态扩容),事前就根本上解决mysql根目录空间不够问题
      • 3.1.0、方法思路
      • 3.1.1、卸载mariadb
      • 3.1.2、下载Mysql安装包
      • 3.1.3、安装Mysql 8.35
      • 3.1.4、初始化(启动)mysql 8.0.35
      • 3.1.5、安装后配置
    • 3.2、发现mysql根目录爆满了,改变mysql根目录为一个大的分区(支持动态扩容),事后解决根目录空间不够问题(需要迁移之前的根目录数据到新的根目录)
      • 3.2.1、正常安装mysql后 mysql根目录是/var/lib/mysql
        • 3.2.1.1、卸载mariadb
        • 3.2.1.2、下载Mysql安装包
        • 3.2.1.3、安装Mysql 8.35
        • 3.2.1.4、启动mysql 8.0.35
        • 3.2.1.5、安装后配置
      • 3.2.2、默认根目录安装mysql后,创建mysql数据表一段时间后发现mysql根目录空间不够、需要迁移根目录
        • 3.2.2.1、创建mysql数据
      • 3.2.3、配置新的mysql根目录、迁移mysql根目录数据到新的根目录
      • 3.2.4、重要!迁移mysql根目录后 确认mysql服务正常
        • 3.2.4.1、迁移mysql根目录后,检查mysql启动日志是否正常
        • 3.2.4.2、执行mysql服务检测,确认mysql服务的接口调用是否正常
        • 3.2.4.3、创建新的数据库,确认迁移mysql根目录后 新的mysql根目录下是否会出现和这个数据库同名的文件夹

1、问题描述

本博文以银河麒麟高级服务器操作系统v10 sp3为系统平台,安装mysql 8.0.35。

安装完mysql后,默认启动mysql后,默认的mysql根目录是/var/lib/mysql
查看mysql配置文件/etc/my.cnf 查看mysql根目录

cat /etc/my.cnf

其中 datadir=/var/lib/mysql 就是MySQL根目录,mysql所有的数据库文件都放在根目录下

在这里插入图片描述

在有些服务器上,/ 根目录空间非常小而且不能动态扩容,不能承载太多的mysql数据,随着mysql的运行,默认的mysql根目录是/var/lib/mysql 占用空间越来越大,导致/ 目录爆满,系统崩溃。(为什么不扩充根目录呢?因为在有些服务器上根目录不是LVM分区、不能动态扩容)

不修改默认的mysql配置文件,初始化mysql后,mysql根目录如下,查看mysql根目录的组织结构

ls -l /var/lib/mysql

整个根目录大小是90M(含有mysql默认的系统数据库:mysql、sys、performance_schema、information_schema,和其他的一些文件:比如密钥文件、mysql sock文件、mysql binlog文件等)

在这里插入图片描述

mysql默认的系统数据库:mysql、sys、performance_schema、information_schema

在这里插入图片描述

2、问题分析

有2个思路解决mysql根目录空间爆满的问题

1、整体规划,防患于未然
在mysql初始化前,通过修改mysql的配置文件/etc/my.cnf指定一个很大或者可以动态扩容的文件目录作为mysql根目录。
2、后知后觉,整体规划没做好,事后处理
如果在生产环境上,初始化mysql前没有手动指定mysql根目录,造成默认的mysql根目录就是/var/lib/mysql,并且环境已经运行一段时间发现mysql根目录空间不够了,这种情况下仍然可以通过修改mysql的配置文件/etc/my.cnf指定一个很大或者可以动态扩容的文件目录作为mysql根目录,只不过要把之前mysql根目录/var/lib/mysql 下的数据迁移到新的mysql根目录即可。

3、解决方法

3.1、初始化mysql前就手动指定mysql根目录为一个大的分区(支持动态扩容),事前就根本上解决mysql根目录空间不够问题

3.1.0、方法思路

在mysql启动前,先在mysql配置文件/etc/my.cnf中指定mysql根目录,这个根目录的空间要保证非常大,或者这个根目录是能够动态扩容的,比如LVM分区。

linux上mysql配置文件是/etc/my.cnf或者/etc/mysql/mysql.cnf [redhat系是/etc/my.cnf,debian系是/etc/mysql/mysql.cnf]。
windows上mysql配置文件是C:\my.ini。

本文以linux系统为例描述配置mysql根目录方法
参考链接: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/data-directory-initialization.html

在mysql初始化之前就修改默认mysql配置文件的内容以满足您的要求,然后再初始化mysql。

在这里插入图片描述

在linux系统上安装完成mysql后,先不要初始化mysql。

先编辑mysql配置文件/etc/my.cnf

cp /etc/my.cnf /etc/my.cnf.bak
vi /etc/my.cnf

修改datadir和socket参数
修改前

在这里插入图片描述

修改后

在这里插入图片描述

然后初始化mysql

systemctl start mysqld.service

安装过程如下

3.1.1、卸载mariadb

由于银河麒麟v10系统默认安装了mariadb 会与Mysql相冲突,因此首先需要卸载系统自带的mariadb
查看系统上默认安装的Mariadb软件包
使用yum查看已经安装的mariadb软件包

yum list --installed mariadb*

在这里插入图片描述

rpm -qa|grep -i mariadb*

在这里插入图片描述

查看默认的mariadb配置文件

在这里插入代码片

默认的配置文件是 /etc/my.cnf

在这里插入图片描述

查看默认的mariadb配置目录

find / -type d  -name my.cnf*

在这里插入图片描述

使用yum卸载 mariadb

yum remove mariadb.x86_64 mariadb-common.x86_64 mariadb-connector-c.x86_64 mariadb-errmessage.x86_64 mariadb-server.x86_64

卸载记录

[root@localhost ~]# yum remove mariadb.x86_64 mariadb-common.x86_64 mariadb-connector-c.x86_64 mariadb-errmessage.x86_64 mariadb-server.x86_64
Dependencies resolved.
======================================================================================================================================================================================Package                                               Architecture                     Version                                             Repository                           Size
======================================================================================================================================================================================
Removing:mariadb                                               x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                            37 Mmariadb-common                                        x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                           179 kmariadb-connector-c                                   x86_64                           3.0.6-8.ky10                                        @anaconda                           413 kmariadb-errmessage                                    x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                           2.3 Mmariadb-server                                        x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                            91 M
Removing dependent packages:fcitx-chewing                                         x86_64                           0.2.3-8.ky10                                        @anaconda                            65 kfcitx-configtool                                      x86_64                           0.4.10-6.p01.ky10                                   @anaconda                           239 kfcitx-pinyin                                          x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           7.1 Mfcitx-qt5-devel                                       x86_64                           1.2.4-3.1.ky10                                      @anaconda                            57 kipmitool                                              x86_64                           1.8.18-15.ky10                                      @anaconda                           1.4 Mkylin-activation                                      x86_64                           1.3.10-5.p27.ky10                                   @anaconda                           553 kpython2-mysqlclient                                   x86_64                           1.3.12-8.ky10                                       @anaconda                           349 krsyslog-relp                                          x86_64                           8.2006.0-7.p01.ky10                                 @anaconda                            62 ksecurity-tool                                         x86_64                           2.0-1.75.p01.ky10                                   @anaconda                            45 k
Removing unused dependencies:assimp                                                x86_64                           3.3.1-19.ky10                                       @anaconda                           7.1 Mfcitx                                                 x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           1.0 Mfcitx-data                                            noarch                           4.2.9.1-2.p03.ky10                                  @anaconda                           5.3 Mfcitx-gtk2                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                            34 kfcitx-gtk3                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                            34 kfcitx-libs                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           1.6 Mfcitx-qt5                                             x86_64                           1.2.4-3.1.ky10                                      @anaconda                           626 kfirebird                                              x86_64                           3.0.3.32900-9.p02.ky10                              @anaconda                            18 Mfreetds                                               x86_64                           1.00.38-8.ky10                                      @anaconda                           2.6 Mgsm                                                   x86_64                           1.0.18-4.ky10                                       @anaconda                            95 kgstreamer1-plugins-bad-free                           x86_64                           1.16.2-2.ky10                                       @anaconda                           5.7 Mipmitool-help                                         noarch                           1.8.18-15.ky10                                      @anaconda                            92 kirrlicht                                              x86_64                           1.8.4-11.ky10                                       @anaconda                           5.3 Mkf5-filesystem                                        x86_64                           5.59.0-1.1.ky10                                     @anaconda                             0  kf5-kwindowsystem                                     x86_64                           5.55.0-1.p01.ky10                                   @anaconda                           488 klibaesgm                                              x86_64                           20090429-21.ky10                                    @anaconda                           118 klibchewing                                            x86_64                           0.5.1-17.ky10                                       @anaconda                           3.7 Mlibestr                                               x86_64                           0.1.11-1.ky10                                       @anaconda                            43 klibfastjson                                           x86_64                           0.99.9-1.ky10                                       @anaconda                            72 klibmng                                                x86_64                           2.0.3-10.ky10                                       @anaconda                           633 klibnet                                                x86_64                           1.2-1.ky10                                          @anaconda                            98 klibnice                                               x86_64                           0.1.14-10.ky10                                      @anaconda                           455 klibrelp                                               x86_64                           1.2.16-3.ky10                                       @anaconda                           157 klibtommath                                            x86_64                           1.0.1-5.ky10                                        @anaconda                            76 kminizip                                               x86_64                           1.2.11-18.ky10                                      @anaconda                            49 knet-snmp                                              x86_64                           1:5.9-4.p01.ky10                                    @anaconda                           4.8 Mnet-snmp-help                                         noarch                           1:5.9-4.p01.ky10                                    @anaconda                           904 kperl-DBD-MySQL                                        x86_64                           4.046-6.ky10                                        @anaconda                           333 kpoly2tri                                              x86_64                           0.0-19.ky10                                         @anaconda                            54 kpostgresql-libs                                       x86_64                           10.5-22.ky10                                        @anaconda                           897 kqt                                                    x86_64                           1:4.8.7-47.p04.ky10                                 @anaconda                           351 Mqt5                                                   noarch                           5.14.2-1.ky10                                       @anaconda                            19  qt5-qdbusviewer                                       x86_64                           5.11.1-5.p03.ky10                                   @anaconda                           137 kqt5-qt3d                                              x86_64                           5.11.1-4.ky10                                       @anaconda                           7.3 Mqt5-qtbase-mysql                                      x86_64                           5.11.1-13.p01.ky10                                  @anaconda                            79 kqt5-qtbase-postgresql                                 x86_64                           5.11.1-13.p01.ky10                                  @anaconda                            87 kqt5-qtconnectivity                                    x86_64                           5.11.1-4.ky10                                       @anaconda                           1.6 Mqt5-qtdoc                                             noarch                           5.11.1-4.ky10                                       @anaconda                           8.0 Mqt5-qtgraphicaleffects                                x86_64                           5.11.1-5.p01.ky10                                   @anaconda                           645 kqt5-qtimageformats                                    x86_64                           5.11.1-6.p01.ky10                                   @anaconda                           374 kqt5-qtlocation                                        x86_64                           5.11.1-6.ky10                                       @anaconda                            10 Mqt5-qtmultimedia                                      x86_64                           5.11.1-6.ky10                                       @anaconda                           2.8 Mqt5-qtquickcontrols                                   x86_64                           5.11.1-5.ky10                                       @anaconda                           4.7 Mqt5-qtquickcontrols2                                  x86_64                           5.11.1-4.ky10                                       @anaconda                           6.8 Mqt5-qtscript                                          x86_64                           5.11.1-5.ky10                                       @anaconda                           3.3 Mqt5-qtsensors                                         x86_64                           5.11.1-6.ky10                                       @anaconda                           1.7 Mqt5-qtserialport                                      x86_64                           5.11.1-5.p01.ky10                                   @anaconda                           216 kqt5-qtwayland                                         x86_64                           5.11.1-6.ky10                                       @anaconda                           3.3 Mqt5-qtwebchannel                                      x86_64                           5.11.1-5.ky10                                       @anaconda                           261 kqt5-qtwebsockets                                      x86_64                           5.11.1-6.ky10                                       @anaconda                           274 krsyslog                                               x86_64                           8.2006.0-7.p01.ky10                                 @anaconda                           2.6 MunixODBC                                              x86_64                           2.3.7-3.ky10                                        @anaconda                           1.3 MTransaction Summary
======================================================================================================================================================================================
Remove  66 PackagesFreed space: 609 M
Is this ok [y/N]: y
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing        :                                                                                                                                                              1/1 Running scriptlet: fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                    1/1 Erasing          : fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                   1/66 Erasing          : mariadb-3:10.3.9-12.p01.ky10.x86_64                                                                                                                         2/66 Running scriptlet: mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Erasing          : mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Running scriptlet: mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Erasing          : fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                                                                                                                      4/66 Erasing          : fcitx-chewing-0.2.3-8.ky10.x86_64                                                                                                                           5/66 Erasing          : mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64                                                                                                              6/66 Running scriptlet: security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 Erasing          : security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 
warning: /etc/kylin_security/security saved as /etc/kylin_security/security.rpmsaveRunning scriptlet: security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 Erasing          : fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                                                                                                                       8/66 Erasing          : fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             9/66 Running scriptlet: fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             9/66 Erasing          : fcitx-qt5-1.2.4-3.1.ky10.x86_64                                                                                                                            10/66 Erasing          : fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       11/66 Running scriptlet: fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       11/66 
/var/tmp/rpm-tmp.yjxvOw: line 1: /usr/bin/update-gtk-immodules: No such file or directoryErasing          : fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       12/66 Running scriptlet: fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       12/66 Erasing          : fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       13/66 Running scriptlet: fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       13/66 Erasing          : qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              14/66 Running scriptlet: qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              14/66 Erasing          : freetds-1.00.38-8.ky10.x86_64                                                                                                                              15/66 Running scriptlet: freetds-1.00.38-8.ky10.x86_64                                                                                                                              15/66 Erasing          : perl-DBD-MySQL-4.046-6.ky10.x86_64                                                                                                                         16/66 Erasing          : rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                                                                                                                    17/66 Running scriptlet: rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 
Removed /etc/systemd/system/multi-user.target.wants/rsyslog.service.Erasing          : rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 Running scriptlet: rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 Erasing          : python2-mysqlclient-1.3.12-8.ky10.x86_64                                                                                                                   19/66 Erasing          : kylin-activation-1.3.10-5.p27.ky10.x86_64                                                                                                                  20/66 Erasing          : qt5-5.14.2-1.ky10.noarch                                                                                                                                   21/66 Erasing          : qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              22/66 Running scriptlet: qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              22/66 Erasing          : assimp-3.3.1-19.ky10.x86_64                                                                                                                                23/66 Running scriptlet: assimp-3.3.1-19.ky10.x86_64                                                                                                                                23/66 Erasing          : qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64                                                                                                                 24/66 Running scriptlet: ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Erasing          : ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Running scriptlet: ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Erasing          : ipmitool-help-1.8.18-15.ky10.noarch                                                                                                                        26/66 Erasing          : qt5-qtdoc-5.11.1-4.ky10.noarch                                                                                                                             27/66 Erasing          : fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                       28/66 Running scriptlet: fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                       28/66 Erasing          : mariadb-common-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 29/66 Running scriptlet: net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Erasing          : net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Running scriptlet: net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Erasing          : irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              31/66 Running scriptlet: irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              31/66 Erasing          : qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                                                                                                                32/66 Erasing          : qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64                                                                                                            33/66 Erasing          : qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      34/66 Running scriptlet: qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      34/66 Erasing          : gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           35/66 Running scriptlet: gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           35/66 Erasing          : qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  36/66 Running scriptlet: qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  36/66 Erasing          : kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64                                                                                                                 37/66 Running scriptlet: firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Erasing          : firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Running scriptlet: firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Erasing          : kf5-filesystem-5.59.0-1.1.ky10.x86_64                                                                                                                      39/66 Erasing          : net-snmp-help-1:5.9-4.p01.ky10.noarch                                                                                                                      40/66 Erasing          : libtommath-1.0.1-5.ky10.x86_64                                                                                                                             41/66 Erasing          : qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64                                                                                                            42/66 Erasing          : gsm-1.0.18-4.ky10.x86_64                                                                                                                                   43/66 Erasing          : libnice-0.1.14-10.ky10.x86_64                                                                                                                              44/66 Running scriptlet: libnice-0.1.14-10.ky10.x86_64                                                                                                                              44/66 Erasing          : postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        45/66 Running scriptlet: postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        45/66 Erasing          : libmng-2.0.3-10.ky10.x86_64                                                                                                                                46/66 Running scriptlet: libmng-2.0.3-10.ky10.x86_64                                                                                                                                46/66 Erasing          : libaesgm-20090429-21.ky10.x86_64                                                                                                                           47/66 Running scriptlet: libaesgm-20090429-21.ky10.x86_64                                                                                                                           47/66 Erasing          : mariadb-connector-c-3.0.6-8.ky10.x86_64                                                                                                                    48/66 Erasing          : minizip-1.2.11-18.ky10.x86_64                                                                                                                              49/66 Erasing          : poly2tri-0.0-19.ky10.x86_64                                                                                                                                50/66 Erasing          : qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                                                                                                                   51/66 Erasing          : qt5-qtconnectivity-5.11.1-4.ky10.x86_64                                                                                                                    52/66 Erasing          : qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Running scriptlet: qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Erasing          : qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                                                                                                                   54/66 Erasing          : qt5-qtscript-5.11.1-5.ky10.x86_64                                                                                                                          55/66 Erasing          : qt5-qtsensors-5.11.1-6.ky10.x86_64                                                                                                                         56/66 Erasing          : qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                                                                                                                  57/66 Erasing          : qt5-qtwayland-5.11.1-6.ky10.x86_64                                                                                                                         58/66 Erasing          : qt5-qtwebchannel-5.11.1-5.ky10.x86_64                                                                                                                      59/66 Erasing          : qt5-qtwebsockets-5.11.1-6.ky10.x86_64                                                                                                                      60/66 Erasing          : libestr-0.1.11-1.ky10.x86_64                                                                                                                               61/66 Running scriptlet: libestr-0.1.11-1.ky10.x86_64                                                                                                                               61/66 Erasing          : libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           62/66 Running scriptlet: libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           62/66 Erasing          : libnet-1.2-1.ky10.x86_64                                                                                                                                   63/66 Running scriptlet: libnet-1.2-1.ky10.x86_64                                                                                                                                   63/66 Erasing          : librelp-1.2.16-3.ky10.x86_64                                                                                                                               64/66 Running scriptlet: librelp-1.2.16-3.ky10.x86_64                                                                                                                               64/66 Erasing          : unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               65/66 Running scriptlet: unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               65/66 Erasing          : libchewing-0.5.1-17.ky10.x86_64                                                                                                                            66/66 Running scriptlet: libchewing-0.5.1-17.ky10.x86_64                                                                                                                            66/66 Verifying        : assimp-3.3.1-19.ky10.x86_64                                                                                                                                 1/66 Verifying        : fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             2/66 Verifying        : fcitx-chewing-0.2.3-8.ky10.x86_64                                                                                                                           3/66 Verifying        : fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                   4/66 Verifying        : fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                        5/66 Verifying        : fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        6/66 Verifying        : fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        7/66 Verifying        : fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        8/66 Verifying        : fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                                                                                                                      9/66 Verifying        : fcitx-qt5-1.2.4-3.1.ky10.x86_64                                                                                                                            10/66 Verifying        : fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                                                                                                                      11/66 Verifying        : firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     12/66 Verifying        : freetds-1.00.38-8.ky10.x86_64                                                                                                                              13/66 Verifying        : gsm-1.0.18-4.ky10.x86_64                                                                                                                                   14/66 Verifying        : gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           15/66 Verifying        : ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             16/66 Verifying        : ipmitool-help-1.8.18-15.ky10.noarch                                                                                                                        17/66 Verifying        : irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              18/66 Verifying        : kf5-filesystem-5.59.0-1.1.ky10.x86_64                                                                                                                      19/66 Verifying        : kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64                                                                                                                 20/66 Verifying        : kylin-activation-1.3.10-5.p27.ky10.x86_64                                                                                                                  21/66 Verifying        : libaesgm-20090429-21.ky10.x86_64                                                                                                                           22/66 Verifying        : libchewing-0.5.1-17.ky10.x86_64                                                                                                                            23/66 Verifying        : libestr-0.1.11-1.ky10.x86_64                                                                                                                               24/66 Verifying        : libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           25/66 Verifying        : libmng-2.0.3-10.ky10.x86_64                                                                                                                                26/66 Verifying        : libnet-1.2-1.ky10.x86_64                                                                                                                                   27/66 Verifying        : libnice-0.1.14-10.ky10.x86_64                                                                                                                              28/66 Verifying        : librelp-1.2.16-3.ky10.x86_64                                                                                                                               29/66 Verifying        : libtommath-1.0.1-5.ky10.x86_64                                                                                                                             30/66 Verifying        : mariadb-3:10.3.9-12.p01.ky10.x86_64                                                                                                                        31/66 Verifying        : mariadb-common-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 32/66 Verifying        : mariadb-connector-c-3.0.6-8.ky10.x86_64                                                                                                                    33/66 Verifying        : mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64                                                                                                             34/66 Verifying        : mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 35/66 Verifying        : minizip-1.2.11-18.ky10.x86_64                                                                                                                              36/66 Verifying        : net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           37/66 Verifying        : net-snmp-help-1:5.9-4.p01.ky10.noarch                                                                                                                      38/66 Verifying        : perl-DBD-MySQL-4.046-6.ky10.x86_64                                                                                                                         39/66 Verifying        : poly2tri-0.0-19.ky10.x86_64                                                                                                                                40/66 Verifying        : postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        41/66 Verifying        : python2-mysqlclient-1.3.12-8.ky10.x86_64                                                                                                                   42/66 Verifying        : qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              43/66 Verifying        : qt5-5.14.2-1.ky10.noarch                                                                                                                                   44/66 Verifying        : qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                                                                                                                   45/66 Verifying        : qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              46/66 Verifying        : qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64                                                                                                                 47/66 Verifying        : qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64                                                                                                            48/66 Verifying        : qt5-qtconnectivity-5.11.1-4.ky10.x86_64                                                                                                                    49/66 Verifying        : qt5-qtdoc-5.11.1-4.ky10.noarch                                                                                                                             50/66 Verifying        : qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64                                                                                                            51/66 Verifying        : qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                                                                                                                52/66 Verifying        : qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Verifying        : qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      54/66 Verifying        : qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                                                                                                                   55/66 Verifying        : qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  56/66 Verifying        : qt5-qtscript-5.11.1-5.ky10.x86_64                                                                                                                          57/66 Verifying        : qt5-qtsensors-5.11.1-6.ky10.x86_64                                                                                                                         58/66 Verifying        : qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                                                                                                                  59/66 Verifying        : qt5-qtwayland-5.11.1-6.ky10.x86_64                                                                                                                         60/66 Verifying        : qt5-qtwebchannel-5.11.1-5.ky10.x86_64                                                                                                                      61/66 Verifying        : qt5-qtwebsockets-5.11.1-6.ky10.x86_64                                                                                                                      62/66 Verifying        : rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         63/66 Verifying        : rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                                                                                                                    64/66 Verifying        : security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                     65/66 Verifying        : unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               66/66 Removed:assimp-3.3.1-19.ky10.x86_64                                  fcitx-4.2.9.1-2.p03.ky10.x86_64                          fcitx-chewing-0.2.3-8.ky10.x86_64                             fcitx-configtool-0.4.10-6.p01.ky10.x86_64                    fcitx-data-4.2.9.1-2.p03.ky10.noarch                     fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                          fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                         fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                     fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                        fcitx-qt5-1.2.4-3.1.ky10.x86_64                              fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                    firebird-3.0.3.32900-9.p02.ky10.x86_64                        freetds-1.00.38-8.ky10.x86_64                                gsm-1.0.18-4.ky10.x86_64                                 gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64              ipmitool-1.8.18-15.ky10.x86_64                               ipmitool-help-1.8.18-15.ky10.noarch                      irrlicht-1.8.4-11.ky10.x86_64                                 kf5-filesystem-5.59.0-1.1.ky10.x86_64                        kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64               kylin-activation-1.3.10-5.p27.ky10.x86_64                     libaesgm-20090429-21.ky10.x86_64                             libchewing-0.5.1-17.ky10.x86_64                          libestr-0.1.11-1.ky10.x86_64                                  libfastjson-0.99.9-1.ky10.x86_64                             libmng-2.0.3-10.ky10.x86_64                              libnet-1.2-1.ky10.x86_64                                      libnice-0.1.14-10.ky10.x86_64                                librelp-1.2.16-3.ky10.x86_64                             libtommath-1.0.1-5.ky10.x86_64                                mariadb-3:10.3.9-12.p01.ky10.x86_64                          mariadb-common-3:10.3.9-12.p01.ky10.x86_64               mariadb-connector-c-3.0.6-8.ky10.x86_64                       mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64               mariadb-server-3:10.3.9-12.p01.ky10.x86_64               minizip-1.2.11-18.ky10.x86_64                                 net-snmp-1:5.9-4.p01.ky10.x86_64                             net-snmp-help-1:5.9-4.p01.ky10.noarch                    perl-DBD-MySQL-4.046-6.ky10.x86_64                            poly2tri-0.0-19.ky10.x86_64                                  postgresql-libs-10.5-22.ky10.x86_64                      python2-mysqlclient-1.3.12-8.ky10.x86_64                      qt-1:4.8.7-47.p04.ky10.x86_64                                qt5-5.14.2-1.ky10.noarch                                 qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                      qt5-qt3d-5.11.1-4.ky10.x86_64                                qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64               qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64               qt5-qtconnectivity-5.11.1-4.ky10.x86_64                      qt5-qtdoc-5.11.1-4.ky10.noarch                           qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64               qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                  qt5-qtlocation-5.11.1-6.ky10.x86_64                      qt5-qtmultimedia-5.11.1-6.ky10.x86_64                         qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                     qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                qt5-qtscript-5.11.1-5.ky10.x86_64                             qt5-qtsensors-5.11.1-6.ky10.x86_64                           qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                qt5-qtwayland-5.11.1-6.ky10.x86_64                            qt5-qtwebchannel-5.11.1-5.ky10.x86_64                        qt5-qtwebsockets-5.11.1-6.ky10.x86_64                    rsyslog-8.2006.0-7.p01.ky10.x86_64                            rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                      security-tool-2.0-1.75.p01.ky10.x86_64                   unixODBC-2.3.7-3.ky10.x86_64                                  Complete!
[root@localhost ~]# 

验证卸载Mariadb成功

yum list --installed mariadb*
rpm -qa|grep -i mariadb*

在这里插入图片描述

查看Mariadb配置文件和目录是否还存在 已经不存在了

ls -l /etc/my.cnf
ls -l /etc/my.cnf.d

在这里插入图片描述

至此mariadb卸载完成

3.1.2、下载Mysql安装包

访问官网下载链接 链接: https://dev.mysql.com/downloads/mysql/

选择如下 点击下载按钮 下载安装包

在这里插入图片描述

选择 mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar 点击下载

在这里插入图片描述

为什么选择redhat 8的操作系统版本呢?
https://www.kylinos.cn/about/news/814.html
通过查询麒麟官网得知,银河麒麟高级服务器操作系统是兼容centos8的,centos8和redhat8兼容。

在这里插入图片描述

3.1.3、安装Mysql 8.35

官方安装文档
链接: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/linux-installation-rpm.html

RPM Packages for MySQL Community Edition

Package NameSummary
mysql-community-clientMySQL client applications and tools
mysql-community-client-pluginsShared plugins for MySQL client applications
mysql-community-commonCommon files for server and client libraries
mysql-community-develDevelopment header files and libraries for MySQL database client applications
mysql-community-embedded-compatMySQL server as an embedded library with compatibility for applications using version 18 of the library
mysql-community-icu-data-filesMySQL packaging of ICU data files needed by MySQL regular expressions
mysql-community-libsShared libraries for MySQL database client applications
mysql-community-libs-compatShared compatibility libraries for previous MySQL installations; only present if previous MySQL versions are supported by the platform
mysql-community-serverDatabase server and related tools
mysql-community-server-debugDebug server and plugin binaries
mysql-community-testTest suite for the MySQL server
mysql-communityThe source code RPM looks similar to mysql-community-8.0.35-1.el7.src.rpm, depending on selected OS
Additional debuginfo RPMsThere are several debuginfo packages: mysql-community-client-debuginfo, mysql-community-libs-debuginfo mysql-community-server-debug-debuginfo mysql-community-server-debuginfo, and mysql-community-test-debuginfo.

rpm包的名称格式:packagename-version-distribution-arch.rpm

安装步骤如下:
创建Mysql安装包目录

mkdir -p /root/package/mysql

上传Mysql安装包mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar 到/root/package/mysql 目录下

cd /root/package/mysql
mkdir mysql-8.0.35-1.el8.x86_64.rpm-bundle

安装过程如下

tar -xvf mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar -C mysql-8.0.35-1.el8.x86_64.rpm-bundle/ 
cd mysql-8.0.35-1.el8.x86_64.rpm-bundle/

只需要安装以下软件包即可
In most cases, you need to install the mysql-community-server, mysql-community-client, mysql-community-client-plugins, mysql-community-libs, mysql-community-icu-data-files, mysql-community-common, and mysql-community-libs-compat packages to get a functional, standard MySQL installation. To perform such a standard, basic installation, go to the folder that contains all those packages (and, preferably, no other RPM packages with similar names), and issue the following command:

意思是说这个软件包目录下只包含有上面提到的这几个包即可,不能有其他的包,因此把其他的包删除掉。只保留
mysql-community-server, mysql-community-client, mysql-community-client-plugins, mysql-community-libs, mysql-community-icu-data-files, mysql-community-common, and mysql-community-libs-compat

在这里插入图片描述

rm -f mysql-community-server-debug*
rm -f mysql-community-debug*
rm -f mysql-community-client-debuginfo-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-test-*
rm -f mysql-community-client-plugins-debuginfo-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-devel-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-libs-debuginfo-8.0.35-1.el8.x86_64.rpm

在这里插入图片描述

安装mysql前,操作系统上没有没有默认的mysql根目录/var/lib/mysql、,mysql配置文件/etc/my.cnf

在这里插入图片描述

yum install mysql-community-{server,client,client-plugins,icu-data-files,common,libs}-*

安装完成如图所示

在这里插入图片描述

查看安装的mysql包

yum list --installed |grep -i mysql
rpm -qa|grep -i mysql

在这里插入图片描述

安装完成后,会形成以下文件和目录(执行安装命令后才会形成以下文件和目录)
安装mysql后为什么就会形成以下文件和目录呢?
这是因为所谓的安装mysql,安装mysql这个动作所做的操作是:把mysql安装包中的文件目录结构复制到安装mysql的操作系统上,仅此而已。mysql安装包里面本就有以下这些文件和目录。

Files or ResourcesLocation
Files or ResourcesLocation
Client programs and scripts/usr/bin
mysqld server/usr/sbin
Configuration file/etc/my.cnf
Data directory/var/lib/mysql
Error log fileFor RHEL, Oracle Linux, CentOS or Fedora platforms: /var/log/mysqld.log
Value of secure_file_priv/var/lib/mysql-files
System V init scriptFor RHEL, Oracle Linux, CentOS or Fedora platforms: /etc/init.d/mysqld
Systemd serviceFor RHEL, Oracle Linux, CentOS or Fedora platforms: mysqld
Pid file/var/run/mysqld/mysqld.pid
Socket/var/lib/mysql/mysql.sock
Keyring directory/var/lib/mysql-keyring
Unix manual pages/usr/share/man
Include (header) files/usr/include/mysql
Libraries/usr/lib64/mysql
Miscellaneous support files (for example, error messages, and character set files)/usr/share/mysql

安装完后 也会产生一个名为mysql 的系统用户,和一个名为mysql 的系统用户组。
在这里插入图片描述
至此安装Mysql 8.35完成。
如果在安装过程中出现问题,您可能会在错误日志文件/var/log/mysqld.log中找到日志信息。
安装成功的情况下 /var/log/mysqld.log是空的

如果需要切换到Mysql用户 使用如下命令

su - mysql --shell=/bin/bash

下面这项是可选的 看调试信息才需要这样启动Mysql,一般不需要。

Debug Package.  A special variant of MySQL Server compiled with the debug package has been included in the server RPM packages. It performs debugging and memory allocation checks and produces a trace file when the server is running. To use that debug version, start MySQL with /usr/sbin/mysqld-debug, instead of starting it as a service or with /usr/sbin/mysqld. See The DBUG Package for the debug options you can use.

查看安装mysql后形成的目录和文件以及默认的配置文件

1、Client programs and scripts

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/bin目录下的东西
和mysql安装包mysql-community-client-8.0.35-1.el8.x86_64.rpm里面的/usr/bin目录下的东西

在这里插入图片描述

在这里插入图片描述

2、mysqld server

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的东西

在这里插入图片描述

3、Configuration file

在这里插入图片描述

安装mysql后为什么就会创建mysql的配置文件/etc/my.cnf呢?
这是因为mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm,这个包里面的目录结构如下

在这里插入图片描述

在这里插入图片描述

所谓的安装mysql,安装mysql这个动作所做的操作是:把mysql安装包中的文件目录结构复制到安装mysql的操作系统上,仅此而已。

4、Data directory
安装mysql后,mysql根目录/var/lib/msyql里面是空的。说明此时还没有初始化mysql,仅仅是安装完成了mysql而已。
在这里插入图片描述

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql文件夹

在这里插入图片描述

5、Error log file

在这里插入图片描述

/var/log/mysqld.log不是从mysql安装包拷贝的,是安装mysql时在操作系统上新建的这个文件,看这个文件的日期就是安装mysql的日期,和其他文件夹比如mysql根目录/var/lib/mysql、/var/lib/mysql-files的日期是不一样的。

6、Value of secure_file_priv

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql-files文件夹

在这里插入图片描述

7、System V init script

在这里插入图片描述

安装包里没有这个文件夹,也可能因为此次安装Mysql使用的是银河麒麟高级服务器操作系统v10 sp3,属于systemd系列的操作系统,所以并没有创建system v的启动脚本吧。不深究了,不影响。

8、Systemd service

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/usrl/ib/systemd/system文件夹下的mysqld.service文件。

在这里插入图片描述

9、Pid file

在这里插入图片描述

mysql还没有启动,所以没有mysql的pid文件。

10、Socket

在这里插入图片描述

mysql还没有启动,所以没有mysql的socket文件。

11、Keyring directory

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql-keyring文件夹

在这里插入图片描述

12、Unix manual pages

/usr/share/man

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/share/man目录下的东西
对应mysql安装包mysql-community-client-8.0.35-1.el8.x86_64.rpm里面的/usr/shar/man文件夹

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

13、Include (header) files

在这里插入图片描述

14、Libraries
在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/lib64目录下的东西

在这里插入图片描述

在这里插入图片描述

15、Miscellaneous support files (for example, error messages, and character set files)、

在这里插入图片描述

3.1.4、初始化(启动)mysql 8.0.35

对于使用rpm包或deb包安装mysql的,启动mysql时就会执行初始化。本文是用rpm包安装的mysql,因此启动mysql服务就会初始化mysql。
安装后默认不会启动Mysql服务

在这里插入图片描述

在linux系统上安装完成mysql后,先不要初始化mysql。

先编辑mysql配置文件/etc/my.cnf

cp /etc/my.cnf /etc/my.cnf.bak
vi /etc/my.cnf

修改datadir和socket参数
修改前

在这里插入图片描述

修改后

在这里插入图片描述

然后初始化mysql,使用rpm包或deb包安装mysql的,启动mysql时就会执行初始化。本文是用rpm包安装的mysql,因此启动mysql服务即可。

注意启动mysql服务前/var/lib/mysql下是空的,并且没有/home/mysql文件夹

在这里插入图片描述

启动mysql命令

systemctl start mysqld.service

此启动mysql命令做下面这些事情

  1. 初始化mysql服务
  2. 检查有没有mysql根目录存在,如果没有mysql根目录存在,则创建mysql根目录。然后在mysql根目录下创建mysql的系统数据库:默认的系统数据库:mysql、sys、performance_schema、information_schema。
  3. 产生ssl证书和密钥在Mysql数据目录下
  4. validate_password默认安装。validate_password实现的默认密码策略要求密码至少包含一个大写字母、一个小写字母、一位数字和一个特殊字符,并且密码总长度至少为8个字符。
  5. 已创建超级用户帐户“root”@“localhost”。超级用户的密码已设置并存储在错误日志文件中。查看mysql的root账户默认密码 grep 'temporary password' /var/log/mysqld.log

1、查看数据目录
启动mysql服务前/var/lib/mysql下是空的,并且没有/home/mysql文件夹
启动mysql服务后/var/lib/mysql下仍然是空的,并且产生了/home/mysql文件夹,/home/mysql文件夹的大小是192M。(里面包含了初始化mysql时形成的mysql系统数据库以及密钥文件等)

在这里插入图片描述

查看mysql根目录/home/mysql下各个子文件夹

在这里插入图片描述

2、证书在数据目录下

在这里插入图片描述

3、查看 超级用户帐户“root”@“localhost” 的默认密码 vefxpw?ag6Ww

grep 'temporary password' /var/log/mysqld.log

在这里插入图片描述

4、启动Mysql后 会形成sock文件和pid文件

ls -lh /home/mysql/mysql.sock
ls -lh /var/run/mysqld/mysqld.pid
cat /var/run/mysqld/mysqld.pid

在这里插入图片描述

安装mysql后默认是监听在“:::3306”上的,这个表示ipv6监听,同时也包含了ipv4,也就说,ipv6和ipv4都支持访问mysql。

netstat -antlp|grep 3306

在这里插入图片描述

停止mysql服务后 sock文件和pid文件都消失了

在这里插入图片描述

开启mysql服务后 sock文件和pid文件重新生成了 只不过pid文件的数值不同了。

在这里插入图片描述

5、查看启动日志

cat /var/log/mysqld.log

下面是第一次启动mysql服务的日志 含有初始化日志:[System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.35) initializing of server in progress as process 70838
在这里插入图片描述

初始化后停止mysql服务,再次开启mysql服务就不会有初始化日志了,只会有启动日志。

在这里插入图片描述

3.1.5、安装后配置

链接: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/postinstallation.html

使用安装Mysql数据库 时生成的默认密码登录mysql数据库

mysql -uroot -p

报错:ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2)

在这里插入图片描述

配置文件已经指定了socket=/home/mysql/mysql.sock 不知道为什么mysql还是去找默认的socket文件/var/lib/mysql/mysql.sock

socket=/home/mysql/mysql.sock

在这里插入图片描述

在登录mysql时使用-S参数手动指定正确的socket文件即可

mysql -uroot -p -S /home/mysql/mysql.sock

在这里插入图片描述

这个问题可以通过 创建一个软连接文件名为/var/lib/mysql/mysql.sock 连接到 迁移目录后新的mysql.sock文件,这样之后登录mysql时就不用添加-S参数了。

ln -s /home/mysql/mysql.sock /var/lib/mysql/mysql.sock

没修改默认密码前不能进行数据库sql操作

在这里插入图片描述

修改Mysql默认密码为Mysql@123

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'Mysql@123' PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.01 sec)mysql>
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)mysql> 
mysql> use mysql;
Database changed
mysql> 
mysql> update user set host = "%" where user = "root";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1  Changed: 0  Warnings: 0mysql> 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)mysql> 
mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'Mysql@123';
Query OK, 0 rows affected (0.01 sec)mysql> 
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)mysql> 

修改密码后即可成功执行数据库sql命令

在这里插入图片描述

使用新密码登录mysql数据库

在这里插入图片描述

实际生产环境使用mysql时,发现导入一些数据表后 mysql根目录所在的/home分区 就增大了差不多1G。后期mysql会产生更多的数据会占用很多空间,因此在启动mysql服务前先编辑配置文件选择一个大的分区作为mysql根目录是很重要的。

3.2、发现mysql根目录爆满了,改变mysql根目录为一个大的分区(支持动态扩容),事后解决根目录空间不够问题(需要迁移之前的根目录数据到新的根目录)

3.2.1、正常安装mysql后 mysql根目录是/var/lib/mysql

3.2.1.1、卸载mariadb

由于银河麒麟v10系统默认安装了mariadb 会与Mysql相冲突,因此首先需要卸载系统自带的mariadb
查看系统上默认安装的Mariadb软件包
使用yum查看已经安装的mariadb软件包

yum list --installed mariadb*

在这里插入图片描述

rpm -qa|grep -i mariadb*

在这里插入图片描述

查看默认的mariadb配置文件

在这里插入代码片

默认的配置文件是 /etc/my.cnf

在这里插入图片描述

查看默认的mariadb配置目录

find / -type d  -name my.cnf*

在这里插入图片描述

使用yum卸载 mariadb

yum remove mariadb.x86_64 mariadb-common.x86_64 mariadb-connector-c.x86_64 mariadb-errmessage.x86_64 mariadb-server.x86_64

卸载记录

[root@localhost ~]# yum remove mariadb.x86_64 mariadb-common.x86_64 mariadb-connector-c.x86_64 mariadb-errmessage.x86_64 mariadb-server.x86_64
Dependencies resolved.
======================================================================================================================================================================================Package                                               Architecture                     Version                                             Repository                           Size
======================================================================================================================================================================================
Removing:mariadb                                               x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                            37 Mmariadb-common                                        x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                           179 kmariadb-connector-c                                   x86_64                           3.0.6-8.ky10                                        @anaconda                           413 kmariadb-errmessage                                    x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                           2.3 Mmariadb-server                                        x86_64                           3:10.3.9-12.p01.ky10                                @anaconda                            91 M
Removing dependent packages:fcitx-chewing                                         x86_64                           0.2.3-8.ky10                                        @anaconda                            65 kfcitx-configtool                                      x86_64                           0.4.10-6.p01.ky10                                   @anaconda                           239 kfcitx-pinyin                                          x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           7.1 Mfcitx-qt5-devel                                       x86_64                           1.2.4-3.1.ky10                                      @anaconda                            57 kipmitool                                              x86_64                           1.8.18-15.ky10                                      @anaconda                           1.4 Mkylin-activation                                      x86_64                           1.3.10-5.p27.ky10                                   @anaconda                           553 kpython2-mysqlclient                                   x86_64                           1.3.12-8.ky10                                       @anaconda                           349 krsyslog-relp                                          x86_64                           8.2006.0-7.p01.ky10                                 @anaconda                            62 ksecurity-tool                                         x86_64                           2.0-1.75.p01.ky10                                   @anaconda                            45 k
Removing unused dependencies:assimp                                                x86_64                           3.3.1-19.ky10                                       @anaconda                           7.1 Mfcitx                                                 x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           1.0 Mfcitx-data                                            noarch                           4.2.9.1-2.p03.ky10                                  @anaconda                           5.3 Mfcitx-gtk2                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                            34 kfcitx-gtk3                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                            34 kfcitx-libs                                            x86_64                           4.2.9.1-2.p03.ky10                                  @anaconda                           1.6 Mfcitx-qt5                                             x86_64                           1.2.4-3.1.ky10                                      @anaconda                           626 kfirebird                                              x86_64                           3.0.3.32900-9.p02.ky10                              @anaconda                            18 Mfreetds                                               x86_64                           1.00.38-8.ky10                                      @anaconda                           2.6 Mgsm                                                   x86_64                           1.0.18-4.ky10                                       @anaconda                            95 kgstreamer1-plugins-bad-free                           x86_64                           1.16.2-2.ky10                                       @anaconda                           5.7 Mipmitool-help                                         noarch                           1.8.18-15.ky10                                      @anaconda                            92 kirrlicht                                              x86_64                           1.8.4-11.ky10                                       @anaconda                           5.3 Mkf5-filesystem                                        x86_64                           5.59.0-1.1.ky10                                     @anaconda                             0  kf5-kwindowsystem                                     x86_64                           5.55.0-1.p01.ky10                                   @anaconda                           488 klibaesgm                                              x86_64                           20090429-21.ky10                                    @anaconda                           118 klibchewing                                            x86_64                           0.5.1-17.ky10                                       @anaconda                           3.7 Mlibestr                                               x86_64                           0.1.11-1.ky10                                       @anaconda                            43 klibfastjson                                           x86_64                           0.99.9-1.ky10                                       @anaconda                            72 klibmng                                                x86_64                           2.0.3-10.ky10                                       @anaconda                           633 klibnet                                                x86_64                           1.2-1.ky10                                          @anaconda                            98 klibnice                                               x86_64                           0.1.14-10.ky10                                      @anaconda                           455 klibrelp                                               x86_64                           1.2.16-3.ky10                                       @anaconda                           157 klibtommath                                            x86_64                           1.0.1-5.ky10                                        @anaconda                            76 kminizip                                               x86_64                           1.2.11-18.ky10                                      @anaconda                            49 knet-snmp                                              x86_64                           1:5.9-4.p01.ky10                                    @anaconda                           4.8 Mnet-snmp-help                                         noarch                           1:5.9-4.p01.ky10                                    @anaconda                           904 kperl-DBD-MySQL                                        x86_64                           4.046-6.ky10                                        @anaconda                           333 kpoly2tri                                              x86_64                           0.0-19.ky10                                         @anaconda                            54 kpostgresql-libs                                       x86_64                           10.5-22.ky10                                        @anaconda                           897 kqt                                                    x86_64                           1:4.8.7-47.p04.ky10                                 @anaconda                           351 Mqt5                                                   noarch                           5.14.2-1.ky10                                       @anaconda                            19  qt5-qdbusviewer                                       x86_64                           5.11.1-5.p03.ky10                                   @anaconda                           137 kqt5-qt3d                                              x86_64                           5.11.1-4.ky10                                       @anaconda                           7.3 Mqt5-qtbase-mysql                                      x86_64                           5.11.1-13.p01.ky10                                  @anaconda                            79 kqt5-qtbase-postgresql                                 x86_64                           5.11.1-13.p01.ky10                                  @anaconda                            87 kqt5-qtconnectivity                                    x86_64                           5.11.1-4.ky10                                       @anaconda                           1.6 Mqt5-qtdoc                                             noarch                           5.11.1-4.ky10                                       @anaconda                           8.0 Mqt5-qtgraphicaleffects                                x86_64                           5.11.1-5.p01.ky10                                   @anaconda                           645 kqt5-qtimageformats                                    x86_64                           5.11.1-6.p01.ky10                                   @anaconda                           374 kqt5-qtlocation                                        x86_64                           5.11.1-6.ky10                                       @anaconda                            10 Mqt5-qtmultimedia                                      x86_64                           5.11.1-6.ky10                                       @anaconda                           2.8 Mqt5-qtquickcontrols                                   x86_64                           5.11.1-5.ky10                                       @anaconda                           4.7 Mqt5-qtquickcontrols2                                  x86_64                           5.11.1-4.ky10                                       @anaconda                           6.8 Mqt5-qtscript                                          x86_64                           5.11.1-5.ky10                                       @anaconda                           3.3 Mqt5-qtsensors                                         x86_64                           5.11.1-6.ky10                                       @anaconda                           1.7 Mqt5-qtserialport                                      x86_64                           5.11.1-5.p01.ky10                                   @anaconda                           216 kqt5-qtwayland                                         x86_64                           5.11.1-6.ky10                                       @anaconda                           3.3 Mqt5-qtwebchannel                                      x86_64                           5.11.1-5.ky10                                       @anaconda                           261 kqt5-qtwebsockets                                      x86_64                           5.11.1-6.ky10                                       @anaconda                           274 krsyslog                                               x86_64                           8.2006.0-7.p01.ky10                                 @anaconda                           2.6 MunixODBC                                              x86_64                           2.3.7-3.ky10                                        @anaconda                           1.3 MTransaction Summary
======================================================================================================================================================================================
Remove  66 PackagesFreed space: 609 M
Is this ok [y/N]: y
Running transaction check
Transaction check succeeded.
Running transaction test
Transaction test succeeded.
Running transactionPreparing        :                                                                                                                                                              1/1 Running scriptlet: fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                    1/1 Erasing          : fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                   1/66 Erasing          : mariadb-3:10.3.9-12.p01.ky10.x86_64                                                                                                                         2/66 Running scriptlet: mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Erasing          : mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Running scriptlet: mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                  3/66 Erasing          : fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                                                                                                                      4/66 Erasing          : fcitx-chewing-0.2.3-8.ky10.x86_64                                                                                                                           5/66 Erasing          : mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64                                                                                                              6/66 Running scriptlet: security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 Erasing          : security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 
warning: /etc/kylin_security/security saved as /etc/kylin_security/security.rpmsaveRunning scriptlet: security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                      7/66 Erasing          : fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                                                                                                                       8/66 Erasing          : fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             9/66 Running scriptlet: fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             9/66 Erasing          : fcitx-qt5-1.2.4-3.1.ky10.x86_64                                                                                                                            10/66 Erasing          : fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       11/66 Running scriptlet: fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       11/66 
/var/tmp/rpm-tmp.yjxvOw: line 1: /usr/bin/update-gtk-immodules: No such file or directoryErasing          : fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       12/66 Running scriptlet: fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       12/66 Erasing          : fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       13/66 Running scriptlet: fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                       13/66 Erasing          : qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              14/66 Running scriptlet: qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              14/66 Erasing          : freetds-1.00.38-8.ky10.x86_64                                                                                                                              15/66 Running scriptlet: freetds-1.00.38-8.ky10.x86_64                                                                                                                              15/66 Erasing          : perl-DBD-MySQL-4.046-6.ky10.x86_64                                                                                                                         16/66 Erasing          : rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                                                                                                                    17/66 Running scriptlet: rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 
Removed /etc/systemd/system/multi-user.target.wants/rsyslog.service.Erasing          : rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 Running scriptlet: rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         18/66 Erasing          : python2-mysqlclient-1.3.12-8.ky10.x86_64                                                                                                                   19/66 Erasing          : kylin-activation-1.3.10-5.p27.ky10.x86_64                                                                                                                  20/66 Erasing          : qt5-5.14.2-1.ky10.noarch                                                                                                                                   21/66 Erasing          : qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              22/66 Running scriptlet: qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              22/66 Erasing          : assimp-3.3.1-19.ky10.x86_64                                                                                                                                23/66 Running scriptlet: assimp-3.3.1-19.ky10.x86_64                                                                                                                                23/66 Erasing          : qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64                                                                                                                 24/66 Running scriptlet: ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Erasing          : ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Running scriptlet: ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             25/66 Erasing          : ipmitool-help-1.8.18-15.ky10.noarch                                                                                                                        26/66 Erasing          : qt5-qtdoc-5.11.1-4.ky10.noarch                                                                                                                             27/66 Erasing          : fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                       28/66 Running scriptlet: fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                       28/66 Erasing          : mariadb-common-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 29/66 Running scriptlet: net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Erasing          : net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Running scriptlet: net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           30/66 Erasing          : irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              31/66 Running scriptlet: irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              31/66 Erasing          : qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                                                                                                                32/66 Erasing          : qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64                                                                                                            33/66 Erasing          : qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      34/66 Running scriptlet: qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      34/66 Erasing          : gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           35/66 Running scriptlet: gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           35/66 Erasing          : qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  36/66 Running scriptlet: qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  36/66 Erasing          : kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64                                                                                                                 37/66 Running scriptlet: firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Erasing          : firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Running scriptlet: firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     38/66 Erasing          : kf5-filesystem-5.59.0-1.1.ky10.x86_64                                                                                                                      39/66 Erasing          : net-snmp-help-1:5.9-4.p01.ky10.noarch                                                                                                                      40/66 Erasing          : libtommath-1.0.1-5.ky10.x86_64                                                                                                                             41/66 Erasing          : qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64                                                                                                            42/66 Erasing          : gsm-1.0.18-4.ky10.x86_64                                                                                                                                   43/66 Erasing          : libnice-0.1.14-10.ky10.x86_64                                                                                                                              44/66 Running scriptlet: libnice-0.1.14-10.ky10.x86_64                                                                                                                              44/66 Erasing          : postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        45/66 Running scriptlet: postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        45/66 Erasing          : libmng-2.0.3-10.ky10.x86_64                                                                                                                                46/66 Running scriptlet: libmng-2.0.3-10.ky10.x86_64                                                                                                                                46/66 Erasing          : libaesgm-20090429-21.ky10.x86_64                                                                                                                           47/66 Running scriptlet: libaesgm-20090429-21.ky10.x86_64                                                                                                                           47/66 Erasing          : mariadb-connector-c-3.0.6-8.ky10.x86_64                                                                                                                    48/66 Erasing          : minizip-1.2.11-18.ky10.x86_64                                                                                                                              49/66 Erasing          : poly2tri-0.0-19.ky10.x86_64                                                                                                                                50/66 Erasing          : qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                                                                                                                   51/66 Erasing          : qt5-qtconnectivity-5.11.1-4.ky10.x86_64                                                                                                                    52/66 Erasing          : qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Running scriptlet: qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Erasing          : qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                                                                                                                   54/66 Erasing          : qt5-qtscript-5.11.1-5.ky10.x86_64                                                                                                                          55/66 Erasing          : qt5-qtsensors-5.11.1-6.ky10.x86_64                                                                                                                         56/66 Erasing          : qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                                                                                                                  57/66 Erasing          : qt5-qtwayland-5.11.1-6.ky10.x86_64                                                                                                                         58/66 Erasing          : qt5-qtwebchannel-5.11.1-5.ky10.x86_64                                                                                                                      59/66 Erasing          : qt5-qtwebsockets-5.11.1-6.ky10.x86_64                                                                                                                      60/66 Erasing          : libestr-0.1.11-1.ky10.x86_64                                                                                                                               61/66 Running scriptlet: libestr-0.1.11-1.ky10.x86_64                                                                                                                               61/66 Erasing          : libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           62/66 Running scriptlet: libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           62/66 Erasing          : libnet-1.2-1.ky10.x86_64                                                                                                                                   63/66 Running scriptlet: libnet-1.2-1.ky10.x86_64                                                                                                                                   63/66 Erasing          : librelp-1.2.16-3.ky10.x86_64                                                                                                                               64/66 Running scriptlet: librelp-1.2.16-3.ky10.x86_64                                                                                                                               64/66 Erasing          : unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               65/66 Running scriptlet: unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               65/66 Erasing          : libchewing-0.5.1-17.ky10.x86_64                                                                                                                            66/66 Running scriptlet: libchewing-0.5.1-17.ky10.x86_64                                                                                                                            66/66 Verifying        : assimp-3.3.1-19.ky10.x86_64                                                                                                                                 1/66 Verifying        : fcitx-4.2.9.1-2.p03.ky10.x86_64                                                                                                                             2/66 Verifying        : fcitx-chewing-0.2.3-8.ky10.x86_64                                                                                                                           3/66 Verifying        : fcitx-configtool-0.4.10-6.p01.ky10.x86_64                                                                                                                   4/66 Verifying        : fcitx-data-4.2.9.1-2.p03.ky10.noarch                                                                                                                        5/66 Verifying        : fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        6/66 Verifying        : fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        7/66 Verifying        : fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                                                                                                                        8/66 Verifying        : fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                                                                                                                      9/66 Verifying        : fcitx-qt5-1.2.4-3.1.ky10.x86_64                                                                                                                            10/66 Verifying        : fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                                                                                                                      11/66 Verifying        : firebird-3.0.3.32900-9.p02.ky10.x86_64                                                                                                                     12/66 Verifying        : freetds-1.00.38-8.ky10.x86_64                                                                                                                              13/66 Verifying        : gsm-1.0.18-4.ky10.x86_64                                                                                                                                   14/66 Verifying        : gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64                                                                                                           15/66 Verifying        : ipmitool-1.8.18-15.ky10.x86_64                                                                                                                             16/66 Verifying        : ipmitool-help-1.8.18-15.ky10.noarch                                                                                                                        17/66 Verifying        : irrlicht-1.8.4-11.ky10.x86_64                                                                                                                              18/66 Verifying        : kf5-filesystem-5.59.0-1.1.ky10.x86_64                                                                                                                      19/66 Verifying        : kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64                                                                                                                 20/66 Verifying        : kylin-activation-1.3.10-5.p27.ky10.x86_64                                                                                                                  21/66 Verifying        : libaesgm-20090429-21.ky10.x86_64                                                                                                                           22/66 Verifying        : libchewing-0.5.1-17.ky10.x86_64                                                                                                                            23/66 Verifying        : libestr-0.1.11-1.ky10.x86_64                                                                                                                               24/66 Verifying        : libfastjson-0.99.9-1.ky10.x86_64                                                                                                                           25/66 Verifying        : libmng-2.0.3-10.ky10.x86_64                                                                                                                                26/66 Verifying        : libnet-1.2-1.ky10.x86_64                                                                                                                                   27/66 Verifying        : libnice-0.1.14-10.ky10.x86_64                                                                                                                              28/66 Verifying        : librelp-1.2.16-3.ky10.x86_64                                                                                                                               29/66 Verifying        : libtommath-1.0.1-5.ky10.x86_64                                                                                                                             30/66 Verifying        : mariadb-3:10.3.9-12.p01.ky10.x86_64                                                                                                                        31/66 Verifying        : mariadb-common-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 32/66 Verifying        : mariadb-connector-c-3.0.6-8.ky10.x86_64                                                                                                                    33/66 Verifying        : mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64                                                                                                             34/66 Verifying        : mariadb-server-3:10.3.9-12.p01.ky10.x86_64                                                                                                                 35/66 Verifying        : minizip-1.2.11-18.ky10.x86_64                                                                                                                              36/66 Verifying        : net-snmp-1:5.9-4.p01.ky10.x86_64                                                                                                                           37/66 Verifying        : net-snmp-help-1:5.9-4.p01.ky10.noarch                                                                                                                      38/66 Verifying        : perl-DBD-MySQL-4.046-6.ky10.x86_64                                                                                                                         39/66 Verifying        : poly2tri-0.0-19.ky10.x86_64                                                                                                                                40/66 Verifying        : postgresql-libs-10.5-22.ky10.x86_64                                                                                                                        41/66 Verifying        : python2-mysqlclient-1.3.12-8.ky10.x86_64                                                                                                                   42/66 Verifying        : qt-1:4.8.7-47.p04.ky10.x86_64                                                                                                                              43/66 Verifying        : qt5-5.14.2-1.ky10.noarch                                                                                                                                   44/66 Verifying        : qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                                                                                                                   45/66 Verifying        : qt5-qt3d-5.11.1-4.ky10.x86_64                                                                                                                              46/66 Verifying        : qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64                                                                                                                 47/66 Verifying        : qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64                                                                                                            48/66 Verifying        : qt5-qtconnectivity-5.11.1-4.ky10.x86_64                                                                                                                    49/66 Verifying        : qt5-qtdoc-5.11.1-4.ky10.noarch                                                                                                                             50/66 Verifying        : qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64                                                                                                            51/66 Verifying        : qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                                                                                                                52/66 Verifying        : qt5-qtlocation-5.11.1-6.ky10.x86_64                                                                                                                        53/66 Verifying        : qt5-qtmultimedia-5.11.1-6.ky10.x86_64                                                                                                                      54/66 Verifying        : qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                                                                                                                   55/66 Verifying        : qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                                                                                                                  56/66 Verifying        : qt5-qtscript-5.11.1-5.ky10.x86_64                                                                                                                          57/66 Verifying        : qt5-qtsensors-5.11.1-6.ky10.x86_64                                                                                                                         58/66 Verifying        : qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                                                                                                                  59/66 Verifying        : qt5-qtwayland-5.11.1-6.ky10.x86_64                                                                                                                         60/66 Verifying        : qt5-qtwebchannel-5.11.1-5.ky10.x86_64                                                                                                                      61/66 Verifying        : qt5-qtwebsockets-5.11.1-6.ky10.x86_64                                                                                                                      62/66 Verifying        : rsyslog-8.2006.0-7.p01.ky10.x86_64                                                                                                                         63/66 Verifying        : rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                                                                                                                    64/66 Verifying        : security-tool-2.0-1.75.p01.ky10.x86_64                                                                                                                     65/66 Verifying        : unixODBC-2.3.7-3.ky10.x86_64                                                                                                                               66/66 Removed:assimp-3.3.1-19.ky10.x86_64                                  fcitx-4.2.9.1-2.p03.ky10.x86_64                          fcitx-chewing-0.2.3-8.ky10.x86_64                             fcitx-configtool-0.4.10-6.p01.ky10.x86_64                    fcitx-data-4.2.9.1-2.p03.ky10.noarch                     fcitx-gtk2-4.2.9.1-2.p03.ky10.x86_64                          fcitx-gtk3-4.2.9.1-2.p03.ky10.x86_64                         fcitx-libs-4.2.9.1-2.p03.ky10.x86_64                     fcitx-pinyin-4.2.9.1-2.p03.ky10.x86_64                        fcitx-qt5-1.2.4-3.1.ky10.x86_64                              fcitx-qt5-devel-1.2.4-3.1.ky10.x86_64                    firebird-3.0.3.32900-9.p02.ky10.x86_64                        freetds-1.00.38-8.ky10.x86_64                                gsm-1.0.18-4.ky10.x86_64                                 gstreamer1-plugins-bad-free-1.16.2-2.ky10.x86_64              ipmitool-1.8.18-15.ky10.x86_64                               ipmitool-help-1.8.18-15.ky10.noarch                      irrlicht-1.8.4-11.ky10.x86_64                                 kf5-filesystem-5.59.0-1.1.ky10.x86_64                        kf5-kwindowsystem-5.55.0-1.p01.ky10.x86_64               kylin-activation-1.3.10-5.p27.ky10.x86_64                     libaesgm-20090429-21.ky10.x86_64                             libchewing-0.5.1-17.ky10.x86_64                          libestr-0.1.11-1.ky10.x86_64                                  libfastjson-0.99.9-1.ky10.x86_64                             libmng-2.0.3-10.ky10.x86_64                              libnet-1.2-1.ky10.x86_64                                      libnice-0.1.14-10.ky10.x86_64                                librelp-1.2.16-3.ky10.x86_64                             libtommath-1.0.1-5.ky10.x86_64                                mariadb-3:10.3.9-12.p01.ky10.x86_64                          mariadb-common-3:10.3.9-12.p01.ky10.x86_64               mariadb-connector-c-3.0.6-8.ky10.x86_64                       mariadb-errmessage-3:10.3.9-12.p01.ky10.x86_64               mariadb-server-3:10.3.9-12.p01.ky10.x86_64               minizip-1.2.11-18.ky10.x86_64                                 net-snmp-1:5.9-4.p01.ky10.x86_64                             net-snmp-help-1:5.9-4.p01.ky10.noarch                    perl-DBD-MySQL-4.046-6.ky10.x86_64                            poly2tri-0.0-19.ky10.x86_64                                  postgresql-libs-10.5-22.ky10.x86_64                      python2-mysqlclient-1.3.12-8.ky10.x86_64                      qt-1:4.8.7-47.p04.ky10.x86_64                                qt5-5.14.2-1.ky10.noarch                                 qt5-qdbusviewer-5.11.1-5.p03.ky10.x86_64                      qt5-qt3d-5.11.1-4.ky10.x86_64                                qt5-qtbase-mysql-5.11.1-13.p01.ky10.x86_64               qt5-qtbase-postgresql-5.11.1-13.p01.ky10.x86_64               qt5-qtconnectivity-5.11.1-4.ky10.x86_64                      qt5-qtdoc-5.11.1-4.ky10.noarch                           qt5-qtgraphicaleffects-5.11.1-5.p01.ky10.x86_64               qt5-qtimageformats-5.11.1-6.p01.ky10.x86_64                  qt5-qtlocation-5.11.1-6.ky10.x86_64                      qt5-qtmultimedia-5.11.1-6.ky10.x86_64                         qt5-qtquickcontrols-5.11.1-5.ky10.x86_64                     qt5-qtquickcontrols2-5.11.1-4.ky10.x86_64                qt5-qtscript-5.11.1-5.ky10.x86_64                             qt5-qtsensors-5.11.1-6.ky10.x86_64                           qt5-qtserialport-5.11.1-5.p01.ky10.x86_64                qt5-qtwayland-5.11.1-6.ky10.x86_64                            qt5-qtwebchannel-5.11.1-5.ky10.x86_64                        qt5-qtwebsockets-5.11.1-6.ky10.x86_64                    rsyslog-8.2006.0-7.p01.ky10.x86_64                            rsyslog-relp-8.2006.0-7.p01.ky10.x86_64                      security-tool-2.0-1.75.p01.ky10.x86_64                   unixODBC-2.3.7-3.ky10.x86_64                                  Complete!
[root@localhost ~]# 

验证卸载Mariadb成功

yum list --installed mariadb*
rpm -qa|grep -i mariadb*

在这里插入图片描述

查看Mariadb配置文件和目录是否还存在 已经不存在了

ls -l /etc/my.cnf
ls -l /etc/my.cnf.d

在这里插入图片描述

至此mariadb卸载完成

3.2.1.2、下载Mysql安装包

访问官网下载链接 链接: https://dev.mysql.com/downloads/mysql/

选择如下 点击下载按钮 下载安装包

在这里插入图片描述

选择 mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar 点击下载

在这里插入图片描述

为什么选择redhat 8的操作系统版本呢?
https://www.kylinos.cn/about/news/814.html
通过查询麒麟官网得知,银河麒麟高级服务器操作系统是兼容centos8的,centos8和redhat8兼容。

在这里插入图片描述

3.2.1.3、安装Mysql 8.35

官方安装文档
链接: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/linux-installation-rpm.html

RPM Packages for MySQL Community Edition

Package NameSummary
mysql-community-clientMySQL client applications and tools
mysql-community-client-pluginsShared plugins for MySQL client applications
mysql-community-commonCommon files for server and client libraries
mysql-community-develDevelopment header files and libraries for MySQL database client applications
mysql-community-embedded-compatMySQL server as an embedded library with compatibility for applications using version 18 of the library
mysql-community-icu-data-filesMySQL packaging of ICU data files needed by MySQL regular expressions
mysql-community-libsShared libraries for MySQL database client applications
mysql-community-libs-compatShared compatibility libraries for previous MySQL installations; only present if previous MySQL versions are supported by the platform
mysql-community-serverDatabase server and related tools
mysql-community-server-debugDebug server and plugin binaries
mysql-community-testTest suite for the MySQL server
mysql-communityThe source code RPM looks similar to mysql-community-8.0.35-1.el7.src.rpm, depending on selected OS
Additional debuginfo RPMsThere are several debuginfo packages: mysql-community-client-debuginfo, mysql-community-libs-debuginfo mysql-community-server-debug-debuginfo mysql-community-server-debuginfo, and mysql-community-test-debuginfo.

rpm包的名称格式:packagename-version-distribution-arch.rpm

安装步骤如下
创建Mysql安装包目录

mkdir -p /root/package/mysql

上传Mysql安装包mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar 到/root/package/mysql 目录下

cd /root/package/mysql
mkdir mysql-8.0.35-1.el8.x86_64.rpm-bundle
tar -xvf mysql-8.0.35-1.el8.x86_64.rpm-bundle.tar -C mysql-8.0.35-1.el8.x86_64.rpm-bundle/ 
cd mysql-8.0.35-1.el8.x86_64.rpm-bundle/

只需要安装以下软件包即可
In most cases, you need to install the mysql-community-server, mysql-community-client, mysql-community-client-plugins, mysql-community-libs, mysql-community-icu-data-files, mysql-community-common, and mysql-community-libs-compat packages to get a functional, standard MySQL installation. To perform such a standard, basic installation, go to the folder that contains all those packages (and, preferably, no other RPM packages with similar names), and issue the following command:

意思是说这个软件包目录下只包含有上面提到的这几个包即可,不能有其他的包,因此把其他的包删除掉。只保留
mysql-community-server, mysql-community-client, mysql-community-client-plugins, mysql-community-libs, mysql-community-icu-data-files, mysql-community-common, and mysql-community-libs-compat

在这里插入图片描述

rm -f mysql-community-server-debug*
rm -f mysql-community-debug*
rm -f mysql-community-client-debuginfo-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-test-*
rm -f mysql-community-client-plugins-debuginfo-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-devel-8.0.35-1.el8.x86_64.rpm
rm -f mysql-community-libs-debuginfo-8.0.35-1.el8.x86_64.rpm

在这里插入图片描述

安装mysql前,操作系统上没有默认的mysql根目录/var/lib/mysql、mysql配置文件/etc/my.cnf

在这里插入图片描述

yum install mysql-community-{server,client,client-plugins,icu-data-files,common,libs}-*

安装完成如图所示

在这里插入图片描述

查看安装的mysql包

yum list --installed |grep -i mysql
rpm -qa|grep -i mysql

在这里插入图片描述

安装完成后,会形成以下文件和目录(执行安装命令后才会形成以下文件和目录)
安装mysql后为什么就会形成以下文件和目录呢?
这是因为所谓的安装mysql,安装mysql这个动作所做的操作是:把mysql安装包中的文件目录结构复制到安装mysql的操作系统上,仅此而已。mysql安装包里面本就有以下这些文件和目录。

Files or ResourcesLocation
Files or ResourcesLocation
Client programs and scripts/usr/bin
mysqld server/usr/sbin
Configuration file/etc/my.cnf
Data directory/var/lib/mysql
Error log fileFor RHEL, Oracle Linux, CentOS or Fedora platforms: /var/log/mysqld.log
Value of secure_file_priv/var/lib/mysql-files
System V init scriptFor RHEL, Oracle Linux, CentOS or Fedora platforms: /etc/init.d/mysqld
Systemd serviceFor RHEL, Oracle Linux, CentOS or Fedora platforms: mysqld
Pid file/var/run/mysqld/mysqld.pid
Socket/var/lib/mysql/mysql.sock
Keyring directory/var/lib/mysql-keyring
Unix manual pages/usr/share/man
Include (header) files/usr/include/mysql
Libraries/usr/lib64/mysql
Miscellaneous support files (for example, error messages, and character set files)/usr/share/mysql

安装完后 也会产生一个名为mysql 的系统用户,和一个名为mysql 的系统用户组。
在这里插入图片描述
至此安装Mysql 8.35完成。
如果在安装过程中出现问题,您可能会在错误日志文件/var/log/mysqld.log中找到日志信息。
安装成功的情况下 /var/log/mysqld.log是空的

如果需要切换到Mysql用户 使用如下命令

su - mysql --shell=/bin/bash

下面这项是可选的 看调试信息才需要这样启动Mysql,一般不需要。

Debug Package.  A special variant of MySQL Server compiled with the debug package has been included in the server RPM packages. It performs debugging and memory allocation checks and produces a trace file when the server is running. To use that debug version, start MySQL with /usr/sbin/mysqld-debug, instead of starting it as a service or with /usr/sbin/mysqld. See The DBUG Package for the debug options you can use.

查看安装mysql后形成的目录和文件以及默认的配置文件

1、Client programs and scripts

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/bin目录下的东西
和mysql安装包mysql-community-client-8.0.35-1.el8.x86_64.rpm里面的/usr/bin目录下的东西

在这里插入图片描述

在这里插入图片描述

2、mysqld server

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的东西

在这里插入图片描述

3、Configuration file

在这里插入图片描述

安装mysql后为什么就会创建mysql的配置文件/etc/my.cnf呢?
这是因为mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm,这个包里面的目录结构如下

在这里插入图片描述

在这里插入图片描述

所谓的安装mysql,安装mysql这个动作所做的操作是:把mysql安装包中的文件目录结构复制到安装mysql的操作系统上,仅此而已。

4、Data directory
安装mysql后,mysql根目录/var/lib/msyql里面是空的。说明此时还没有初始化mysql,仅仅是安装完成了mysql而已。
在这里插入图片描述

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql文件夹

在这里插入图片描述

5、Error log file

在这里插入图片描述

/var/log/mysqld.log不是从mysql安装包拷贝的,是安装mysql时在操作系统上新建的这个文件,看这个文件的日期就是安装mysql的日期,和其他文件夹比如mysql根目录/var/lib/mysql、/var/lib/mysql-files的日期是不一样的。

6、Value of secure_file_priv

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql-files文件夹

在这里插入图片描述

7、System V init script

在这里插入图片描述

安装包里没有这个文件夹,也可能因为此次安装Mysql使用的是银河麒麟高级服务器操作系统v10 sp3,属于systemd系列的操作系统,所以并没有创建system v的启动脚本吧。不深究了,不影响。

8、Systemd service

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/usrl/ib/systemd/system文件夹下的mysqld.service文件。

在这里插入图片描述

9、Pid file

在这里插入图片描述

mysql还没有启动,所以没有mysql的pid文件。

10、Socket

在这里插入图片描述

mysql还没有启动,所以没有mysql的socket文件。

11、Keyring directory

在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/sbin目录下的/var/lib/mysql-keyring文件夹

在这里插入图片描述

12、Unix manual pages

/usr/share/man

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/share/man目录下的东西
对应mysql安装包mysql-community-client-8.0.35-1.el8.x86_64.rpm里面的/usr/shar/man文件夹

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

在这里插入图片描述

13、Include (header) files

在这里插入图片描述

14、Libraries
在这里插入图片描述

对应mysql安装包mysql-community-server-8.0.35-1.el8.x86_64.rpm里面的/usr/lib64目录下的东西

在这里插入图片描述

在这里插入图片描述

15、Miscellaneous support files (for example, error messages, and character set files)、

在这里插入图片描述

3.2.1.4、启动mysql 8.0.35

对于使用rpm包或deb包安装mysql的,启动mysql时就会执行初始化。本文是用rpm包安装的mysql,因此启动mysql服务就会初始化mysql。
安装后默认不会启动Mysql服务

在这里插入图片描述

然后初始化mysql,使用rpm包或deb包安装mysql的,启动mysql时就会执行初始化。本文是用rpm包安装的mysql,因此启动mysql服务即可。

注意启动mysql服务前/var/lib/mysql下是空的

在这里插入图片描述

启动mysql命令

systemctl start mysqld.service

此启动mysql命令做下面这些事情

  1. 初始化mysql服务
    检查有没有mysql根目录存在,如果没有mysql根目录存在,则创建mysql根目录。然后在mysql根目录下创建mysql的系统数据库:默认的系统数据库:mysql、sys、performance_schema、information_schema。
  2. 产生ssl证书和密钥在Mysql根目录下
  3. validate_password默认安装。validate_password实现的默认密码策略要求密码至少包含一个大写字母、一个小写字母、一位数字和一个特殊字符,并且密码总长度至少为8个字符。
  4. 已创建超级用户帐户“root”@“localhost”。超级用户的密码已设置并存储在错误日志文件中。查看mysql的root账户默认密码 grep 'temporary password' /var/log/mysqld.log

1、查看数据目录
启动mysql服务前/var/lib/mysql下是空的
启动mysql服务后/var/lib/mysql 文件夹的大小是192M。(里面包含了初始化mysql时形成的mysql系统数据库以及密钥文件等)

在这里插入图片描述

2、证书在数据目录下

在这里插入图片描述

3、查看 超级用户帐户“root”@“localhost” 的默认密码 9lE,%p=rlZz2

grep 'temporary password' /var/log/mysqld.log

在这里插入图片描述

4、启动Mysql后 会形成sock文件和pid文件

ls -lh /var/lib/mysql/mysql.sock
ls -lh /var/run/mysqld/mysqld.pid
cat /var/run/mysqld/mysqld.pid

在这里插入图片描述

安装mysql后默认是监听在“:::3306”上的,这个表示ipv6监听,同时也包含了ipv4,也就说,ipv6和ipv4都支持访问mysql。

在这里插入图片描述

停止mysql服务后 sock文件和pid文件都消失了

ls -lh /var/lib/mysql/mysql.sock
ls -lh /var/run/mysqld/mysqld.pid
cat /var/run/mysqld/mysqld.pid

在这里插入图片描述

开启mysql服务后 sock文件和pid文件重新生成了 只不过pid文件的数值不同了。

ls -lh /var/lib/mysql/mysql.sock
ls -lh /var/run/mysqld/mysqld.pid
cat /var/run/mysqld/mysqld.pid

在这里插入图片描述

5、查看启动日志
下面是第一次启动mysql服务的日志 含有初始化日志:[System] [MY-013169] [Server] /usr/sbin/mysqld (mysqld 8.0.35) initializing of server in progress as process 10985

在这里插入图片描述

初始化后停止mysql服务,再次开启mysql服务就不会有初始化日志了,只会有启动日志。

在这里插入图片描述

3.2.1.5、安装后配置

链接: https://dev.mysql.com/doc/mysql-installation-excerpt/8.0/en/postinstallation.html

使用安装Mysql数据库 时生成的默认密码登录mysql数据库

mysql -uroot -p

没修改默认密码前不能进行数据库sql操作

show databases;

在这里插入图片描述

修改Mysql默认密码为Mysql@123

mysql> ALTER USER 'root'@'localhost' IDENTIFIED BY 'Mysql@123' PASSWORD EXPIRE NEVER;
Query OK, 0 rows affected (0.01 sec)mysql>
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)mysql> 
mysql> use mysql;
Database changed
mysql> 
mysql> update user set host = "%" where user = "root";
Query OK, 0 rows affected (0.00 sec)
Rows matched: 1  Changed: 0  Warnings: 0mysql> 
mysql> flush privileges;
Query OK, 0 rows affected (0.00 sec)mysql> 
mysql> ALTER USER 'root'@'%' IDENTIFIED WITH mysql_native_password BY 'Mysql@123';
Query OK, 0 rows affected (0.01 sec)mysql> 
mysql> flush privileges;
Query OK, 0 rows affected (0.01 sec)mysql> 

修改密码后即可成功执行数据库sql命令

在这里插入图片描述

使用新密码登录mysql数据库

在这里插入图片描述

3.2.2、默认根目录安装mysql后,创建mysql数据表一段时间后发现mysql根目录空间不够、需要迁移根目录

3.2.2.1、创建mysql数据

下面创建mysql数据表,为了快速创建,直接从其他数据库中备份的sql文件恢复到mysql容器中。
创建mysql数据表前查看mysql根目录占用空间 占用了192M,因此mysql服务根目录一定要大,或者能够动态扩容才行,不然很快就会因为mysql数据表占用空间增大导致mysql根目录增大,最终导致mysql根目录所在宿主机的分区爆满、最终操作系统崩溃。

查看mysq配置文件/etc/my.cnf发现mysql根目录是/var/lib/mysql

cat /etc/my.cnf|grep -i dir

在这里插入图片描述

直接从其他数据库中备份的sql文件恢复到mysql中

在这里插入图片描述

source /root/8.0.24AllDatabasesBackup.sql;

在这里插入图片描述

恢复mysql数据完成

在这里插入图片描述

恢复mysql数据后,再次查看mysql数据库如下

show databases;
use kgc;
select table_name,table_comment,create_time from information_schema.TABLES where table_schema='kgc';
select * from banji;

在这里插入图片描述

恢复mysql数据完成后再次查看mysql根目录占用空间,占用从192M增加到了336M。这是因为恢复的数据库表占用了空间。

在这里插入图片描述

恢复mysql数据前查看mysql根目录占用空间,是192M。

在这里插入图片描述

很快随着mysql数据量增多,就会导致mysql根目录的增大,最终导致mysql根目录所在的分区磁盘占用爆满,操作系统崩溃。怎么解决这个问题呢?只需迁移mysql根目录到一个比较大的分区即可或者迁移mysql根目录到一个可以动态扩展的分区,通常二者都要,把mysql根目录迁移到一个空间比较大的而且可以动态扩容的分区即可。

3.2.3、配置新的mysql根目录、迁移mysql根目录数据到新的根目录

停止mysql服务

systemctl stop mysqld.service

建立新的mysql根目录,执行命令df -h,找一个大的磁盘。这里指定的mysql新的根目录是/home/mysql

mkdir -p /home/mysql

在这里插入图片描述

迁移/var/lib/mysql目录下面的文件到 新的mysql根目录/home/mysql

rm -rf /home/mysql
cp -r /var/lib/mysql /home/mysql

更改迁移后mysql根目录属主为mysql:mysql,因为cp -r /var/lib/mysql /home/mysql之后,/home/mysql的属主是root:root。

chown -R mysql:mysql /home/mysql/

在这里插入图片描述

在这里插入图片描述

编辑mysql配置文件/etc/my.cnf 指定mysql根目录是/home/mysql

cp /etc/my.cnf /etc/my.cnf.bak
vi /etc/my.cnf

修改datadir和socket参数
修改前

在这里插入图片描述

修改后

在这里插入图片描述

然后启动mysql服务

systemctl start mysqld.service

检查mysql新的根目录是否配置成功
查看mysql启动日志 可以看到启动日志中的mysql socket文件是 /home/mysql/mysql.sock 说明mysql已经使用了新的mysql配置。

cat /var/log/mysqld.log

在这里插入图片描述

启动mysql服务成功后,确认迁移mysql根目录之前的数据库数据还在不

mysql -uroot -p

报错:ERROR 2002 (HY000): Can’t connect to local MySQL server through socket ‘/var/lib/mysql/mysql.sock’ (2)

在这里插入图片描述

配置文件已经指定了socket=/home/mysql/mysql.sock 不知道为什么mysql还是去找默认的socket文件/var/lib/mysql/mysql.sock

socket=/home/mysql/mysql.sock

在这里插入图片描述

在登录mysql时使用-S参数手动指定正确的socket文件即可

mysql -uroot -p -S /home/mysql/mysql.sock

在这里插入图片描述

这个问题可以通过 创建一个软连接文件名为/var/lib/mysql/mysql.sock 连接到 迁移目录后新的mysql.sock文件,这样之后登录mysql时就不用添加-S参数了。

ln -s /home/mysql/mysql.sock /var/lib/mysql/mysql.sock

迁移mysql根目录后,再次查看mysql数据库如下,确认和迁移根目录前的mysql数据库数据是否一致

show databases;
use kgc;
select table_name,table_comment,create_time from information_schema.TABLES where table_schema='kgc';
select * from banji;

在这里插入图片描述

3.2.4、重要!迁移mysql根目录后 确认mysql服务正常

3.2.4.1、迁移mysql根目录后,检查mysql启动日志是否正常
cat /var/log/mysqld.log

如下mysql启动日志无报错即为正常。
在这里插入图片描述

3.2.4.2、执行mysql服务检测,确认mysql服务的接口调用是否正常

进入mysql 查看数据库表和迁移mysql根目录之前是否一致

查询banji表的数据 和迁移mysql根目录之前的数据是一样的。说明mysql内部服务没问题。

在这里插入图片描述

3.2.4.3、创建新的数据库,确认迁移mysql根目录后 新的mysql根目录下是否会出现和这个数据库同名的文件夹

如果创建test数据库后,查看新的mysql根目录下有test文件夹,说明mysql正在使用新的根目录/home/mysql作为数据目录,说明迁移mysql根目录成功了。

创建test数据库前,查看新的mysql根目录下没有test文件夹

ls -l /home/mysql/test

在这里插入图片描述

创建test数据库

create database test default character set utf8mb4;

在这里插入图片描述

查看新的mysql根目录下有test文件夹,说明mysql正在使用新的根目录/home/mysql作为数据目录。

ls -l /home/mysql/test

在这里插入图片描述

以上确认均没问题,至此,本次mysql根目录迁移完成。

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.rhkb.cn/news/319721.html

如若内容造成侵权/违法违规/事实不符,请联系长河编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

jupyter notebook使用与本地位置设置

本地安装好Anaconda之后,自带的有Jupter notebook。 使用jupyter notebook 使用jupyter notebook时,可以直接打开或者搜索打开: 打开后,我们生成的或者编辑的一些文件,都可以看到,如下: j…

学习STM32第二十天

低功耗编程 一、修改主频 STM32F4xx系列主频为168MHz,当板载8MHz晶振时,系统时钟HCLK满足公式 H C L K H S E P L L N P L L M P L L P HCLK \frac{HSE \times PLLN}{PLLM \times PLLP} HCLKPLLMPLLPHSEPLLN​,在文件stm32f4xx.h中可修…

uniapp 自定义相机插件(组件版、缩放、裁剪)组件 Ba-CameraView

自定义相机插件(组件版、缩放、裁剪) Ba-CameraView 简介(下载地址) Ba-CameraView 是一款自定义相机拍照组件,支持任意界面,支持裁剪 支持任意自定义界面支持手势缩放支持裁剪(手势拖动、比…

R语言中,查看经安装的包,查看已经加载的包,查看特定包是否已经安装,安装包,更新包,卸载包

创建于:2024.5.4 R语言中,查看经安装的包,查看已经加载的包,查看特定包是否已经安装,安装包,更新包,卸载包 文章目录 1. 查看经安装的包2. 查看已经加载的包3. 查看特定包是否已经安装4. 安装包…

【Cpp】类和对象#拷贝构造 赋值重载

标题:【Cpp】类和对象#拷贝构造 赋值重载 水墨不写bug 目录 (一)拷贝构造 (二)赋值重载 (三)浅拷贝与深拷贝 正文开始: (一)拷贝构造 拷贝构造函数&…

上位机开发PyQt(五)【Qt Designer】

PyQt5提供了一个可视化图形工具Qt Designer,文件名为designer.exe。如果在电脑上找不到,可以用如下命令进行安装: pip install PyQt5-tools 安装完毕后,可在如下目录找到此工具软件: %LOCALAPPDATA%\Programs\Python\…

Excel 批量获取sheet页名称,并创建超链接指向对应sheet页

参考资料 用GET.WORKBOOK函数实现excel批量生成带超链接目录且自动更新 目录 一. 需求二. 名称管理器 → 自定义获取sheet页名称函数三. 配合Index函数,获取所有的sheet页名称四. 添加超链接,指向对应的sheet页 一. 需求 ⏹有如下Excel表,需…

EPAI手绘建模APP资源管理和模型编辑器2

g) 矩形 图 26模型编辑器-矩形 i. 修改矩形的中心位置。 ii. 修改矩形的长度和宽度。 h) 正多边形 图 27模型编辑器-内接正多边形 图 28模型编辑器-外切正多边形 i. 修改正多边形的中心位置。 ii. 修改正多边形中心距离端点的长度。 iii. 修改正多边形的阶数。阶数为3&…

Day30:热帖排行、生成长图、将文件上传到云服务器、优化热门帖子列表、压力测试

热帖排行 不同的算分方式: 只存变化的帖子到redis中,每五分钟算一次分,定时任务 存redis 构建redis键 //统计帖子分数 //key:post:score -> value:postId public static String getPostScoreKey() {return PREFIX_POST SPLIT "…

练习题(2024/5/5)

1左叶子之和 给定二叉树的根节点 root ,返回所有左叶子之和。 示例 1: 输入: root [3,9,20,null,null,15,7] 输出: 24 解释: 在这个二叉树中,有两个左叶子,分别是 9 和 15,所以返回 24示例 2: 输入: root [1] 输…

LeetCode 131 —— 分割回文串

阅读目录 1. 题目2. 解题思路3. 代码实现 1. 题目 2. 解题思路 首先,按照 LeetCode 5——最长回文子串 中的思路,我们先求出 d p dp dp,这样我们就知道了所有的子串是否是回文子串。 然后,我们进行一个 dfs 搜索,起…

5月4(信息差)

🎄 HDMI ARC国产双精度浮点dsp杜比数码7.1声道解码AC3/dts/AAC环绕声光纤、同轴、USB输入解码板KC33C 🌍 国铁集团回应高铁票价将上涨 https://finance.eastmoney.com/a/202405043066422773.html ✨ 源代码管理平台GitLab发布人工智能编程助手DuoCha…

AI大模型探索之路-训练篇11:大语言模型Transformer库-Model组件实践

系列篇章💥 AI大模型探索之路-训练篇1:大语言模型微调基础认知 AI大模型探索之路-训练篇2:大语言模型预训练基础认知 AI大模型探索之路-训练篇3:大语言模型全景解读 AI大模型探索之路-训练篇4:大语言模型训练数据集概…

QT5带UI的常用控件

目录 新建工程,Qmainwindow带UI UI设计器 常用控件区 Buttons 按钮 containers 容器 控件属性区域 对象监视区 布局工具区 信号与槽区 简单例子1 放置一个按钮控件,改文本为发送,该按键为Button1; 按钮关联信号和…

Redisson 分布式锁和同步器

系列文章目录 文章目录 系列文章目录前言前言 前些天发现了一个巨牛的人工智能学习网站,通俗易懂,风趣幽默,忍不住分享一下给大家。点击跳转到网站,这篇文章男女通用,看懂了就去分享给你的码吧。 redisson 是基于redis的扩展库,使得redis除了应用于缓存以外,还能做队列…

golang学习笔记(内存模型和分配机制)

操作系统的存储管理 虚拟内存管理 虚拟内存是一种内存管理技术,它允许操作系统为每个进程提供一个比实际物理内存更大的地址空间。这个地址空间被称为虚拟地址空间,而实际的物理内存则被称为物理地址空间。使用虚拟内存有以下几点好处: 内…

【机器学习-21】集成学习---Bagging之随机森林(RF)

【机器学习】集成学习---Bagging之随机森林(RF) 一、引言1. 简要介绍集成学习的概念及其在机器学习领域的重要性。2. 引出随机森林作为Bagging算法的一个典型应用。 二、随机森林原理1. Bagging算法的基本思想2. 随机森林的构造3. 随机森林的工作机制 三…

JVM的垃圾回收机制(GC机制)

在Java代码运行的过程中,JVM发现 某些资源不需要再使用的时候,就会自动把资源所占的内存给回收掉,就不需要程序员自行操作了。“自动回收资源”就是JVM的“垃圾回收机制”,“垃圾回收机制”也称"GC机制"。 对于Java代码…

【论文笔记】Training language models to follow instructions with human feedback A部分

Training language models to follow instructions with human feedback A 部分 回顾一下第一代 GPT-1 : 设计思路是 “海量无标记文本进行无监督预训练少量有标签文本有监督微调” 范式;模型架构是基于 Transformer 的叠加解码器(掩码自注意…

OceanBase开发者大会实录-杨传辉:携手开发者打造一体化数据库

本文来自2024 OceanBase开发者大会,OceanBase CTO 杨传辉的演讲实录—《携手开发者打造一体化数据库》。完整视频回看,请点击这里>> 各位 OceanBase 的开发者,大家上午好!今天非常高兴能够在上海与大家再次相聚&…