Install Multipath on Debian Server Rumi, November 1, 2020 Note: This installation is tested on Debian 10 (Buster) edition. It might work for other versions of Debian as well. DMM Setup Overview DM-Multipath includes compiled-in default settings that are suitable for common multipath configurations. Setting up DM-multipath is often a simple procedure. The basic procedure for configuring your system… Continue Reading
Installing MySQL on Debian Rumi, September 26, 2020 Step 1 – Prerequisites Login to your Debian 9 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection. ssh root@debian9 Run below commands to upgrade the current packages to the latest version. sudo apt update sudo apt… Continue Reading
Install Mysql Client on Debian 10 (Buster) Rumi, August 6, 2020 Debian stopped packaging mysql-client as of buster. You can use apt-get install default-mysql-client Which will install mariadb-client-10.3. MariaDB is a fork of MySQL. The client can still be started with the command mysql. Continue Reading
Apache error fix on Forbidden You don’t have permission to access this resource Rumi, June 30, 2020 Tested and works on Debian/Ubuntu apache installation. For this open the apache2.conf file using the nano editor sudo nano /etc/apache2/apache2.conf Replace the general directory settings with this. <Directory /> #Options FollowSymLinks Options Indexes FollowSymLinks Includes ExecCGI AllowOverride All Order deny,allow Require all granted </Directory><Directory /usr/share> AllowOverride None Require all granted… Continue Reading
Linux Monitoring using Grafana InfluxDB and Telegraf on Debian 10 Rumi, June 19, 2020 The basic installation of Grafana InfluxDB and Telegraf is described in my other post here- Install Grafna, InfluxDB, Telegraf for Jitsi Video Meet Monitoring on Debian 10 All is needed is to create a telegraf configuration file: nano /etc/telegraf.d/dashboard.conf # Global tags can be specified here in key=”value” format. [global_tags] #… 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
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
How To Install MySQL on Debian 9 (Stretch) with version selection Rumi, May 17, 2020May 17, 2020 Step 1 – Prerequisites Login to your Debian 9 system using shell access. For remote systems connect with SSH. Windows users can use Putty or other alternatives applications for SSH connection. ssh root@debian9 Run below commands to upgrade the current packages to the latest version. sudo apt update sudo apt… Continue Reading
Install Proxmox VE 6 on Debian 10 (Buster) Rumi, October 25, 2019 Proxmox Virtual Environment (VE) is an enterprise-grade open-source server virtualization solution based on Debian Linux distribution with a modified Ubuntu LTS kernel. It allows you to deploy and manage both virtual machines and containers. This setup presumes you have a running Debian 10 Buster Linux server running. If you don’t… Continue Reading