Raspberry Pi 3のCentOSサーバーでネットワークを再起動しようとしています
systemctl restart network
しかし、私はこれを得ています
制御プロセスがエラーコードで終了したため、network.serviceのジョブが失敗しました。詳細については、「systemctl status network.service」および「journalctl -xe」を参照してください。
[root@rpiserver ~]# systemctl status network.service
network.service - LSB: Bring up/down networking
Loaded: loaded (/etc/rc.d/init.d/network; bad; vendor preset: disabled)
Active: failed (Result: exit-code) since Sun 2017-07-02 21:08:50 UTC; 2min 46s ago
Docs: man:systemd-sysv-generator(8)
Process: 1002 ExecStart=/etc/rc.d/init.d/network start (code=exited, status=6)
Jul 02 21:08:50 rpiserver systemd[1]: Starting LSB: Bring up/down networking...
Jul 02 21:08:50 rpiserver systemd[1]: network.service: control process exit...=6
Jul 02 21:08:50 rpiserver systemd[1]: Failed to start LSB: Bring up/down ne...g.
Jul 02 21:08:50 rpiserver systemd[1]: Unit network.service entered failed state.
Jul 02 21:08:50 rpiserver systemd[1]: network.service failed.
Hint: Some lines were ellipsized, use -l to show in full.
これは私のifcfg-eth0です
DEVICE=eth0
BOOTPROTO=static
ONBOOT=yes
IPADDR=192.168.1.200
NETMASK=255.255.255.0
GATEWAY=192.168.1.1
Eth0ネットワークカードの現在の構成をリセットする
ip addr flush eth0
そしてさらに試みる
systemctl restart networking
今後の投稿では、次のコマンドを使用してすべてのログを表示します
ヒント:一部の行は省略されました。完全に表示するには-lを使用してください。
systemctl status networking -l