Adding modsecurity rule for domain
Linux General,Add the below rule in the .htaccess file. SecRuleEngine Off This will work only if you have old version of mod_security installed on the server. You cannot disable mod_security2 using .htaccess, the only way to bypass mod_security2 in Apache 2 is to manually edit httpd.conf. Create a directory with the username and the domain name,…
Read moreMysql Queries in Linux
Linux General,How to resolve mysql_connect() Error Warning: mysql_connect() [function.mysql-connect]: Access denied for user ‘username’@’localhost’ (using password: YES) Possible root cause for this problem is proper privilege not assigned to the particular user. So providing proper privileges will solve this issue. $grant all privileges on “Database_Name” to “username@localhost” identified by “password” If the mysql resides in the…
Read moreSolusVM Master Installation
Blade / Virtualization,Linux General,SolusVM Solus Virtual Manager (SolusVM) is a powerful GUI based VPS management system with full OpenVZ, Xen Paravirtualization and Xen HVM support. SolusVM allows you and your clients to manage a VPS cluster with security & ease. Requirements SolusVM requires the following specification:CentOS 5+ based linux operating systemAt least one external IP addressOpenVZ – Ensure…
Read morePlesk VPS Migration for plesk 9 series
Linux/Windows Support,Plesk,1. Upload migration agent and modules to the source server. For example for Parallels Plesk Panel, there are two folders: “/usr/local/psa/PMM/agents/shared” and “/usr/local/psa/PMM/agents/PleskX”. Use the command below to copy the Migration Manager: destination ~# scp -r /usr/local/psa/PMM/agents/shared/* /usr/local/psa/PMM/agents/PleskX/* root@source:temporary_migration_directory/ 2. Login to source server and change to directory /temporary_migration_directory. Run migration agent (PleskX.pl) with parameter…
Read moreDoes DNS use TCP or UDP or both?
Linux General,Does DNS use TCP or UDP or both? TCP is a connection-oriented protocol and it requires data to be consistent at the destination and UDP is connection-less protocol and doesn’t require data to be consistent or don’t need a connection to be established with host for consistency of data. UDP packets are smaller in size.…
Read morePRTG Network Monitor
Monitoring,PRTG Network Monitor runs 24/7 on a Windows-based machine within your network, recording network usage parameters. Recorded data is stored in a database for historic reports. The easy to use web-based user interface allows to configure the devices and sensors that you want to monitor. You can create usage reports and provide colleagues and customers…
Read moreLinux – Advanced Commands
Linux General,Show status of ethernet interface eth0: ethtool eth0 List addresses for interfaces: ip addr show (OR) ip a Set default gateway: ip route add default via 1.2.3.254 List routing table: ip route show Add (or del) ip and mask (255.255.255.0): ip addr add 1.2.3.4/24 brd + dev eth0 Text Manipulation: Replace string1 with string2: sed…
Read moreLinux – Ethernet bonding
Linux General,Linux bond or team multiple network interfaces (NIC) into single interface We have two Dell servers that need setup with Intel Dual Gig NIC. My idea is to improve performance by pumping out more data from both NIC without using any other method. This box act as heavy duty ftp server. Each night I need…
Read moreLinux – Tweaks
Linux General,Fork Bomb on Linux/Unix: Q. Explain following bash code or bash fork() bomb? : () { : | :& };: A. This is a bash function. It gets called recursively (recursive function). This is most horrible code for any Unix / Linux box. It is often used by sys admin to test user processes limitations…
Read moreHow to identify CPU resource problem?
FreeBSD,Linux General,vmstat command helps us to determine if a server is running short of CPU resources. First, let us determine the number of CPUs available Linux: $ grep -i processor /proc/cpuinfo | wc -l FreeBSD: $ sysctl -a ‘hw.ncpu’ Run vmstat command 10 times with an interval of 5 seconds $ vmstat 5 10 procs ———–memory———-…
Read more