Category: System Administration

venn-dev-test-prod 0

Why should we have separate development, testing, and production environments?

Development – It is an environment where developers commit code, experiments, fix bugs, make mistakes etc… Staging – It is an environment where manual or automated tests are executed, and due to complexity, these can consume a lot of server resources. Production – It is an environment where we create value for customers and/or the business. This is a highly sensitive environment and puts a deep effect on your reputation...

lamp linux 520x245 - Install LAMP on Ubuntu Using One Command 0

Install LAMP on Ubuntu Using One Command

LAMP stands for Linux, Apache, MySQL, and PHP. A LAMP is an open source Web development platform and its installation is the most common set of requirement, which is needed for development and production of web applications and software building up in PHP. There are many tutorials on the internet which tells about step by step LAMP installation and setup. Being an open source technology & its efficient working, the demand for LAMP...

find files linux 520x245 - How to find the list of newly created files and directories in Linux file system? 0

How to find the list of newly created files and directories in Linux file system?

Linux is growing by leaps and bounds over the past decade and most of the organizations are intensely switching their production server environment to it nowadays. Today, We are showing an amazing trick to find the list of all newly created files and directories for the last day in your Linux file system, using “find” command. The sole purpose of this tutorial is to find the record of newly created files and directories on your Linux machine. There are several benefits of...

MongoDB Administration 1

MongoDB Administration

Introduction Nowadays, Usage of MongoDB has grown up rapidly, but the main question is ??? How efficiently are you running MongoDB on your environment ??? Planning your environment and setting things up for success is great. In most of the cases, Administration and Monitoring of Mongo is “Taken with a grain of salt”. Monitoring Tools & Technique Log File – mongod.log The basic tool for monitoring activities in mongo is using its log file....

apache log client ip 520x245 - Configure Apache server to log client’s public IP addresses behind a Load Balancer 0

Configure Apache server to log client’s public IP addresses behind a Load Balancer

OBJECTIVE Today, We are configuring Apache to log the client’s source IP Address behind a load balancer, to track the authenticity of hits requested on your web server. This data collection will add a lot of advantage to your work. You can track and block IP addresses attempting DOS or DDOS attack to your website, using Web Application Firewall. Get the insights for Geolocation Setup and launch servers in multiple locations based on traffic generated from multiple...

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’] =...