wordpress 

How to enable permalinks in WordPress – Ubuntu Apache2

To enable permalinks in WordPress while hosting on an Ubuntu server with Apache2, you can follow these steps: 1. Log into your server: Ensure that you have SSH access to your Ubuntu server. 2. Install WordPress: If you haven’t already, install WordPress on your server. You can follow the WordPress installation guide for Ubuntu: https://getcodify.com/setting-up-wordpress-on-ubuntu-with-apache2-mysql-and-ssl/ 3. Configure Apache2: Make sure your Apache2 server is configured to serve your WordPress site. You may need to set up virtual hosts if you haven’t already. Here’s a simplified example: With this command, you…

Read More
linux Ubuntu 

How to install Erlang/OTP on Ubuntu 22.04|20.04|18.04 LTS

Erlang is a general-purpose or you might say a functional programming language and runtime environment. It was built in such a way that it had inherent support for concurrency, distribution, and fault tolerance. Erlang was originally developed to be used in several large telecommunication systems. But it has now slowly made its foray into diverse sectors like eCommerce, computer telephony, and banking sectors as well. Step1: Get Erlang GPG Key Run the below commands in the terminal to import Erlang repository GPG key: Step 2: Add Erlang Repository Ubuntu 22.04/20.04:…

Read More
NodeJS linux Node JS 

How to install node.js in ubuntu

Install node.js in ubuntu. Currently, the node.js is one of the most popular server-side javascript engines with compiles javascript code at the server-side. Pre-requisites before installation: Please do check your ubuntu version and the latest stable release is installed. Steps to install node.js 1# Step: At first please update/ refresh your ubuntu using the apt package manager. 2# Step: Installing node from the ubuntu repository. 3# Step: After node.js installation at most of the cases you might also need to install npm (node package manager) in windows when you install…

Read More
mongodb Amazon(AWS) linux Mongo DB NoSQL 

How to Install MongoDB Server in Ubuntu AWS EC2 updated in 2020

MongoDB is a free and open-source NoSQL database used in modern-day web applications. In this article, we will install and configure security auth features. #1 Step: installing MongoDB server First Update your ubuntu so that all the latest LTS settings can configure. Install Mongo using below command Note: If any error occurred while installing please refer below.Click here for force install solution #2 Step: Verifying and configuring server autostart By now the database server is automatically started after installation. if not you can follow the below step. How to verify whether…

Read More
aws-ubuntu Amazon(AWS) Hosting 

How To Install Linux, Apache, MySQL, PHP (LAMP) stack on AWS Ubuntu

While Setting up the AWS or any other linux cloud hosting service there are many things we need to take care of while installing the LAMP stack to ubuntu. LAMP(Linux, APACHE, MySQL, PHP)? AMP stack is a group of open source software used to get web servers up and running. The acronym stands for Linux, Apache, MySQL, and PHP. Since the virtual private server is already running Ubuntu, the linux part is taken care of. Here is how to install the rest. Before Starting LAMP Installation you need to set…

Read More