mysql 指定根目录 迁移根目录

embedded/2024/11/26 13:39:57/

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、正常安装mysqlmysql根目录是/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、解决方法

mysqlmysqlmysql_38">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)、

在这里插入图片描述

mysql_8035_710">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根目录是很重要的。

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

mysql_mysqlvarlibmysql_890">3.2.1、正常安装mysqlmysql根目录是/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/mysqlmysql配置文件/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)、

在这里插入图片描述

mysql_8035_1521">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数据库

在这里插入图片描述

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

mysql_1655">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根目录迁移到一个空间比较大的而且可以动态扩容的分区即可。

mysqlmysql_1703">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;

在这里插入图片描述

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

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

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

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

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

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

在这里插入图片描述

mysql_mysql_1815">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.ppmy.cn/embedded/34066.html

相关文章

设计模式之拦截过滤器模式

想象一下,在你的Java应用里,每个请求就像一场冒险旅程,途中需要经过层层安检和特殊处理。这时候,拦截过滤器模式就化身为你最可靠的特工团队,悄无声息地为每一个请求保驾护航,确保它们安全、高效地到达目的…

【微服务】分布式事务(通过Seata解决分布式事务问题)

分布式事务 分布式事务Seata微服务集成SeataXA模式XA模式使用 AT模式AT模式实现 分布式事务 在分布式系统中,如果一个业务需要多个服务合作完成,而且每一个服务都有事务,多个事务必须同时成功或失败,这样的事务就是分布式事务&am…

亚马逊AWS优秀免费证书分享-云计算从业者(含题库)

亚马逊云AWS官方的程序员专属免费证书又来了!这次证书是关于AWS云计算基础概念,以及AWS当下最热门服务如EC2、S3、Lambda、RDS等,强推没有任何AWS背景以及转码的小伙伴去学!学完也能变成AWS开发大神! 证书名字叫AWS Ed…

SpringMVC的WebMvcConfigurer及返回

由于很久很久没有做过纯springmvc的代码了,好多东西都遗忘,最近接手了一个古早项目springmvc的。记录一下: 1、WebMvcConfigurer 是 Spring Framework 中的一个接口,它提供了一种扩展 Spring MVC 配置的方式。通过实现 WebMvcConf…

【可实战】被测需求理解(需求文档是啥样的、从哪些角度进行需求评审、需求分析需要分析出哪些内容、如何提高需求分析能力)

产品人员会产出一个需求文档,然后组织一个需求的宣讲。测试人员的任务就是在需求宣讲当中,分析需求有没有存在一些问题,然后在需求宣讲结束之后通过分析需求文档,分析里面的测试点并预估一个排期。 一、需求文档是什么样的&#x…

flink 入门学习 wordcount

概述: Apache Flink 是一个流处理和批处理的开源框架,用于处理无界和有界数据流。如果你想要使用 Flink 来统计文本中文字的数量(例如,字符数、单词数或行数),你可以通过 Flink 的 DataSet API&#xff08…

linux手动安装es

docker下载 docker pull elasticsearch:7.9.3 docker pull kibana:7.9.3检查安装目录下存在文件夹/data/elasticsearch/data ,如果缺少,请创建目录并设置权限,否则会因为无权限访问而启动失败。 # 创建目录 mkdir /data/elasticsearch/data…

ES集群数据备份与迁移

提示:文章写完后,目录可以自动生成,如何生成可参考右边的帮助文档 文章目录 前言一、文章涉及概念讲解二、操作步骤1.创建 snapshot repository操作主机hadoop1分别操作从机hadoop2和hadoop3 2. 查看仓库信息3. 备份索引,生成快照…