What is .htaccess and how to disable .htaccess? .htaccess is use to modify the way Apache behaves for a directory and it’s sub-directories. It gives you an extra control on your server, like setting up custom error messages, password protect a directory, writing rewrite rules, blocking IPs etc. However, it can be a potentially dangerous [...]
January 17th, 2012 |
admin |
Problem: Not able to list more than 2000 files in a directory using Ftp. Solution: The pure-ftp by default limit maximum number of # files to be displayed to 2000. So edit your pureftpd configuration file which is at /etc/pure-ftpd.conf and change the line LimitRecursion 2000 8 to LimitRecursion 5000 8 Save the file and [...]
December 18th, 2011 |
admin |
You must be thinking that I’m kidding. Nope I’m not. Let me explain. After installing Linux the first thing you should do is turn off all services and deny all incoming traffic till you configured the box securely. But why…? A default installation could run many nonessential services. These services can turn into security risks. [...]
December 17th, 2011 |
admin |
By default Apache webserver listen on port 80 (http) and port 443 (https i.e. secure http). Apache webserver uses the TCP protocol to transfer information/data between server and browser. The default Iptables configuration does not allow inbound access to the HTTP (80) and HTTPS (443) ports used by the web server. This post explains how [...]
December 16th, 2011 |
admin |
FreeBSD is a Unix-like free operating system. You can install to choose third party software on FreeBSD from the Ports Collection. Many services such as POP3 server daemons, IMAP, etc. could be started using the inetd. However, networking can be stop or started using special script located in /etc/rc.d/ directory. This directory includes script to [...]
December 16th, 2011 |
admin |
Generic troubleshooting tips 1) Use tail –f to watch log file in real time, advantage is simple you can spot error or warning message in real time. tail –f /path/to/log/file Example(s): # tail –f /var/log/maillog 2) Use telnet command to see if you get response or not. Sometime you will also see some informative message: [...]
December 16th, 2011 |
admin |
The default LAMP installation on Ubuntu 10 server doesn’t include mod_rewrite module. This module is required by WordPress MU. I tried to install a WordPress MU on my Ubuntu server with LAMP. To install mod_rewrite, run command as below: sudo a2enmod rewrite There is still another issue for WordPress MU installation. It is need a [...]
December 14th, 2011 |
admin |
This problem is solve, issue was not with NTP but with xinetd service. when i run these commands on 172.25.32.1 problem is solved. chkconfig time-dgram on chkconfig time-stream on service xinetd restart Incoming search terms:rdate connection refused (21)rdate: couldnt connect to host connection refused (8)rdate: connect: connection refused (7)rdate: couldn\t connect to host (6)rdate: couldnt [...]
December 12th, 2011 |
admin |
Latest update of the openssl package from CentOS breaks Parallels Panel 9.x. The following errors are displayed in the /var/log/sw-cp-server/error_log file when Panel is trying to start: # tail /var/log/sw-cp-server/error_log 2010-04-07 01:56:38: (log.c.75) server started 2010-04-07 01:56:38: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0) 2010-04-07 01:57:59: (log.c.75) server started 2010-04-07 01:57:59: (network.c.336) SSL: error:00000000:lib(0):func(0):reason(0) 2010-04-07 01:57:59: (log.c.75) server started [...]
December 12th, 2011 |
admin |
A) Download Subversion You’ll need the latest version of.. the Windows binaries the “run Subversion as a windows service” wrapper the TortoiseSVN shell integration utility B) Install Subversion Unzip the Windows binaries to a folder of your choice. I chose c:\program files\subversion\ as my path. Now, add the subversion binaries to the path environment variable for [...]