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
Debian Wheezy repository Rumi, September 2, 2019 Debian wheezy is no longer supported. It is two major releases older than stable. It has not received any updates since 31 May 2018. The resolution is to dist-upgrade to oldstable, or to stable. You can still use the archive repository but there is no more updates: deb http://archive.debian.org/debian wheezy… Continue Reading
Set Up Apache Virtual Hosts on Debian 7 Rumi, July 29, 2019 Step One— Create a New Directory First, it is necessary to create a directory where we will keep the new website’s information. This location will be your Document Root in the Apache virtual configuration file. By adding a -p to the line of code, the command automatically generates all the… Continue Reading
Install Percona XtraDB Cluster for MySQL 5.7 on Debian 8 Rumi, February 18, 2019 First of all, why we choose three nodes and not only two? In any cluster, the number of nodes should be odd, so in the case of disconnection of a node, we assume that the highest group of servers has the fresh data, and should be replicated to the down node… Continue Reading
Varnish daemon not listening on configured port – Hack for Debian or Ubuntu Rumi, August 9, 2018 If you’re already troubled with varnish on changing listening ports from default. Here’s a little hack that worked on my Debian and Ubuntu distribution. sudo apt remove varnish sudo apt-get purge varnish # I manually remove the 3 files in created in /etc/systemd/system/* sudo apt install varnish sudo nano /lib/systemd/system/varnish.service… Continue Reading
Install XRDP in Debian 9 Rumi, August 8, 2018 Install XRDP and TigerVNC server $ sudo apt install -y xrdp tigervnc-standalone-server Connect XRDP from Windows 10 Windows start button -> Windows Accesssories -> Remote Desktop Connection Input FQDN or IP address of XRDP server and connect to XRDP. XRDP RDP terminal will appear. Select “XVNC” Session and connect. Continue Reading
Perfect FTP Server for Debian or Ubuntu Rumi, May 9, 2018 This installation was performed on a Ubuntu 14.04 distribution system. While there are a variety of FTP server tools available for Linux, one of the most popular and mature options is vsftpd. Begin by SSHing into your server as root and use the apt-get command to install vsftpd: apt-get update… Continue Reading
Install Proxmox VE on Debian 9 – Stretch Rumi, May 5, 2018June 2, 2018 The installation of a supported Proxmox VE server should be done via Bare-metal_ISO_Installer. In some case it makes sense to install Proxmox VE on top of a running Debian Stretch 64-bit, especially if you want a custom partition layout. For this HowTO the following Debian Stretch ISO was used: Install a… Continue Reading
How to disable Network Manager on Linux Rumi, May 4, 2018March 8, 2019 First Check if NetworkManager is running on Ubuntu / Debian Usually you should be using NetworkManager by default (Ubuntu 14.04), just in case you want to be sure, use this command to verify: dpkg –get-selections | grep network-manager In case there is some output like: network-manager install it is installed,… Continue Reading