RedHat 7 and mySQL

Craig White craigwhite@azapple.com
Tue, 2 Jan 2001 23:34:17 -0700


> -----Original Message-----
> From: plug-discuss-admin@lists.plug.phoenix.az.us
> [mailto:plug-discuss-admin@lists.plug.phoenix.az.us]On Behalf Of Mark
> Phillips
> Sent: Tuesday, January 02, 2001 10:09 PM
> To: plug-discuss@lists.plug.phoenix.az.us
> Subject: RE: RedHat 7 and mySQL
>
>
> Craig,
>
> Thanks! I also got it to work with /usr/bin/safe_mysqld -user=root &
>
> Since I know everything is working now, I will change the user to
> something
> other than root.
>
----
if you check out the /etc/rc.d/init.d/mysqld ... the way it launches the
mysql daemon server is...

	/usr/bin/safe_mysqld --user=mysql --log=/var/log/mysqld.log \
			--pid-file=/var/run/mysqld.pid >/dev/null 2>&1 &

Craig