datadir更改后启动mysql/mariaDB服务

datadir更改后启动mysql/mariaDB服务

我安装了 mariadb 服务器并创建了一个 root 用户,密码为

sudo apt install mariadb-server
sudo mysql_secure_installation

由于我使用 Rasperri Pi,我想将数据库交换到外部硬盘。为此我采取了本教程

我更改了 cnf 文件(全部位于 /etc/mysql/mariadb.conf/ 下以及 /etc/mysql 下的 debian.cnf 文件)后,启动 mysql 服务失败:

 $ sudo service mysql start
Job for mariadb.service failed because the control process exited with error code.
See "systemctl status mariadb.service" and "journalctl -xe" for details.

日志显示无法创建测试文件:

$systemctl status mariadb.service
Okt 30 22:56:31 raspberrypitouch systemd[1]: Starting MariaDB 10.3.31 database server...
Okt 30 22:56:31 raspberrypitouch mysqld[4694]: 2021-10-30 22:56:31 0 [Note] /usr/sbin/mysqld (mysqld 10.3.31-MariaDB-0+deb10u1) starting as process 4694 ...
Okt 30 22:56:31 raspberrypitouch mysqld[4694]: 2021-10-30 22:56:31 0 [Warning] Can't create test file /media/pi/DBDRIVE/MariaDB/raspberrypitouch.lower-test
Okt 30 22:56:31 raspberrypitouch mysqld[4694]: [101B blob data]
Okt 30 22:56:31 raspberrypitouch mysqld[4694]: 2021-10-30 22:56:31 0 [ERROR] Aborting
Okt 30 22:56:31 raspberrypitouch systemd[1]: mariadb.service: Main process exited, code=exited, status=1/FAILURE
Okt 30 22:56:31 raspberrypitouch systemd[1]: mariadb.service: Failed with result 'exit-code'.
Okt 30 22:56:31 raspberrypitouch systemd[1]: Failed to start MariaDB 10.3.31 database server.

经过多方查找,我发现并排除了以下可能的原因:

  1. 装备SELinux正在阻止对新目录的访问 -> 它们未安装

    getenforce
    -bash: getenforce: command not found
    

    aa-status
    
    -bash: aa-status: command not found
    
  2. 打字错误

    我已经复制了所有路径,拼写错误将是一个非常糟糕的理由,让你忙两天

  3. 丢失的 权限

    我已经复制了这个,所以权限应该是正确的:cp -R -p /var/lib/mysql/* /media/pi/DBDRIVE/MariaDB/

    父文件夹

    /media/pi/DBDRIVE $ ls -l
    total 20
    drwx------ 2 mysql mysql 16384 Oct 29 12:25 lost+found
    drwxrwxrwx 6 mysql mysql  4096 Oct 30 23:07 MariaDB
    

    db 文件夹本身

    /media/pi/DBDRIVE/MariaDB $ ls -l
    
    total 110632
    
    -rw-rw---- 1 mysql mysql    16384 Oct 30 15:30 aria_log.00000001
    -rw-rw---- 1 mysql mysql       52 Oct 30 15:30 aria_log_control
    -rw-r--r-- 1 root  root         0 Oct 30 13:02 debian-10.3.flag
    -rw-rw---- 1 mysql mysql      976 Oct 30 15:30 ib_buffer_pool
    -rw-rw---- 1 mysql mysql 12582912 Oct 30 15:30 ibdata1
    -rw-rw---- 1 mysql mysql 50331648 Oct 30 15:30 ib_logfile0
    -rw-rw---- 1 mysql mysql 50331648 Oct 30 13:02 ib_logfile1
    -rw-rw---- 1 mysql mysql        0 Oct 30 13:02 multi-master.info
    drwx------ 2 mysql mysql     4096 Oct 30 13:02 mysql
    drwxrwxrwx 2 mysql mysql     4096 Oct 30 17:50 mysqld
    drwx------ 2 mysql mysql     4096 Oct 30 13:02 performance_schema
    drwx------ 2 mysql mysql     4096 Oct 30 15:12 testDB
    

    驱动器

    /media/pi/DBDRIVE $ ls -l
    total 20
    drwx------ 2 mysql mysql 16384 Oct 29 12:25 lost+found
    drwxrwxrwx 7 mysql mysql  4096 Oct 30 23:58 MariaDB
    

    圆周率

    /media/pi $ ls -l
    total 4
    drwxr-xr-x 4 mysql mysql 4096 Oct 30 16:53 DBDRIVE
    

    媒体

    /media $ ls -l
    total 4
    drwxr-x---+ 3 root root 4096 Oct 31 01:42 pi
    
  4. 格式错误 用于外部驱动器

    df -Th
    Filesystem     Type      Size  Used Avail Use% Mounted on
    
    /dev/root      ext4       29G  3.8G   25G  14% /
    devtmpfs       devtmpfs  776M     0  776M   0% /dev
    tmpfs          tmpfs     937M     0  937M   0% /dev/shm
    tmpfs          tmpfs     937M  8.6M  928M   1% /run
    tmpfs          tmpfs     5.0M  4.0K  5.0M   1% /run/lock
    tmpfs          tmpfs     937M     0  937M   0% /sys/fs/cgroup
    /dev/mmcblk0p1 vfat      253M   49M  204M  20% /boot
    tmpfs          tmpfs     188M  4.0K  188M   1% /run/user/1000
    /dev/sda       ext4      916G  186M  870G   1% /media/pi/DBDRIVE
    
  5. 错误 在一个 .cnf 文件

    这里基本上是相同的情况,但解决方案对我不起作用

正确方向的每一个提示都会受到赞赏

为什么我无法启动服务?

答案1

正如评论中指出的,可以通过运行手动重现该问题sudo -u mysql touch /media/pi/DBDRIVE/MariaDB/raspberrypitouch.lower-test。这导致了“权限被拒绝”错误。

由于问题表明“MariaDB”目录完全由“mysql”用户拥有,因此问题很可能出在父目录之一 -“/media”、“/media/pi”和“/media/” pi/DBDRIVE'。这些目录至少需要执行权限(对于所有用户),以便“mysql”用户可以访问“/media/pi/DBDRIVE/MariaDB/”目录。

OP 已确认 /media 目录缺少所需的权限,并且添加它们解决了该问题。

来自 MariaDB 知识库的相关注释:https://mariadb.com/kb/en/what-to-do-if-mariadb-doesnt-start/#cant-create-test-file

相关内容