Fixing Slow Windows VM boot on Proxmox KVM with balloon driver Rumi, June 18, 2020 Download the Win-Virtio Driver and load it on VM CDRom Drive. Download can be found here: https://pve.proxmox.com/wiki/Windows_VirtIO_Drivers Now install the Virtio Balloon driver AND the Balloon service in the guest as follows: Open Device Manager and see if there is an unknown PCI device. If so, right click it and… Continue Reading
How to increase memory size for MySQL Server Rumi, June 14, 2020June 14, 2020 To increase the memory size for a MySQL Server, follow these steps: 1.Enter management mode by typing your password and pressing Enter twice. Select Exit to terminal using the arrow keys and then press Enter 2.Type: nano /etc/my.cnf 3.Locate the line innodb_buffer_pool_size = 1024M and change the number to 50%… Continue Reading
Install Nextcloud on Debian 10 Rumi, June 12, 2020 Install Apache, MariaDB and PHP NextCloud runs on the webserver, written in PHP and uses MariaDB to store their data. So you will need to install Apache, MariaDB, PHP and other required packages on your system. You can install all of them by running the following command: apt-get install apache2… Continue Reading
Install Graylog2 on Debian 9 Rumi, June 12, 2020 1 Install Required Packages Before starting, you will need to install Java 8 and other required packages to your system. Not all required packages are available in Debian 9 standard repository, so you will need to add Debian Backports to the list of package source. First, login with root user… Continue Reading
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