Recently Letsencrypt certificate expired on one of my FreePBX servers. It supposed to update itself automatically as it is set in cron file for “asterisk” user.
Category: Linux
Apr 19 2024
Firewalld failed to start timeout
Try to start firewalld service via the following command
1 |
systemctl start firewalld |
but get the following error after few seconds no response: firewalld.service: Start operation timed out. Terminating. firewalld.service: Failed with result ‘timeout’. systemd: Failed to start firewalld – dynamic firewall daemon.
Apr 19 2024
Fail2ban: already banned
I have Fail2Ban running on my Centos Server. In my /var/log/messages I noticed something really weird: I configured Fail2Ban to add the banned IP to iptables so they cannot reach my server anymore
Mar 30 2024
Cloudmin passthrough CPU information to VM
I have Rocket Chat in VM hosted in Cloudmin that relies on qemu. When I tried to update Rocket Chat to the latest version I got the following error: Your cpu does not support avx or avx2 instructions, which is required to run mongo 5.x, shipped with the next version of this snap.
Feb 24 2024
Centos: Get a newer version of e2fsck
I got an error about e2fsck version. In my case the issue happened in Centos7, when I try to expand the disk of my VM in Cloudmin.
1 |
qemu-img resize fedora-new.qcow2 +20G |
You will hit an error with your e2fsck version. You will need to download the latest source binary of e2fsprogs from your OS distributor and install it. …
Jan 30 2024
Vicidial access forbidden to the recordings folder
I got this upon trying to download call recording in Vicidial on the lead’s page. I have Vicibox 11 installed in virtual machine on Cloudmin with Vicidial VERSION: 2.14-899a BUILD: 231109-2027
Jan 17 2024
Asterisk vicidial WebRTC phone cannot connect
On the newly installed Vicidial box I got problem connecting WebRTC phone to Asterisk. I followed the setup guide here In the Asterisk console I saw: Problem setting up ssl connection: error:00000001:lib(0):func(0):reason(1), Internal SSL error ERROR[2203]: tcptls.c:179 handle_tcptls_connection: Unable to set up ssl connection with peer ‘22.22.48.22:48756’ [Jan 17 11:46:42] ERROR[2203]: iostream.c:552 ast_iostream_close: SSL_shutdown() failed: …
Nov 24 2023
ViciBox 11 installation in Cloudmin
ViciBox is worldwide popular callcenter solution. If you want to run ViciBox in virtual machine under Cloudmin you will need to perform a few additional steps to make running because there is no ready-to-go ViciBox image for Cloudmin available.
Aug 19 2023
Vicidial: How to update phones Server IP in bulk
To simultaneously update Server IP for all phones in ViCiDial, please log in to your MySQL (or PhpMyAdmin, if available) and run the following SQL statements:
1 |
update phones set server_ip ='1.1.1.1'; |
where instead of “1.1.1.1” specify your Vicidial Server IP. Check also How to update passwords in bulk in ViciDial
May 19 2023
HAProxy mixed content warning when using HTTPS
I use HAProxy to do SSL offloading for a WordPress site. Frontend is on 80 and 443 with redirect HAProxy redirect HTTP to HTTPS using redirect scheme https code 301 if !{ ssl_fc } Redirection is working well when the page is accessed on port 80. However the pages loads incomplete and looking in the …