Category: Latest

CSF Installation Guide 1

CSF Installation Guide Over Several Linux Distributions | Security | Linux Administration

Installation Guide – CSF Config Server Firewall, widely known as CSF is used to enhance the security of server’s or system’s running over various Linux distributions (generic Linux OS). CSF can be installed over Linux based Plain machines, VPS or Servers. It also provides preconfigured configurations and control panel UI’s for cPanel, DirectAdmin, and Webmin. Let’s begin with installation folks. Installation Commands cd /usr/src wget https://download.configserver.com/csf.tgz tar -xzf csf.tgz cd csf sh install.sh Test whether you have...

apache nodejs 1 520x245 - Configuring Reverse Proxy for Node.js application using Apache | Linux Administration 0

Configuring Reverse Proxy for Node.js application using Apache | Linux Administration

Node.js Node.js is widely used to build web applications with real-time, two-way connections, where both the client and server can initiate communication, allowing them to exchange data freely. The best side is that we don’t need a host container for building a web app just means including a library that listens for HTTP requests on a port and responds. It is as simple as just coding your app and let it listen on any non-privileged...

phpMyAdmin RDS 520x245 - Integrating phpMyAdmin with Amazon RDS Service - MySQL Instance | AWS Tutorials 1

Integrating phpMyAdmin with Amazon RDS Service – MySQL Instance | AWS Tutorials

In this tutorial, we will demonstrate the integration of phpmyadmin with running Amazon RDS MySQL instance. Kindly follow the instructions listed below. Default Document Root folder: /var/www/html cd /var/www/html Download phpMyAdmin from the authorized website or use the wget command below. wget https://files.phpmyadmin.net/phpMyAdmin/4.7.3/phpMyAdmin-4.7.3-all-languages.zip Unzip the phpMyAdmin. unzip phpMyAdmin-4.7.3-all-languages.zip mv phpMyAdmin-4.7.1-all-languages phpmyadmin && cd phpmyadmin Edit the configuration file for phpMyAdmin. mv config.sample.inc.php config.inc.php Default File vim config.inc.php /* Server parameters */ $cfg[‘Servers’][$i][‘host’] = ‘localhost’; $cfg[‘Servers’][$i][‘compress’] =...

cPanel Installation 520x245 - cPanel Installation Guide | Linux Administration 0

cPanel Installation Guide | Linux Administration

cPanel Installation Guide | Linux Administration  To install cPanel & WHM on your server, run the following command: cd /home && curl -o latest -L https://securedownloads.cpanel.net/latest && sh latest This command changes your session to the home directory, download the latest version of cPanel & WHM, and runs the installation script. You can find the detailed instructions regarding cPanel & WHM installations on the links provided below. Installation Guide Installation Guide – System Requirements Installation...

business time clock clocks 48770 1 520x245 - Time Synchronization with NTP | System Administration 0

Time Synchronization with NTP | System Administration

Network Time Protocol – System Administration We are going to show you a simple and handy way to setup NTP over single/multiple servers connected to a network for time synchronization. What is NTP? Network Time Protocol (NTP) is a networking protocol for Clock synchronization between computer systems over packet-switched data networks. Basically, a client requests the current time from a server and uses it to set its own clock. Learn...

Amazon s3 Backup 520x245 - Shell Script for backing up data to Amazon s3 1

Shell Script for backing up data to Amazon s3

s3cmd is a command line tool for saving, retrieving, uploading and managing data from Amazon s3. Its capacity to store huge amount of data on nominal charges, Amazon s3 is becoming one of the most suitable choices for storing data remotely. Pre-Requests Install amazon s3 cli on ec2. Create IAM role with s3 Access Configure s3cmd on ec2. Create Amazon s3 bucket for the backup process. Basic Bash Script, can be modified...