Install Mydumper Myloader on Centos 7 Rumi, June 11, 2020July 4, 2020 If you want to execute logical backups using an alternative to mysqldump that works with parallel threads giving faster execution times mydumper is the correct tool. wget https://github.com/maxbube/mydumper/releases/download/v0.9.5/mydumper-0.9.5-2.el7.x86_64.rpm In order to use mydumper and myloader you can use the following sample commands: For dumping/exporting database: mydumper -u <username> -p <password>… Continue Reading
Percona Mysql Service Force Stop Rumi, June 10, 2020 Service mysql stop is being ignored. How to fix? Try mysqladmin -u root -p shutdown Alternatively, In case you have started /etc/init.d/mysql bootstrap-pxc So in this case you should stop bootstrapped node using /etc/init.d/mysql bootstrap-stop Continue Reading
Installing Transmission Torrent Client on Debian Rumi, June 10, 2020 Install transmission sudo apt-get install transmission-cli transmission-common transmission-daemon Configure There are many settings which can be configured. This how-to focus on tweaking the default configuration file for use with Debian/Ubuntu server. transmission-daemon will start automatically each time you start your server, with the settings defined in /var/lib/transmission-daemon/info/settings.json Make sure the… Continue Reading
Install WHMCS on CentOS 7 Rumi, May 25, 2020May 25, 2020 As you may know, WHMCS is the leading web hosting management and billing software that automates all aspects of your business from billing, provisioning, domain reselling and etc. In this article, we are going to install WHMCS 7.7.1 on CentOS 7.6. We assume you have a valid WHMCS license and… Continue Reading
Layer-4 Load Balancing with HAProxy for MariaSQL Rumi, May 25, 2020 If you have a MariaSQL Galera Cluster (All master) deployed, you can use HAProxy L-4 load balancing proxy. Configure HAProxy on Layer4 Mode. On this example, configure MariaDB backend like the following environment. Configure HAProxy. Continue Reading
Observium Unix Agent Rumi, May 25, 2020 All Agent data is pulled in one TCP connection during the unix-agent module. The module populates an $agent_data array which can be used by other modules. For example: $agent_data = [‘app’] => [‘apache’] => … DATA … [‘bind’] => … DATA … [‘other’] => … DATA … Installation The preferred method of… Continue Reading
Install PHP 7 on CentOS 7 Rumi, May 24, 2020 Enabling Remi repository PHP 7.x packages are available in several different repositories. We’ll use the Remi repository which provides newer versions of various software packages including PHP. The Remi repository depends on the EPEL repository. Run the following commands to enable both EPEL and Remi repositories: sudo yum install epel-release yum-utils sudo yum… Continue Reading
Configuring SpamAssassin for Postfix on CentOS Rumi, May 23, 2020 In the process of receiving email, spamassassin will stand between the outside world and the email services running on your server itself. If it finds, according to its definition rules and configuration, that an incoming message is spam, it will rewrite the subject line to clearly identify it as such…. Continue Reading
Install ClamAV on CentOS 6 Rumi, May 23, 2020 Step 1. First add yum repository your system. The EPEL repo is enabled by simply installing an RPM. Please use the command below to install the EPEL repository on your CentOS server. #CentOS 6 – 32-bit rpm -Uvh http://mirror.overthewire.com.au/pub/epel/6/i386/epel-release-6-8.noarch.rpm #CentOS 6 – 64-bit rpm -Uvh http://download.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm Step 2. Install required ClamAV packages…. Continue Reading
Install Streama Media Server on Ubuntu 18 Rumi, May 23, 2020May 24, 2020 Update OS Package: sudo su apt-get upgrade apt-get update reboot Install OpenJDK: apt install openjdk-8-jre mkdir /data mkdir /data/streama touch /data/streama/README.md Add User and change user permission: # new linux user sudo adduser streama # add password to README.md sudo usermod -aG sudo streama sudo chown streama:streama /data/streama/ -R Continue Reading