ViciBox 9.0.2 Install Errors....

Support forum for the ViciBox ISO Server Install and ISO LiveCD Demo

Moderators: enjay, williamconley, Staydog, mflorell, MJCoate, mcargile, Kumba

ViciBox 9.0.2 Install Errors....

Postby carpenox » Tue Apr 21, 2020 7:15 pm

First error I received was it was apparently looking for php5 instead of php7....

Image

then it tries to make changes to extensions.conf.....

Image

and finally tries to move some files before they are downloaded

Image

upon further investigation....mysql.log

Image

i did not name the box @vicibox9
Last edited by carpenox on Tue Apr 21, 2020 7:33 pm, edited 1 time in total.
Alma Linux 9.3 | Version: 2.14-911a | SVN Version: 3815 | DB Schema Version: 1710 | Asterisk 18.18.1
www.dialer.one -:- 1-833-DIALER-1 -:- https://linktr.ee/CyburDial -:- WhatsApp: +19549477572 -:- Skype: live:carpenox_3
carpenox
 
Posts: 2230
Joined: Wed Apr 08, 2020 2:02 am
Location: Coral Springs, FL

Re: ViciBox 9.0.2 Install Errors....

Postby carpenox » Tue Apr 21, 2020 7:32 pm

and apaches error.log which seems to be trying to load a ssl certificate....
Image


i think i found the error from the php7...from the first picture above since it was looking for php5

Image

the include_path doesnt look right...and its both under apache2 and cli, isnt it suppose to be within '.:path1:path2' instead of quotes?
Alma Linux 9.3 | Version: 2.14-911a | SVN Version: 3815 | DB Schema Version: 1710 | Asterisk 18.18.1
www.dialer.one -:- 1-833-DIALER-1 -:- https://linktr.ee/CyburDial -:- WhatsApp: +19549477572 -:- Skype: live:carpenox_3
carpenox
 
Posts: 2230
Joined: Wed Apr 08, 2020 2:02 am
Location: Coral Springs, FL

Re: ViciBox 9.0.2 Install Errors....

Postby Kumba » Tue Apr 21, 2020 9:05 pm

First screenshot is trying to set the timezome in php.ini and copy over the index.html file for automatic redirection. The sed error was referencing php5 instead of php7 in the config path. The index.html file was copied over to the web directory by default so it's complaining that it's not in the conf directory to copy. Here's the corrected code snippet if you want to run it:
Code: Select all
. /etc/sysconfig/clock
/usr/bin/sed -i "s+date.timezone =.*+date.timezone = $TIMEZONE+" /etc/php7/apache2/php.ini
/usr/bin/sed -i "s+date.timezone =.*+date.timezone = $TIMEZONE+" /etc/php7/cli/php.ini


Second screenshot is trying to disable the meetme adjustment volume controls because it causes Asterisk to crash. Most agents don't use it but it only takes one to crash the server. Here's the corrected code:
Code: Select all
sed -i 's/exten => _X48600XXX/;exten => _X48600XXX/g' /etc/asterisk/extensions.conf
sed -i 's/exten => _X38600XXX/;exten => _X48600XXX/g' /etc/asterisk/extensions.conf



Third screen shot is an issue with /usr/share/astguiclient/ADMIN_area_code_populate.pl in the vicidial codebase, not vicibox. It's just log noise and can be disregarded.

Fourth screen shot is more log noise again. It's just mysql saying it's got user permissions based on DNS that it can't lookup because DNS lookups are disabled in my.cnf. The vicibox9 is because that's the default name of the server when MySQL is installed. It can be safely ignored.

Fifth screenshot regarding apache is because you need an SSL certificate for apache to load the SSL VHost. If you don't have an SSL certificate there then apache won't start. The specific error is because the default SSL certificate is for vicibox.company.com which likely doesn't match your FQDN and it's also self-signed which means it has no certificate chain. Basically more log noise because it's easier to have SSL enabled in apache with a self-signed cert then it is to try and automate setting that up.

The last screen shot isn't really related to anything. You can safely revert whatever changes you might have made here.

I also updated the bugfix thread with those fixes. Thanks for posting :)
Kumba
 
Posts: 939
Joined: Tue Oct 16, 2007 11:44 pm
Location: Florida

Re: ViciBox 9.0.2 Install Errors....

Postby carpenox » Tue Apr 21, 2020 9:25 pm

no prob, thx for the applied fixes so far and i guess i could of submitted to the bugfix forum, forgot i had access to that too, but ty and the apache still doesnt seem to work right after install, i can not get to any webpage that i should be getting to, even trying localhost or 127.0.0.1 on the box itsellf...
Alma Linux 9.3 | Version: 2.14-911a | SVN Version: 3815 | DB Schema Version: 1710 | Asterisk 18.18.1
www.dialer.one -:- 1-833-DIALER-1 -:- https://linktr.ee/CyburDial -:- WhatsApp: +19549477572 -:- Skype: live:carpenox_3
carpenox
 
Posts: 2230
Joined: Wed Apr 08, 2020 2:02 am
Location: Coral Springs, FL

Re: ViciBox 9.0.2 Install Errors....

Postby Kumba » Tue Apr 21, 2020 9:41 pm

I'm not sure how you are going to localhost on the box itself. It doesn't have a GUI on it, just CLI.
Kumba
 
Posts: 939
Joined: Tue Oct 16, 2007 11:44 pm
Location: Florida

Re: ViciBox 9.0.2 Install Errors....

Postby carpenox » Tue Apr 21, 2020 11:07 pm

curl....would still get me results if the page was there
Alma Linux 9.3 | Version: 2.14-911a | SVN Version: 3815 | DB Schema Version: 1710 | Asterisk 18.18.1
www.dialer.one -:- 1-833-DIALER-1 -:- https://linktr.ee/CyburDial -:- WhatsApp: +19549477572 -:- Skype: live:carpenox_3
carpenox
 
Posts: 2230
Joined: Wed Apr 08, 2020 2:02 am
Location: Coral Springs, FL

Re: ViciBox 9.0.2 Install Errors....

Postby carpenox » Wed Apr 22, 2020 12:41 am

the web interface is up now, ty
Alma Linux 9.3 | Version: 2.14-911a | SVN Version: 3815 | DB Schema Version: 1710 | Asterisk 18.18.1
www.dialer.one -:- 1-833-DIALER-1 -:- https://linktr.ee/CyburDial -:- WhatsApp: +19549477572 -:- Skype: live:carpenox_3
carpenox
 
Posts: 2230
Joined: Wed Apr 08, 2020 2:02 am
Location: Coral Springs, FL


Return to ViciBox Server Install and Demo

Who is online

Users browsing this forum: No registered users and 74 guests