I'd like to set up a ventrilo server that I want to keep up at all times, but I don't want to have to keep my computer on all the time. Is there a free server or something that I can use to accomplish this?

link|improve this question

feedback

3 Answers

I think the operating system you're using is important here.

I used to run a ventrilo server on a Linux machine for a long while. If you wanted to get real slick, you could write an init script (similar to the ones in /etc/init.d/) which will start up your Ventrilo daemon (take care to make sure it starts as a user other than "root").

However, a more accessible solution might be to create a script which checks if Ventrilo is running and starts it if it isn't. Then, you could stick that in a cron job and have it execute every 15 minutes or so.

link|improve this answer
feedback

Assuming you're running it in linux, you can use crontab to start a task as a specific user- log on as that user, then

First make sure you have the right permissions to start ventrillo - rather than using ./ventrillo_serv, use sh /path/to/ventrillo/ventrilo_serv - if this works, you can add it to crontab, else you'd want to make the script executable

crontab -e 

brings up a text file - this is your crontab

Add a line saying

@reboot sh /path/to/ventrillo/ventrilo_serv

  • this runs the command, at reboot (you can also use this to run commands every so often)

Presumably you could work out some way to start your server with WOL as well.

If its windows, you could probably throw a batchfile or shortcut into your startup menu

link|improve this answer
feedback

If I read the question correctly, you want an always-on ventrilo server, but you don't want to run it locally because that would mean leaving your computer on 24/7, which you don't want to do. So you're basically looking for free ventrilo hosting, then?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.