Page 1 of 1

eflo SVN repo down?

PostPosted: Fri Oct 26, 2018 10:29 pm
by AkkerKid
ViciBox v.8.1 Installer

Local IP address not found! Please enter the IP address to use for ViciDial on this machine
Local IP Address : 123.123.123.9
svn: E170013: Unable to connect to a repository at URL 'svn://svn.eflo.net/agc_2-X/trunk'
svn: E000113: Can't connect to host 'svn.eflo.net': No route to host
Use of uninitialized value $string in substitution (s///) at /usr/local/bin/vicibox-install line 134.
Use of uninitialized value $string in substitution (s///) at /usr/local/bin/vicibox-install line 135.

:(

PING google.com (216.58.219.110) 56(84) bytes of data.
64 bytes from mia07s25-in-f110.1e100.net (216.58.219.110): icmp_seq=1 ttl=56 time=2.80 ms

Odd how going to svn.eflo.net from a browser brings up a vici login page though. Is that intentional?

Re: eflo SVN repo down?

PostPosted: Sat Oct 27, 2018 9:01 am
by bourneshell
Experiencing the same issue here. Is the SVN service not running right now?

Re: eflo SVN repo down?

PostPosted: Sat Oct 27, 2018 12:41 pm
by mflorell
Looks like our whole dev cluster is down actually. If you need the latest code you'll have to grab a tarball from the nightly build repository,
http://www.vicidial.org/svn_trunk_nightly/

Re: eflo SVN repo down?

PostPosted: Sat Oct 27, 2018 2:39 pm
by AkkerKid
I'd like to keep my build numbers consistent within a cluster.
Is there a way to grab the 3032 build from another server and copy it over for the install script to use that instead?
Or, can I put a telephony/web server on an existing cluster with an older build and not have problems?

Re: eflo SVN repo down?

PostPosted: Sat Oct 27, 2018 3:17 pm
by williamconley
1) rsync the folders directly from the "Master" server to all the others

This is backwards, since it "pulls" instead of "pushing". You'd have to dupe it for each server. It also works best if the target servers all have the ssh key of the pushing server in authorized_keys so there's no need fora password after each command:

Code: Select all
SOURCEIP=xx.xx.xx.xx
rsync -AEavzte ssh $SOURCEIP:/srv/www/htdocs/ /srv/www/htdocs/
rsync -AEavzte ssh $SOURCEIP:/var/lib/asterisk/agi-bin/ /var/lib/asterisk/agi-bin/
rsync -AEavzte ssh $SOURCEIP:/usr/src/astguiclient/ /usr/src/astguiclient/
rsync -AEavzte ssh $SOURCEIP:/usr/share/astguiclient/ /usr/share/astguiclient/
rsync -AEavzte ssh $SOURCEIP:/var/lib/asterisk/sounds/ /var/lib/asterisk/sounds/
rsync -AEavzte ssh $SOURCEIP:/var/lib/asterisk/moh/ /var/lib/asterisk/moh/
rsync -AEavzte ssh $SOURCEIP:/var/lib/asterisk/mohmp3/ /var/lib/asterisk/mohmp3/
rsync -AEavzte ssh $SOURCEIP:/var/lib/asterisk/quiet-mp3/ /var/lib/asterisk/quiet-mp3/


The audio pushes aren't necessary, but they were there so I left them. lol

2) Get the SVN revision level from the master. Remember to verify that the version in the repository is actually in use:
Code: Select all
cd /usr/src/astguiclient/
svn info
diff /srv/www/htdocs/vicidial/admin.php /usr/src/astguiclient/trunk/www/vicidial/admin.php

The diff command shouldn't return any output if the repository admin.php is the same as the one being used.

Next up: Match that SVN revision on all servers:
Code: Select all
cd /usr/src/astguiclient/trunk
svn up -r 1559
(replace 1559 with the actual SVN revision level from the master)

Install on all servers:
Code: Select all
mkdir /etc/asterisk/BAK
cp /etc/asterisk/* /etc/asterisk/BAK
cd /usr/src/astguiclient/trunk
perl install.pl --copy_sample_conf_files


ReSet the "externip" value on all dialers
Code: Select all
nano /etc/asterisk/sip.conf

Re: eflo SVN repo down?

PostPosted: Sun Oct 28, 2018 3:17 am
by samadsaeed
Do you have any update on when it'll be back up again? i need to setup 4 servers of vicibox. and currently facing this issue.


ViciBox v.8.1 Installer

Local IP address not found! Please enter the IP address to use for ViciDial on this machine
Local IP Address : 207.XXX.X.XXX
svn: E170013: Unable to connect to a repository at URL 'svn://svn.eflo.net/agc_2-X/trunk'
svn: E000113: Can't connect to host 'svn.eflo.net': No route to host
Use of uninitialized value $string in substitution (s///) at /usr/local/bin/vicibox-install line 134.
Use of uninitialized value $string in substitution (s///) at /usr/local/bin/vicibox-install line 135.

Re: eflo SVN repo down?

PostPosted: Sun Oct 28, 2018 1:05 pm
by mflorell
The svn server is back up!

Re: eflo SVN repo down?

PostPosted: Sun Oct 28, 2018 3:32 pm
by samadsaeed
mflorell wrote:The svn server is back up!


Thank You!

Yes, just verified it.