Issue
I was trying to configure a static IP address on my Linux machine (Fedora 19 ). However when I was trying to restart my network.services using systemctl restart network.service, I was unable to do so.
[root@xyz network-scripts]# systemctl restart network.service Job failed. See system journal and 'systemctl status' for details.
I tried to reboot my system and re execute the command, but still I am getting the same error. Also I am enable to access internet on my system.
Can anyone help me out with this.
Solution
To restart network services, you can use this command
service networking restart
You can also use
service networking stop
then
service networking start
Answered By - Ashish Singhal Answer Checked By - Robin (WPSolving Admin)