Ventrillo

Martyn Day

Verified User
Joined
Jul 15, 2009
Messages
83
how do i set this up on my server so that it will always run??

i've looked around but not found much and i seem to get better help on these forums then the actuall forums.. lol

so hope someone can help!

regards
 
What you mean always run? When it forks into the background its running :D

As long as it does not crash or server is not rebooted it should not stop running.
 
1. There is a switch for forking into the background.

Code:
./programname -h or ./programname --help

to find the proper switch

2. There is a start script included with the program to fork it into the background.

3. Start it like

Code:
./program &

or

Code:
screen ./program
 
1) Upload the file to the machine that you plan on running the server on. This is only important if the host computer is not the same as the computer you are currently using.

2) Open a terminal window (telnet or OpenSSH) to the host computer that will be running the server.

3) Set your working directory to where ever you want to create the ventrilo directory.

4) Type "mkdir ventrilo"

5) Type "cd ventrilo"

6) Copy the tar.gz file into this new directory.

7) Type "gunzip " followed by the name of the tar.gz file.

8) Type "tar xf " followed by the name of the tar file. (gunzip removed the gz extension).

9) Note: Some platforms allow for combining steps 7 and 8 into a single command by typing "tar zxf " followed by the name of the tar.gz file.

10) Type: "./ventrilo_srv".

This will start the server using default settings which should be more then sufficient for the normal user.

The ventrilo server does not have a GUI interface. All output will occur in the console window. The server can be configured to start automatically when the computer is rebooted. However, this will require root access in order to implement. Please read the "ventrilo_srv.htm" file with a web browser for details.

If you want to change any of the settings then you can issue the following command: "vi ventrilo_srv.ini". This will start the vi editor program and allow you to edit the INI file which defines how the server should operate.

Please read the "ventrilo_srv.htm" file with a web browser for more details about how to configure and tweak the server configuration.
 
Back
Top