Jump to content

You're browsing the 2004-2023 VATSIM Forums archive. All content is preserved in a read-only fashion.
For the latest forum posts, please visit https://forum.vatsim.net.

Need to find something? Use the Google search below.
PLEASE READ - Webmaster Support Forum
This forum will be retired in the near future. Please direct all queries to our dedicated GitHub support page https://github.com/vatsimnetwork/developer-info/discussions 
Here you can find documentation on our services and we are continuing to migrate pertinent information into the Wiki pages https://github.com/vatsimnetwork/developer-info/wiki

Voice Server software


Pan Lalas
 Share

Recommended Posts

Pan Lalas
Posted
Posted (edited)

Hello ppl.

In ZNY we host for the last 5-6 years our own voice server (nyartcc.org).

I understand that the version we have (voiced) is rather old.

Ross Carlson had provided us with a more up to date version which we lost after a HDD failure.

A few questions. From what I understand there are 2 different programs in use. RWBS and AVS.

Which one is better? How and where can we request the latest version in use?

Is there some kind of docomeentation with the configuration file commands?

Edited by Guest
Link to comment
Share on other sites

Norman Blackburn
Posted
Posted

Hi Pan,

 

Drop an email to Wade Williams, VP Dev and he will be able to answer your queries.

Norman

sig_FSLBetaTester.jpg

Link to comment
Share on other sites

Pan Lalas
Posted
Posted

Thnx Norman. Done

Link to comment
Share on other sites

Luca Benelli
Posted
Posted

RWBS isn't used anymore... only AVS, of which voiced is the executable

Luca Benelli - C3 - P2

Link to comment
Share on other sites

Pan Lalas
Posted
Posted

Thnx Luca. Good to know. I've sent an e-mail to Wade. Btw has anyone written a "start|stop|check if running" script that we could use in a cron? I appreciate any help.

Link to comment
Share on other sites

  • 4 months later...
Luca Benelli
Posted
Posted

I think i missed the last part of this thread...

 

i have been asked via ES about his script on saturday... so here it is:

 

i don't know if this is the ideal solution... but it's quick, easy and works... and SHOULD be safe.

 

create a file named check in the avs directory ([Mod - Happy Thoughts]uming avs is instaled in /home/vatsim/avs )

 

#!/bin/bash
cd /home/vatsim/avs
if [ "$(pidof voiced)" ]
then
 # process found, do nothing
       echo "ok";
else
 # process not found, restart it
 ./voiced &
fi

 

 

make the file executable "chmod +x ./check"

 

put in crontab as:

 

*/5 * * * * /home/vatsim/avs/check > /dev/null 2>&1

 

this would check every 5 minutes if voiced exists and if not it restarts.

 

If anybody has ideas to upgrade the script let me know

Luca Benelli - C3 - P2

Link to comment
Share on other sites

  • 4 weeks later...
Luca Benelli
Posted
Posted

as for the above code... run

"which pidof" and use the complete path to pidof where necessary

Luca Benelli - C3 - P2

Link to comment
Share on other sites

 Share