Skip to main content

Posts

Showing posts from May, 2023

Goautodial Logging in to your phone. Please wait

  Goautodial Logging in to your phone. Please wait The Gotodial was installed from ISO and agent had issue logging in. The login screen was hanging with the Logging in to your phone. Please wait… message. At that moment I did not have  Letsencrypt certificate on Gotodial  installed so it operated with default, self-signed certificate. In  /var/log/messages  there was the following: 1 2 May 15 20 : 45 : 31 centos - pbx - v3 . shared / usr / sbin / kamailio2093 : ERROR : tls [ tls_util . h : 42 ] : tls_err_ret ( ) : TLS read : error : 14094412 : SSL routines : ssl3_read_bytes : sslv3 alert bad certificate May 15 20 : 45 : 31 centos - pbx - v3 . shared / usr / sbin / kamailio2093 : ERROR : [ core / tcp_read . c : 1352 ] : tcp_read_req ( ) : ERROR : tcp_read_req : error reading - c : 0x7f07eec63328 r : 0x7f07eec633a8 and 1 TLS read : error : 14094412 : SSL routines : ssl3_read_bytes : sslv3 alert bad certificate In /etc/kamailio/tls.conf I changed “method” to SSLv23

Samba installation Centos 7

yum install samba samba-client samba-common - y cp /etc/samba/smb.conf /etc/samba/backup_smb.conf nano /etc/samba/smb.conf workgroup = WORKGROUP hosts allow = 192.168.0.2/24     [Recording]     comment = Recording Share              path = /var/www/recordings/files/                 browsable = yes                          guest ok = yes     read only = no     valid users = @root     create mask = 0770     directory mask = 0770 [opt]     comment = OPT Share              path = /opt                 browsable = yes                          guest ok = yes     read only = no     valid users = @root     create mask = 0770     directory mask = 0770 smbpasswd -a root iptables -A INPUT -p tcp -m tcp --dport 137 -j ACCEPT iptables -A INPUT -p tcp -m tcp --dport 138 -j ACCEPT iptables -A INPUT -p tcp -m tcp --dport 139 -j ACCEPT iptables -A INPUT -p tcp -m tcp --dport 445 -j ACCEPT service iptables save | tee /etc/sysconfig/iptables service iptables restart nano /etc/selinux/config setenforce 0 s

GOautodial Version 4 How To Install Goautodial From Scratch (using CentOS 7)

  Version 4 How To Install Goautodial From Scratch (using CentOS 7) This is the HOWTO for installing the GOautodial app (v4) on a CentOS 7.X based server. Update system yum update -y yum install -y nano wget yum groupinstall -y "Development Tools" Install the Goautodial yum repository cd /etc/yum.repos.d/ wget http://downloads2.goautodial.org/centos/7/goautodial.repo Install MariaDB 10 PHP 7, Asterisk 13, Kamailio 5, RTPengine and other dependencies yum install MariaDB-server MariaDB-devel php70w-mysql php70w-mcrypt php70w-devel php70w-mbstring php70w-common php70w-xml php70w-pear php70w-cli php70w-imap php70w-fpm php70w-gd php70w-opcache php70w-pdo php70w-process php70w php70w-intl php70w-pear.noarch php70w-xmlrpc asterisk-mysql-13.17.2-vici.el7.centos.x86_64 asterisk-perl-0.08-2.go.x86_64 asterisk-voicemail-plain-13.17.2-vici.el7.centos.x86_64 asterisk-devel-13.17.2-vici.el7.centos.x86_64 asterisk-voicemail-13.17.2-vici.el7.centos.x86_64 asterisk-alsa-13.17.2-vici.el7.cent