Skip to main content

Goautodial 4 First step after installation

 

Goautodial Getting Started Guidev4


Default usernames and passwords

LoginPassword
MySQL (mysql -u root -p) http://ServerIPAddress/phpmyadmin/root
Portal – https://ServerIPAddress/goadminG0autodial2018

Requirements

Download the GoAutoDial CE 4.0 installer: GOautodial-4-x86_64-Final-20191005-1520.iso - Burn to DVD or create bootable USB.



Configuration Files

nano /var/www/html/php/Config.php

<?php
// database configuration
define('DB_USERNAME', 'goautodialu');
define('DB_PASSWORD', 'goautodialu1234');
define('DB_HOST', 'localhost');
define('DB_NAME', 'goautodial');
define('DB_PORT', '3306');
define('DB_NAME_ASTERISK', 'asterisk');
define('DB_USERNAME_KAMAILIO', 'kamailiou');
define('DB_PASSWORD_KAMAILIO', 'kamailiou1234');
define('DB_HOST_KAMAILIO', 'localhost');
define('DB_NAME_KAMAILIO', 'kamailio');
define('DB_PORT_KAMAILIO', '3306');

// other configuration parameters
define('CRM_ADMIN_EMAIL', 'admin@localhost.com');
?>

nano /var/www/html/php/goCRMAPISettings.php

<?php
define ('gourl', 'https://192.168.22.9/goAPIv2');
define ('goUser', 'goAPI');
define ('responsetype', 'json');
?>

nano /etc/kamailio/kamailio.cfg

#!substdef "!MY_IP_ADDR!192.168.22.9!g" 
#!substdef "!MY_DOMAIN!vaglxc01.goautodial.com!g" 

/* add local domain aliases */
alias="192.168.22.9" 
alias="vaglxc01.goautodial.com" 

/* uncomment and configure the following line if you want Kamailio to
   bind on a specific interface/port/proto (default bind on all available) */
listen=udp:127.0.0.1:5060
listen=udp:192.168.22.9:5060

# ----- rtpengine params -----
modparam("rtpengine", "rtpengine_sock", "udp:127.0.0.1:5066")
modparam("rtpengine", "rtpengine_disable_tout", 20)
#modparam("rtpengine", "db_url", DBURL)

nano /etc/rtpengine/rtpengine.conf

[rtpengine]

table = 0
# no-fallback = false
### for userspace forwarding only:
# table = -1

### a single interface:
interface = 192.168.22.9
### separate multiple interfaces with semicolons:
# interface = internal/12.23.34.45;external/23.34.45.54
### for different advertised address:
# interface = 12.23.34.45!23.34.45.56

Comments