Search

Blogroll

Meta:

Mytop error “long|!”

November 17th, 2009 by vicky

If you run mytop on RHEL server (or CentOS 5.x) you may get error message saying

Error in option spec: “long|!”

You should edit file /usr/bin/mytop and comment out this line

“long|!” => \$config{long_nums},

after that, run mytop and all should work fine.

Enjoy! :-)

Posted in Mysql | No Comments »

Display mysql root password on Ensim server

October 22nd, 2008 by vicky

Ever wondered how to find out your mysql root password? Well, on Ensim server it is easy to find out.

ensim-python -c “import sys;sys.path.append(\”/usr/lib/opcenter/mysql\”);import mysqlbe;print mysqlbe.read_mysqlpass()”

It it one line command. Execute it from shell logged in as root. Works well :-)

Posted in Ensim, Mysql | No Comments »

Import and Export MySQL database

August 6th, 2007 by admin

This tutorial section deals with mysqldump which is a tool to import and export MySQL databases.

It can be used to back up a database or to move database information from one server to another.

Read the rest of this entry »

Posted in Mysql | No Comments »