Install Softether VPN Client on Linux Rumi, January 28, 2023January 28, 2023 Download and Install SoftEther VPN Client Download SoftEther VPN Client software from their official website (https://www.softether.org). Navigate to Download — > Download SoftEther VPN Click on Download SoftEther VPN link. Select Component : SoftEther VPN Client Select Platform : Linux Select CPU : Select the appropriate CPU from the Drop… Continue Reading
Remove Old Unused Kernels in CentOS Rumi, January 26, 2023 To display the current version of Linux (kernel) running on your system, run this command. # uname -sr Linux 3.10.0-327.10.1.el7.x86_64 List All Installed Kernels on System You can list all kernel images installed on your system like this. # rpm -q kernel kernel-3.10.0-229.el7.x86_64 kernel-3.10.0-229.14.1.el7.x86_64 kernel-3.10.0-327.3.1.el7.x86_64 kernel-3.10.0-327.10.1.el7.x86_64 Removing Old/Unused Kernels on… Continue Reading
Setup Keepalived for VRRP instead of ucarp Rumi, January 26, 2023 I’ve the following setup: network-0 – 192.168.2.11 (real) network-1 – 192.168.2.12 (real) I want to add “network” as 192.168.2.10 as the floating address. I’ll need to do the following to both network-0 and network-1 Install keepalived Configure keepalived Start keepalived Set keepalived to start at boot. Continue Reading
Proxmox GUI webpage stuck on loading Rumi, January 8, 2023 Connection time out!!!! So boring nah? I can’t figure out where the problem is. It works and then couple of hours later I’d come back and it keeps on loading forever. SSH works fine, can SSH into containers as well. Just the GUI doesn’t work. Tried full upgrade. Checked for… Continue Reading
Setup HAProxy Load Balancer for MariaDB Galera Cluster Rumi, December 28, 2022December 28, 2022 If you check the above test scenario and try to create DBs on any of the nodes, you would see that the data would automatically sync between the nodes. Which means Availability is achieved. Now to achieve high availability we will use HaProxy as the loadbalancer. Set up another VM… Continue Reading
MariaDB Galera Cluster on Ubuntu 20 Rumi, December 28, 2022December 28, 2022 MariaDB Galera Cluster is a synchronous multi-master cluster for MariaDB with support for XtraDB/InnoDB storage engines. It has the following top features. It provides active-active multi-master topology You can read and write to any cluster node It has an automatic node joining Automatic membership control, failed nodes drop from the… Continue Reading
Mount CDROM to Pfsense Rumi, November 19, 2022 Go to a shell. Make a directory to mount the CD at: mkdir /tmp/cdrom Mount the CD: mount_cd9660 /dev/acd0 /tmp/cdrom or mount_cd9660 /dev/cd0 /tmp/cdrom CD is now mounted at /tmp/cdrom. When finished unmount: umount /tmp/cdrom * Note: If your cdrom device is not acd0, check the bootup messages for the… Continue Reading
Running pfSense in a XenServer with xenguest Rumi, November 19, 2022 If you deploy pfSense on a XenServer, you may be shocked at the performance loss-specially on interface speed! But wait, there are some tweaks to make this usable. Installing pfSense Go ahead and setup pfSense like normal, and when you are done, perform the following tweaks. (the day till it’s… Continue Reading
Build WAF with Reverse Proxy Load Balancer using Nginx Rumi, November 16, 2022 Getting Started First, it is recommended to update and upgrade all your software packages to the latest version. You can update all of them by running the following command: apt update -y apt upgrade -y Once all the packages are updated, install other required packages with the following command: apt… Continue Reading
M3U Restream Rumi, November 15, 2022 There’s a wonderful piece of microservice node.js based restream utility, that let you re-stream from a source and also do the ffmped transcoding if you’d like. I just liked the piece! My installed OS was Ubuntu 18.x and I used node version 12.x. The problem You have an IPTV provider… Continue Reading