various restart commands ?


 
Thread Tools Search this Thread
Top Forums UNIX for Dummies Questions & Answers various restart commands ?
# 1  
Old 09-04-2002
various restart commands ?

hi,

i am running a Sun Solaris 8 Sparc machine.

i would like to know the differences between the following commands :

1) init 6
2) reboot
3) shutdown -y -i6 -g0

any other machine restart commands (for multi-user mode)?

pls help me.

thanks
# 2  
Old 09-05-2002
Check the man pages(man <command>)
I just had a look and it seems to me that shutdown is bringing the system down in civilized kind a way, it sends the info to users and so on and so on, but at the end it cals init 6 any way.
I'm running RH linux so i don't know a thing about solaris, but it want hurt to check /etc/inittab - that seems to be a config file for init.

see yaa mate
# 3  
Old 09-05-2002
On solaris, "shutdown -i6 -g0 -y" is very close to "init 6". But with shutdown, you could have used -g60. You can't do that calling init directly. The reboot command basicly just invokes the uadmin system call. It is a rough shutdown, but it is a bit better than just letting power drop so it might be used by a ups with only a few seconds of battery power or something.

I prefer the shutdown command. A SunOS dude tried the init thing on HP-UX...which is a very bad move. HP has a poor inittab structure and changing run levels via init will bypass the shutdown scripts. So (I think) the shutdown command may be more universal. But my universe is just SunOS and HP-UX...
# 4  
Old 09-05-2002
I agree with Perderabo.


The only time I really use reboot is when I am in Single user mode and need to reboot to get to multi. There may be other cases, but that's it for me.

Regarding init I can't think of the last time that I used it for anything. I occasionally use it for going from multi to init 4 to test scripts that I have written and then come back to init 3 for multi. Sometimes I will use it to go to init 2 and then patch my boxes before rebooting (shutdown -ry now).

I most situations for taking down a system shutdown is the only way to fly. Smilie

man 1m shutdown

Smilie
# 5  
Old 09-06-2002
to bring down the system CLEAN, you need to accomplish 3 things
Sync memory to disk
unmount all file systems
Kill a processes cleanly (not Kill -9)

Init 6 does all three by using run control scripts (RC#)
shutdown call on the init comman to shutdown(default is s init 3 but can bu substituted by using the -i option)
reboot does not call on init command and can cause a memory dump or currupt your file system.

hope this helps

Peter
 
Login or Register to Ask a Question

Previous Thread | Next Thread

10 More Discussions You Might Find Interesting

1. Solaris

sshd not able to restart

Hi, I was able to putty a few server (Solaris 10) of mine using hostname, but when i change to ip address, it shows login as: root Using keyboard-interactive authentication. Password: Access denied I change PermitRootLogin to yes. I tried to do a sshd restart, however ... (6 Replies)
Discussion started by: beginningDBA
6 Replies

2. AIX

HACMP: difference between 'cl' commands and 'cli' commands

Hi all, I'm new in this forum. I'm looking for the difference between the HACMP commands with the prefix "cl" and "cli". The first type are under /usr/es/sbin/cluster/sbin directory and the second are under /usr/es/sbin/cluster/cspoc directory. I know that the first are called HACMP for AIX... (0 Replies)
Discussion started by: peppix
0 Replies

3. Shell Programming and Scripting

restart parameter

I have a shell script with 4 separate functions taking place, one after the other. Is there a way to introduce a parameter so that if the job fails, then I can restart it at a specific point in the script ? Ideally, the default will be null (or 1), so that it will not normally be set, and the... (4 Replies)
Discussion started by: malts18
4 Replies

4. Shell Programming and Scripting

How to restart a script?

Hello, I created a shell script in /etc/init.d and it already runs at boot. However I cannot figure out how to make it run just like typing "scrip_name start" I can run it like this ./script_name but since I am doing remote log in whenever I log off the script stops and I also don't want to run... (8 Replies)
Discussion started by: kizofilax
8 Replies

5. Shell Programming and Scripting

Any Restart Script?

Hi, I would like to check if there's any sample of restart script for my AIX server. I'm planning to restart it every month. Thanks. (5 Replies)
Discussion started by: ademah
5 Replies

6. Shell Programming and Scripting

Can BASH execute commands on a remote server when the commands are embedded in shell

I want to log into a remote server transfer over a new config and then backup the existing config, replace with the new config. I am not sure if I can do this with BASH scripting. I have set up password less login by adding my public key to authorized_keys file, it works. I am a little... (1 Reply)
Discussion started by: bash_in_my_head
1 Replies

7. UNIX for Dummies Questions & Answers

Postfix Restart

I am really really new on UNIX system. I am trying to update our e-mail list. I added/deleted new members at etc/aliases but e-amil always got old e-mail lists. I reloaded postmaster but does not seem to be working. Anybody has any idea? (4 Replies)
Discussion started by: kumarrana
4 Replies

8. UNIX for Dummies Questions & Answers

How to restart a CRON

If my cron has recieved a SIGTERM. How do I restart the cron? (7 Replies)
Discussion started by: ddrivera
7 Replies

9. Programming

code that reads commands from the standard i/p and executes the commands

Hello all, i've written a small piece of code that will read commands from standard input and executes the commands. Its working fine and is execting the commands well. Accepting arguments too. e.g #mkdir <name of the directory> The problem is that its not letting me change the directory i.e... (4 Replies)
Discussion started by: Phrozen Smoke
4 Replies

10. UNIX for Dummies Questions & Answers

how can I restart X server ?

WITHOUT shutdown X ??? thanks , Ivan (6 Replies)
Discussion started by: oneivan
6 Replies
Login or Register to Ask a Question