前提・実現したいこと
systemd でワイルドカードを使って、ceph*.{target,service} の
Unitと起動状態だけ を取り出すオプションを知りたいです。
試したこと1
起動状態のみ表示するオプションがありそうで、
man systemctl 見たところ、is-active を見つけましたが、
ワイルドカードで表示しているため、サービス名が表示されず、
何のUnitがどういう状態なのか分からない結果となりました。
grepで絞るなら、下記のイメージです。
# なんのUnitか分からない systemctl is-active ceph*.service ceph*.target -a inactive inactive inactive failed inactive # grep ならこのように絞れるが、もっと楽な確認方法はないでしょうか systemctl status ceph*.service ceph*.target -a | grep -e '(target\|service) - ' -e 'Active: ' ● ceph-mon@ceph1.service - Ceph cluster monitor daemon Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-mon.target - ceph target allowing to start/stop all ceph-mon@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-osd.target - ceph target allowing to start/stop all ceph-osd@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-radosgw@rgw.ceph1.service - Ceph rados gateway Active: failed (Result: timeout) since Mon 2020-09-21 02:25:18 EDT; 5h 25min ago ● ceph-mgr.target - ceph target allowing to start/stop all ceph-mgr@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-radosgw.target - ceph target allowing to start/stop all ceph-radosgw@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-crash.service - Ceph crash dump collector Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-mgr@ceph1.service - Ceph cluster manager daemon Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph.target - ceph target allowing to start/stop all ceph*@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-volume@lvm-0-24d9456d-f020-4ce3-8f88-541b3a499370.service - Ceph Volume activation: lvm-0-24d9456d-f020-4ce3-8f88-541b3a499370 Active: inactive (dead) ● ceph-osd@0.service - Ceph object storage daemon osd.0 Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago ● ceph-mds@ceph1.service - Ceph metadata server daemon Active: inactive (dead) since Mon 2020-09-21 02:23:51 EDT; 5h 26min ago ● ceph-mds.target - ceph target allowing to start/stop all ceph-mds@.service instances at once Active: inactive (dead) since Mon 2020-09-21 02:23:48 EDT; 5h 26min ago
試したこと2
list-dependencies で ceph.target の依存関係のある service を表示できたが、
-type=service に対して status を実行するような サブコマンド, オプション等が見つからなかった
systemctl list-dependencies ceph.target ceph.target ● ├─ceph-crash.service ● ├─ceph-mds.target ● │ └─ceph-mds@ceph1.service ● ├─ceph-mgr.target ● │ └─ceph-mgr@ceph1.service ● ├─ceph-mon.target ● │ └─ceph-mon@ceph1.service ● ├─ceph-osd.target ● │ └─ceph-osd@0.service ● └─ceph-radosgw.target ● └─ceph-radosgw@rgw.ceph1.service
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/10/09 10:52