Linux开机后 systemd 自动启动 ceph osd mon进程
Posted Freewill
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Linux开机后 systemd 自动启动 ceph osd mon进程相关的知识,希望对你有一定的参考价值。
机房操作失误导致机架或主机掉电是偶尔发生的事情,那么怎么在这种情况下,让Ceph服务随OS启动而快速启动呢 ? 如下是一个简单方法:
在OSD主机上执行如下命令:
sudo ln -s /usr/lib/systemd/system/[email protected] /etc/systemd/system/multi-user.target.wants/[email protected]
sudo systemctl enable [email protected]
sudo systemctl is-enabled [email protected]
在MON主机上执行如下命令:
sudo ln -s /usr/lib/systemd/system/[email protected] /etc/systemd/system/multi-user.target.wants/[email protected]
sudo systemctl enable [email protected]
sudo systemctl is-enabled [email protected]
以上是关于Linux开机后 systemd 自动启动 ceph osd mon进程的主要内容,如果未能解决你的问题,请参考以下文章