I had to code in to remove a host entry from hosts.cfg file of nagios. Here is a bit of superb code to do so..
sed '/#/{:a;N;/\}/!ba;/212.217.202.112/s/#.*\}//;}' hosts.cfg
That will remove the entire block starting with "# '212.217.202.112' host definition" and ending in "}"
Obfuscated code eh ? Not so..learn about registers in sed!!
Sunday, November 25, 2007
Multiline search and replace using sed
Posted by
HJKL a.k.a h2l
at
1:46 AM
0
comments
Labels: bash scripting, Linux, sed
Sunday, May 20, 2007
How to remove the mails from exim mail queue based on certain keywords ( cPanel specific )
How to remove the mails from exim mail queue based on certain keywords, especially in a cPanel. Below command will help in that and is for cPanel server. Matter of seconds for a seasoned admin, but posting so that I can copy and paste in future.
find /var/spool/exim/input -type f | xargs grep -l 'search_keywords' | xargs rm -frv
Posted by
HJKL a.k.a h2l
at
10:15 PM
1 comments
Wednesday, May 02, 2007
mod_rewrite and REQUEST_URI
Yesterday I did a forum move , a SMF forum. We had to move the forum URL from http://www.domain.com/forum to http://www.domain.com along with moving the servers, but still not losing the links spidered by Google. So things had to be achieved by mod_rewrite and the below rewrite rule helped.
RewriteEngine on
RewriteCond %{REQUEST_URI} ^/forum/(.*)$ [NC]
RewriteRule ^forum/(.*)$ /$1 [R=301,L]
What this will do is redirect
http://www.domain.com/forum/index.php?PHPSESSID=0aj813j131434061699fb61eef295f
to
http://www.domain.com/index.php?PHPSESSID=0aj813j131434061699fb61eef295f
Praise the mod_rewrite authors !!!
Posted by
HJKL a.k.a h2l
at
12:33 AM
0
comments
Labels: Apache, forum, mod_rewrite, REQUEST_URI
Tuesday, May 01, 2007
Forcing the files to be downloaded
Many of us have had to face the issue of making an txt file or .php file downloaded instead of the webserver parsing it and the browser displaying it. A simple entry as below in .htaccess and sometimes in your virtualhost section of httpd.conf can get this done.
Header add Content-Disposition "Attachment"
Posted by
HJKL a.k.a h2l
at
11:15 PM
0
comments
Sunday, April 29, 2007
semget: No space left on device
2 long months of no technical blogging..I have seen and gone through many issues , but hardly remembered about this blog :-(
Situation:
Restarting httpd works for port 80, but fails for 443 (SSL port). I confirmed it with a telnet localhost 443, which returned me connection refused error. Apache error log along with informational messages, was returning me,
semget: No space left on device
Solution :
To understand that is all because of semaphores getting build up and not being cleared properly. So we need to forcefully remove them.
Stop httpd. and issue the following command,
ipcs | grep nobody | awk '{print $2}' > clear.txt
for i in `cat clear.txt`; do { ipcrm -s $i; }; done;
And finally restart httpd. Please note that in the above command I used nobody to grep in ipcs, but in your case it can be apache or www or even www-data. But you know the drill!!!
Posted by
HJKL a.k.a h2l
at
6:54 PM
0
comments
Tuesday, February 13, 2007
cPanel and XWindows
XWindows dont work once cPanel is installed. Reasons are many why they disabled XWindows on the easy one script installation of cPanel, primary reason being security.
However I needed Xwindows to be running on a cPanel installed machine. Here is what I did.
- Edited /etc/rc.local and commented the line /scripts/securetmp
- /etc/init.d/xfs start
- chkconfig --add xfs
- chkconfig --level 2345 xfs on
5. chmod 2777 /tmp
6. Login screen came in and I logged in :-)
lol. That was easy isn't it ? May not be. Sometimes you need to edit the file /etc/X11/xorg.conf as well and search & comment the lines "FontPath "unix/:7100" . Rare cases. But that is a chance.
If you are reading this blog and even after trying these you are not able to get the XWindows working after these work arounds, please comment. I also played around a few more settings before I could get it work. May be I can remember on seeing the error.
Posted by
HJKL a.k.a h2l
at
12:49 AM
0
comments