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