Network Monitoring, Traffic With TCPTRACK Centos Or Redhat
For Network Monitoring, Traffic With TCPTRACK Centos Or Redhat following this step
1. Before install tcptrack, install libcap, libcap-devel with yum
2. Download TCPTRACL in http://www.rhythm.cx/~steve/devel/tcptrack/release/1.2.0/source/tcptrack-1.2.0-1.src.rpm
3. rpm -ivh tcptrack-1.2.0-1.src.rpm
Read more
Limit access phpmyadmin with htaccess and IP
Following this step
1. Add script in file httpd.conf, like this:
<Directory “/var/www/html/phpmyadmin”>
Options FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
Authname Protected
AuthType Basic
AuthUserFile “/var/www/html/phpmyadmin/.htpasswd”
require user user
</Directory>
Read more
How to create services in Centos
Following this step
1. create file with your editor, example
nano /etc/init.d/tesme
In file tesme
#/bin/sh
Tesss xxxx
Quit and save
Read more
PHPmyadmin error “You should upgrade to PHP 5.2 or later”
If web server error like this phpmyadmin error “You should upgrade to PHP 5.2 or later”, following this step for fix problem.
- Edit httpd.conf
- in line DirectoryIndex index.html index.html.var
- Add index.php like this DirectoryIndex index.php index.html index.html.var
- Save and Quit
- Restart your Apache
OK god lucks
Install MySQL 6.0 tar gz in Debian
For install MySQL 6.0 following this step:
1. Download MySQL in http://dev.mysql.com/downloads/
2. Install this App;
apt-get install make
apt-get install gcc
apt-get install libgcc1
apt-get install g++
apt-get install cpp
Read more




