Hi,

[EMAIL PROTECTED] wrote:
> 
> I know this is bound to be something REALLY simple, but I can't seem to get
> "safe_mysqld" to run in background (Solaris 7/MySQL 3.23.37)
> 
> If I try, as the "root" user, to start "safe_mysqld" from the "/usr/local/mysql"
> directory thus...
> 
> ./bin/safe_mysqld --user=mysql &
> 
> ...I get the following message...
> 
> [1] + Stopped (SIGTTOU)        ./bin/safe_mysqld --user=mysql &
        ^^^^^^^^^^^^^^^^^
This means that the process (safe_mysqld) is blocked because it is trying
to write some message to your terminal while it is running in background.

You should try something like :
./bin/safe_mysqld --user=mysql > /tmp/safe_mysqld.log 2>&1 &

> 
> ...and it is not possible to connect to the server. However, if I try to start
> it in foreground thus...
> 
> ./bin/safe_mysqld --user=mysql
> 
> ...it works OK!!!
> 
> I must be missing something very obvious. Any Ideas?
> 
> Many Thanks,
>    =Adrian=
> 

Regards
--
Joseph Bueno
NetClub/Trader.com

---------------------------------------------------------------------
Before posting, please check:
   http://www.mysql.com/manual.php   (the manual)
   http://lists.mysql.com/           (the list archive)

To request this thread, e-mail <[EMAIL PROTECTED]>
To unsubscribe, e-mail <[EMAIL PROTECTED]>
Trouble unsubscribing? Try: http://lists.mysql.com/php/unsubscribe.php

Reply via email to