Reboot Redhat Enterprise Linux

6,668

As root, say

# systemctl --reboot

Or, simply:

# reboot

On systems where systemctl can reboot the system, reboot is usually symlinked to it, so that systemctl detects the action to perform by the name it was called by.

If you're on RHEL 7 or newer or you have manually configured sudo on RHEL 6 or older, you may not have to log in as root or su up to root first:

$ sudo systemctl --reboot

Or:

$ sudo reboot
Share:
6,668
Milton
Author by

Milton

Updated on September 18, 2022

Comments

  • Milton
    Milton almost 2 years

    How can I reboot the RHEL from CLI using the systemctl method?

    • eyoung100
      eyoung100 over 9 years
      does systemctl reboot work?