Is there any difference between performing an OpenStack soft reboot instance through the web interface Horizon and SSH into the instance and perform sudo reboot
?
Asked
Active
Viewed 7,090 times
3

Franck Dernoncourt
- 1,022
- 2
- 14
- 32
-
I haven't found any solution so far. – Franck Dernoncourt Apr 19 '15 at 19:46
-
So I am still interested if someone has any idea. – Franck Dernoncourt Apr 19 '15 at 19:47
-
Since this question received no answer, I posted it on Quora: https://www.quora.com/unanswered/Is-there-any-difference-between-performing-an-OpenStack-soft-reboot-instance-through-the-web-interface-SSH-into-the-instance-perform-sudo-reboot – Franck Dernoncourt Apr 22 '16 at 03:19
1 Answers
6
OpenStack Dashboard Server Reboot
Use this function to perform either a soft or hard reboot of a server. With a soft reboot, the operating system is signaled to restart, which allows for a graceful shutdown of all processes. A hard reboot is the equivalent of power cycling the server. The virtualization platform should ensure that the reboot action has completed successfully even in cases in which the underlying domain/VM is paused or halted/stopped.
Nova Server Reboot
OpenStack soft reboot:
$ nova reboot INSTANCE
OpenStack hard reboot:
$ nova reboot --hard INSTANCE
Server Reboot
If you perform sudo reboot
OpenStack will not know whether the reboot was intentional...

kinjelom
- 176
- 1
- 5