How to Install SonarQube on Debian 11
LinuxIntroduction SonarQube is an open-source web-based platform for code quality analysis based on Java. That is to detect bugs, code smells, and security vulnerabilities. It analyses a wide range of code written in different programming languages, for example, JavaScript, PHP, C#, C/C++, and Java through plugins. It’s customizable to test…
Redirect HTTP Requests To HTTPS On Nginx
LinuxIntroduction This Quickstart guide describes how to redirect non-secure HTTP requests to secure HTTPS on Nginx. Prerequisites You have a Vultr Linux instance running Nginx. You have a domain name (e.g example.com), whose DNS A records for “@” and “www” point to the IP of your instance. Ideally, you should also have a valid…
How to Install Memcached from Source on Ubuntu 20.04
LinuxInstall Dependencies You need to install some tools to compile the Memcached source package. $ sudo apt-get install gcc make libevent-dev libc6-dev –no-install-recommends The option –no-install-recommends is used to install mentioned package only. The other package descriptions are below: gcc is a well-known C compiler for the Memcached source files. make is used for…
How to Install MariaDB on Ubuntu 24.04
LinuxIntroduction MariaDB is an open-source relational database management system that works as a drop-in replacement for MySQL with improved reliability, performance, and flexibility. MariaDB uses the same SQL syntax as MySQL to enable the creation and management of databases on a server. This article explains how to install MariaDB on…
How to Install MongoDB on Ubuntu 24.04
LinuxInstall MongoDB MongoDB is not available in the default package repositories on Ubuntu 24.04. Follow the steps below to add the MongoDB repository and install MongoDB. Visit the MongoDB releases page and verify the latest version to install. For example, MongoDB 8.0. Import the MongoDB GPG key. console $ curl -fsSL https://www.mongodb.org/static/pgp/server-8.0.asc |…
Install and Configure Apache Hadoop on Ubuntu 20.04
LinuxIntroduction Apache Hadoop is an open-source software framework used to store, manage and process large datasets for various big data computing applications running under clustered systems. It is Java-based and uses Hadoop Distributed File System (HDFS) to store its data and process data using MapReduce. In this article, you will…