检查 LVM 可用性

发布于 2024-09-15 09:55:54 字数 112 浏览 6 评论 0原文

我试图安装的一个工具说:

MySQL 服务器数据目录需要驻留在 LVM 卷上

如何检查我的数据目录是否位于 LVM 上?

A tool that I am trying to install says:

MySQL server data directory needs to reside on an LVM volume

How do I check if my data directory is on LVM?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

抱着落日 2024-09-22 09:55:54

在MySQL数据目录上运行df;这将返回目录所在的设备。
然后运行 ​​lvs 或 lvdisplay 检查设备是否为 LVM 设备。

在我的系统中:

perez:~ #df  /var/symdb/SYMDB
Filesystem                  1K-blocks     Used Available Use% Mounted on
/dev/mapper/OpenScapeUC-UC1  41284928 21346244  17841532  55% /

perez:~ # lvs /dev/mapper/OpenScapeUC-UC1
  LV   VG          Attr   LSize  Origin Snap%  Move Log Copy%  Convert
  UC1  OpenScapeUC -wi-ao 40.00g

Run df on the MySQL data directory; this will return the device where the directory resides.
Then run lvs or lvdisplay to check if the device is an LVM one.

In my system:

perez:~ #df  /var/symdb/SYMDB
Filesystem                  1K-blocks     Used Available Use% Mounted on
/dev/mapper/OpenScapeUC-UC1  41284928 21346244  17841532  55% /

perez:~ # lvs /dev/mapper/OpenScapeUC-UC1
  LV   VG          Attr   LSize  Origin Snap%  Move Log Copy%  Convert
  UC1  OpenScapeUC -wi-ao 40.00g
沫离伤花 2024-09-22 09:55:54

如果您安装了操作系统,那么您将在安装过程中选择此选项作为分区的一部分。我假设您正在寻找为 MySQL 设置 LVM 快照 (mylvmbackup)?

如果您看到该消息,那么我只是猜测,但您可能没有 LVM 卷,或者至少其中没有 MySQL 数据文件。

http://www.debian-administration.org/articles/410 是一个指南用于设置 Debian。

尝试在命令行上运行 lvdisplay ,它应该显示所有 LVM 卷(如果存在)。

If you installed the OS then you would have chosen this option as part of the partitioning during installation. I assume you are looking to set up LVM snapshots (mylvmbackup) for MySQL?

If your seeing that message then i'm just guessing but you may not have an LVM volume, or at least MySQL data files aren't on it.

http://www.debian-administration.org/articles/410 is a guide for setting up with debian.

Try running lvdisplay on command line and is should display any LVM volumes if they exist.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文