Nginx with Let’s Encrypt on Debian 10 Rumi, March 23, 2024 Step 1 — Installing Certbot The first step to using Let’s Encrypt to obtain an SSL certificate is to install the Certbot software on your server. Installing the python3-certbot-nginx package from the Debian repositories will allow us to install and use Cerbot’s nginx plugin. Working with Python 3 and the… Continue Reading
Cloudmin-GPL XEN on Debian 10 Rumi, April 7, 2023April 7, 2023 This article is inspired and prepared on the forked Cloudmin Xen script updated for Debian 10. However, the following procedures to be followed as precuationary before executing the updated script, which is available in this post in below section. PHASE-I Prepare Environment for XEN INSTALLING THE XEN HYPERVISOR AND HOST/CONTROL… Continue Reading
Install Netxtcloud on Debian 10 Rumi, December 16, 2021 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
Softether Linux Client using Bridged with Softether VPN Server Rumi, August 2, 2021 It’s assumed that you already have a vpn server deployed in your network, created user, password and enabled bridged network during vpn server configuration. A sample snippet of VPN Server Bridge enabled is below- So here’re the setup value- On Softether Server IP- 103.146.221.30/24 and Gateway- 103.146.221.1 Client Server IP-… Continue Reading
Install ONLYOFFICE Document Server with Nginx on Debian 10 Rumi, August 1, 2021 Step 1 – Install Packages Dependencies In this first step, we will install some packages dependencies needed by the Document Server, including the RabbitMQ-server, Redis, and Nginx-extras. Update your Debian system repository and install Document Server packages dependencies using the apt command below. sudo apt update sudo apt install redis-server… Continue Reading
Upgrade Debian 9 to Debian 10 Rumi, July 19, 2021 Update ALL existing installed packages Before you upgrade your Debian version to 10, you must apply all security patches and pending upgrades to Debian 9 itself Hence, Type the following apt command or apt-get command: sudo apt update sudo apt upgrade sudo apt full-upgrade sudo apt –purge autoremove OR sudo… Continue Reading
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
Install PHP 7.4 / 7.3 / 7.2 / 7.1 on Debian 10 / Debian 9 Rumi, October 26, 2020October 26, 2020 Add PHP Repository SURY, a third-party repository which offers PHP 7.4 / 7.3 / 7.2 / 7.1 for Debian operating system. By default, Debian 10 ships PHP v7.3. So, you can either install PHP v7.3 from Debian repository or SURY repository. Skip this section if you want to install PHP… Continue Reading
Easyengine installaiton on Debian 10 Rumi, August 13, 2020 Install Easyengine WordPress on a Debian 10 VM (mine was a KVM). The following procedure will install EE with following components; Docker WordPress Core MariaDB Nginx Server PHP-FPM Redis Cache Let’s encrypt SSL Install EasyEngine on Linux wget -qO ee rt.cx/ee4 && sudo bash ee ee site create your_domain –type=wp… 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