1753974 Members
7118 Online
108811 Solutions
New Discussion юеВ

shutdown & startup

 
SOLVED
Go to solution
S.S.
Super Advisor

shutdown & startup

Hi All,

A very simple question.
Due to UPS replacement we need to shutdown all the servers.
Would you help me for our Linux Server how can:
1. I safely shutdown & poweroff
2. Start up.

May i know like sam in hp-ux, do we have an GUI interface utility and also MP Console for Linux also?

Thanks & Regards
7 REPLIES 7
Steven Schweda
Honored Contributor
Solution

Re: shutdown & startup

> A very simple question.

Missing some very basic information.

> 1. I safely shutdown & poweroff

man shutdown

> 2. Start up.

What happens when you switch on the power?

> May i know [...] do we have [...]

May _we_ know something (anything) about your
hardware and/or which GNU/Linux kit you're
using?

uname -a
S.S.
Super Advisor

Re: shutdown & startup

Hi,

$ uname -a
Linux oradb5 2.6.9-67.0.1.ELsmp #1 SMP Fri Nov 30 11:57:43 EST 2007 x86_64 x86_64 x86_64 GNU/Linux
$
Michal Kapalka (mikap)
Honored Contributor

Re: shutdown & startup

hi,

if you shutdown all running application ( for example SAP/oracle ) them just use command poweroff.

mikap
Kapil Jha
Honored Contributor

Re: shutdown & startup

shutdown -h now
or if you have iLO power it off from console.

Then after UPS thing power it up from server or from console again.

I hwish application this you would take care :)

BR,
Kapil+
I am in this small bowl, I wane see the real world......
viswanathkishore
New Member

Re: shutdown & startup

Hi ,
These are some commands for shutdown Process

Shutdown procedures:

halt, reboot, poweroff - stop the system.
SYNOPSIS
/sbin/halt [-n] [-w] [-d] [-f] [-i] [-p] [-h]
/sbin/reboot [-n] [-w] [-d] [-f] [-i]
/sbin/poweroff [-n] [-w] [-d] [-f] [-i] [-h]
Arockiasamy
Advisor

Re: shutdown & startup

I'm giving graphical user environment
by http server.

After loading the server,
Just start the httpd service by
service httpd start

See the service is running or not by
nmap

If 80,443,8443 ports are opened http server ok.
If it showing command not found, then install nmap from installation disk.

Download the following file webmin

http://prdownloads.sourceforge.net/webadmin/webmin-1.500-1.noarch.rpm

install by
rpm -ivh webmin*

Verify by
nmap
service will open the port 10000

U can access the server by http server on port 10000.
like,go to web brownser in clients.
https://:10000
S.S.
Super Advisor

Re: shutdown & startup

Thank you.