web-dev-qa-db-ja.com

OpenSuse 13.2のsshdはどこにありますか?

OpenSuse 13.2をインストールした後、ボックスへのssh接続が成功した場合でも、以前のように実行中のサービスが見つからないことがわかりました(chkconfigコマンドを使用)

どうして?

私の最後のおなじみのSuseリリースは11.4でした

2
Alex

古いinitシステムはSystemDに置き換えられ、そのシステムへのメインインターフェイスとしてsystemctlが使用されています。

3
Sven

試してみてください

 systemctl list-units sshd.service

systemctl list-units | grep sshを使用して実際のサービスが見つかりました。ちなみにrootは必要ありません)

Archemar@tatouin:~/> systemctl list-units sshd.service
UNIT         LOAD   ACTIVE SUB     DESCRIPTION
sshd.service loaded active running OpenSSH Daemon

LOAD   = Reflects whether the unit definition was properly loaded.
ACTIVE = The high-level unit activation state, i.e. generalization of SUB.
SUB    = The low-level unit activation state, values depend on unit type.

1 loaded units listed. Pass --all to see loaded but inactive units, too.
To show all installed unit files use 'systemctl list-unit-files'.
2
Archemar