1.compile cronolog () and install it on /usr/local/sbin 2. backup orig /usr/local/apache-tomcat-5.5.20/bin/catalina.sh on /root 3. edit lines on catalina.sh from org.apache.catalina.startup.Bootstrap “$@” start...
Category - Quick Tips & Tricks
linux tips and tricks
Quick tip in backing up and restore your MySQL database: Backing up and Restoring MySQL database Backing up database: Syntax: mysqldump -u [username] -p [password] [databasename] > [backupfile.sql] o [username] -database...
Setting up mysql password is one of the essential task in systems administration Note: Linux/Unix login root account for your operating system and MySQL root are different You can use the built-in “mysqladmin” command to...
Finding CPU utilization is one of the important tasks in systems administration. There are built-in and 3rd party tools that you can use to perform this task. 1. top – displays Linux tasks this is the most common command used...
How to check if perl module is installed? A. Checking if Perl Module is Installed This is important on checking if a given perl module is already installed or not. Code: #perl -MModule::Name -e 1 if present, no errors...