Re: show all running queries on linux

2005-03-18 Thread Gleb Paharenko
Hello. See: http://dev.mysql.com/doc/mysql/en/show-processlist.html > How can I see the running queries on a linux comp? > "Reinhart Viane" <[EMAIL PROTECTED]> wrote: -- For technical support contracts, goto https://order.mysql.com/?ref=ensita This email is sponsored by Ensita.N

Re: show all running queries on linux

2005-03-18 Thread Dan Nelson
In the last episode (Mar 18), Reinhart Viane said: > How can I see the running queries on a linux comp? "SHOW [FULL] PROCESSLIST". And you don't need to be running Linux; it's a standard mysql command. -- Dan Nelson [EMAIL PROTECTED] -- MySQL General Mailing List For list arch

Re: show all running queries on linux

2005-03-18 Thread Hassan Schroeder
Reinhart Viane wrote: How can I see the running queries on a linux comp? If you have a fairly standard config, with a log file defined -- prompt> grep '^log=' /etc/my.cnf | sed 's/log=//g' | xargs tail -f If there's no log file in /etc/my.cnf, start by putting one there :-) HTH! -- Hassan Schroeder

show all running queries on linux

2005-03-18 Thread Reinhart Viane
Hey list, How can I see the running queries on a linux comp? Thx Reinhart