dapurhosting.com Blog for Tech

September 25, 2011

Install MYTOP

Filed under: MySql,Server,Stat — dh @ 2:38 pm

Donwload:
http://jeremy.zawodny.com/mysql/mytop/

Install:

tar -zxvf mytop-*
cd mytop-*
perl Makefile.PL
make
make test
make install
cd ..
rm -rf mytop-*

Fix MyTop Error

#mytop
Error in option spec: "long|!"

pico /usr/bin/mytop
Run a search for long|! and comment out the following line:
“long|!” => \$config{long_nums},

Here's the exact error from DBI. It might help you debug:

Unknown database 'test'

mysql
create database test;

Install HTOP

Filed under: Server,Stat — dh @ 11:40 am

32bit
wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.i386.rpm
rpm -Uhv rpmforge-release*.rf.i386.rpm

64bit
wget http://packages.sw.be/rpmforge-release/rpmforge-release-0.5.2-2.el5.rf.x86_64.rpm
rpm -Uhv rpmforge-release*.rf.x86_64.rpm

Now that the rpmforge repository is installed, you can install the htop package easily via yum.

yum install htop

May 1, 2010

Exim Cheatsheet

Filed under: Server — Tags: , — dh @ 11:40 am

http://bradthemad.org/tech/notes/exim_cheatsheet.php

February 25, 2010

Installing Screen in Centos

Filed under: Server — dh @ 5:18 pm

Screen lets you have multiple virtual window in one physical terminal. Screen lets you detach and reattach to your virtual windows, which is good if you are compiling remotely.

Download the latest Screen RPM

http://www.rpmfind.net/linux/rpm2html/search.php?query=screen

Install Screen dependencies

#yum -y install ncurses-devel texinfo pam-devel libtool

Install Screen

#rpmbuild –rebuild screen-4.0.2-5.src.rpm
#rpm -ivh /usr/src/redhat/RPMS/i386/screen-4.0.2-5.src.rpm

#screen -ls

Create Screen Session

#screen

Create Screen Virtual window

press ctrl+a,c

Change between Screens

press ctrl+a, 0 Session 0
press ctrl+a, 1 Session 1
press ctrl+a, 2 Session 2

To resume a Screen session

#screen -r session name

How To Use Screen

Filed under: Server — dh @ 5:15 pm

Now open a new window with “Ctrl-A” “c”

To get back to top, use “Ctrl-A “n”

Ctrl-A” “p” for the previous window

“Ctrl-A” “d” will drop you into your shell

screen -ls will list active screen

screen -r 99999.xxxx.xxxxx will attach screen

February 15, 2010

Scp has been disabled on the remote server or is missing

Filed under: Server — dh @ 6:54 am

ls -l /usr/bin/scp

If its 0 then make it 755

chmod 755 /usr/bin/scp

December 11, 2009

Rebuild cPanel’s PHP

Filed under: cPanel/WHM,Server — dh @ 2:54 am

To rebuild cPanel’s php so cPanel use difference PHP, you can use this syntax

/scripts/makecpphp

June 8, 2009

Mass Change Permission

Filed under: Securtiy,Server — dh @ 5:42 pm

Go to your directory

to change permission from one to other

find -perm 777 -exec chmod 755 {} \; -print

To change all directory permission

find -type d -perm 777 -exec chmod 755 {} \; -print

To change all public_html permission

cd /home; find -name "public_html" -exec chmod 711 {} \;

May 14, 2009

Mass Change Nameservers in DNS Zone

Filed under: Server — dh @ 5:13 pm


cd /var/named
replace 'ns1.olddomain.com' 'ns1.newdomain.com' -- *.db
replace 'ns2.olddomain.com' 'ns2.newdomain.com' -- *.db

You have to replace ns1/ns2.olddomain.com and ns1/ns2.newdomain.com with the correct nameservers.

Restart named using the command


service named restart
named -u named
ls /scripts/ | grep named
/scripts/rebuilddnsconfig

Also remember to change your nameserver too


vi /etc/nameserverips

April 24, 2009

Find User’s Files

Filed under: Server — dh @ 7:05 am

find / -user username | more

find /home/david -name ‘index*’
find /home/david -iname ‘index*’

http://www.codecoffee.com/tipsforlinux/articles/21.html

Find String On File

grep -H -r “text-to-find” /directory

cari file hari ini

find . -mtime -1 \! -type d -exec ls -l {} \;

« Newer PostsOlder Posts »

Powered by WordPress