检查 LVM 可用性
我试图安装的一个工具说:
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在MySQL数据目录上运行df;这将返回目录所在的设备。
然后运行 lvs 或 lvdisplay 检查设备是否为 LVM 设备。
在我的系统中:
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:
如果您安装了操作系统,那么您将在安装过程中选择此选项作为分区的一部分。我假设您正在寻找为 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.