Re: mysql: not found

2003-11-17 Thread Stephen Fromm

- Original Message - 
From: "Kelley Prebil" <[EMAIL PROTECTED]>
To: <[EMAIL PROTECTED]>
Sent: Monday, November 17, 2003 9:33 PM
Subject: mysql: not found


> When I try to start the database with :
>
> mysql -h host -u user -p
>
> I get the response :
>
> mysql: not found
>
> What does this mean?  Installation went smoothly as far as I could tell.

Sounds like you don't have your path set up.

> Also, when I try to start the database with :
>
> bin/mysqld_safe --user=mysql &
>
> It starts the mysqld daemon from the right directory, and then promplty
says :
>
> 031117 18:07:39  mysqld ended
>
> Any help would be appreciated as I couldn't find anything in the manuals
about troubleshooting.
>
> Kelley
>
> --
> Kelley Rianna Prebil
> http://www.pearlsgirl.com
> --
>
> -- 
> MySQL General Mailing List
> For list archives: http://lists.mysql.com/mysql
> To unsubscribe:
http://lists.mysql.com/[EMAIL PROTECTED]
>


-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



mysql: not found

2003-11-17 Thread Kelley Prebil
When I try to start the database with :

mysql -h host -u user -p

I get the response :

mysql: not found

What does this mean?  Installation went smoothly as far as I could tell.

Also, when I try to start the database with :

bin/mysqld_safe --user=mysql &

It starts the mysqld daemon from the right directory, and then promplty says :

031117 18:07:39  mysqld ended

Any help would be appreciated as I couldn't find anything in the manuals about 
troubleshooting.

Kelley

--
Kelley Rianna Prebil
http://www.pearlsgirl.com
--

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]



--with-mysqld-user=mysql: not found configure error on 4.0.13

2003-06-19 Thread Douglas B. Jones
Hi,

My configure/compilation script is:
--
#!/usr/bin/ksh
D=mysql-4.0.13
#PORT=3306
PORT=3406
H=/usr/local/mysql-4-test
CC="cc -pthread"
export CC
CXX="cxx -pthread -O"
export CXX
cd $D
./configure \
--prefix=$H
--with-mysqld-user=mysql\
--with-tcp-port=$PORT\
--with-unix-socket-path=$H/var/mysql.sock\
--with-named-thread-libs="-lpthread -lmach -lexc -lc"\
--enable-thread-safe-client   
gmake
--
I get this error in the output of the configure, but it goes on and
compiles with user as root instead of mysql as I specified in my script.
This worked fine under 3.x.
--

./do4[14]: --with-mysqld-user=mysql:  not found
cd libmysql; gmake link_sources
gmake[1]: Entering directory `/src/net/db/mysql/mysql-4.0.13/libmysql'
--

This is just part of the output from my 'do4' script.

Thanks,
Douglas

-- 
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]