Server command from OS command line

How can I send commands to running domino server process from operating system command line (specially from linux)?

Subject: Server command from OS command line

A better solution than trying to use an OS command line is to use the server controller. You have to start the Domino server with an extra parameter, after that you can start the Console and connect to the server to issue commands.

For example, set Domino to start as:

nserver -jc -c

Which runs the Server Controller and the Domino server

The console program iteself is jconsole and is located in the program directory. There’s a lot of additional information available in the Admin help.

If you’re accessing a server that runs HTTP another option is to use the webadmin.nsf database.

Subject: Server command from OS command line

Hi,

From Unix you can do pretty much the same as earlier mentioned but with out the java console.

use the “-c”

On Unix e.g. :

/opt/lotus/bin/server -c “show ser”

/opt/lotus/bin/server -c “res ser”

On Windows e.g. :

c:\domino\nserver.exe -c “show ser”

c:\domino\nserver.exe -c “res ser”

When doing this on Unix a “tail -f” to the debug.txt can be very useful.

//Kjeld