admin on May 21st, 2009

I would like to inform the WPMU users about a strange behavior that drove me crazy some days ago. Upgrading from previous versions to the 2.7.1 version, we got strange random errors, some kind of random “hang on” in the wpmu blogs network. After digging for a while, we found this bug: http://core.trac.wordpress.org/ticket/8590 The problem [...]

Share and Enjoy:
  • Facebook
  • Twitter
  • Tumblr
  • del.icio.us
  • PDF
  • RSS
  • email
  • LinkedIn
  • HackerNews
  • Google Bookmarks
  • Digg
  • MySpace
  • Technorati
  • Reddit
  • Blogosphere News
  • Identi.ca
  • Netvibes
  • Ping.fm
  • Simpy
  • StumbleUpon

Continue reading about WordPress mu random timeouts

admin on May 7th, 2009

How you know how much will pay for the bandwidth used in a server inside the Cloud? Often cloud services give you a calculator but this is based on Giga Bytes per Month of traffic but normally you measure bandwidth throughput on your server in kbps. Install some graphical tool for collection of bandwidth data [...]

Share and Enjoy:
  • Facebook
  • Twitter
  • Tumblr
  • del.icio.us
  • PDF
  • RSS
  • email
  • LinkedIn
  • HackerNews
  • Google Bookmarks
  • Digg
  • MySpace
  • Technorati
  • Reddit
  • Blogosphere News
  • Identi.ca
  • Netvibes
  • Ping.fm
  • Simpy
  • StumbleUpon

Continue reading about Bandwidth: kbps to GB/month conversion

admin on April 29th, 2009

In the need for a quick pipeline to encrypt and decrypt data, gpg can be quite handy, for example it can be used in this way to encrypt  some backup before transferring it to a third part hosted  storage: cat backupfile.tgz | gpg -c –cipher-algo=BLOWFISH > backupfile.tgz.gpg (you’ll be asked for the Passphrase to use [...]

Share and Enjoy:
  • Facebook
  • Twitter
  • Tumblr
  • del.icio.us
  • PDF
  • RSS
  • email
  • LinkedIn
  • HackerNews
  • Google Bookmarks
  • Digg
  • MySpace
  • Technorati
  • Reddit
  • Blogosphere News
  • Identi.ca
  • Netvibes
  • Ping.fm
  • Simpy
  • StumbleUpon

Continue reading about Quick data pipeline for encryption and decryption

admin on April 21st, 2009

To clear the whole Postfix mail queue you can use this command: ~# for i in `mailq|grep ‘@’ |awk {‘print $1′}|grep -v ‘@’`; do postsuper -d $i ; done Thomas Sewell from coolsewell.com contributed with this helpful notes: you could also just do: postsuper -d ALL to clear all mail queues or even postsuper -d [...]

Share and Enjoy:
  • Facebook
  • Twitter
  • Tumblr
  • del.icio.us
  • PDF
  • RSS
  • email
  • LinkedIn
  • HackerNews
  • Google Bookmarks
  • Digg
  • MySpace
  • Technorati
  • Reddit
  • Blogosphere News
  • Identi.ca
  • Netvibes
  • Ping.fm
  • Simpy
  • StumbleUpon

Continue reading about Clear the whole Postfix mail queue

admin on April 21st, 2009

Sometimes a backup is needed but the server storage is not enough, in this case you must backup your data on the fly via the net, without the facility of storing locally and then transfer the data. There are many methods to backup your data on the fly, using rsync via ssh is one for [...]

Share and Enjoy:
  • Facebook
  • Twitter
  • Tumblr
  • del.icio.us
  • PDF
  • RSS
  • email
  • LinkedIn
  • HackerNews
  • Google Bookmarks
  • Digg
  • MySpace
  • Technorati
  • Reddit
  • Blogosphere News
  • Identi.ca
  • Netvibes
  • Ping.fm
  • Simpy
  • StumbleUpon

Continue reading about Quick System Backup via Netcat