Newly installed mysql 4.0

2004-03-17 Thread ryan

(newbie warning)
Hi,
I just removed 3.23  and installed 4 (the first time I have done an installation.) as 
per the docs I then tried to make a password for root and ran this from SSH root:

# /usr/bin/mysqladmin -u root password 'jman77'

but got this a reply:

/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket '/var/lib/mysql/mysql.sock' 
(2)'
Check that mysqld is running and that the socket: '/var/lib/mysql/mysql.sock' exists!

Why is that? what should I do?

Please explain in steps coz am just trying to get the hang of this.

Thanks,
-Ryan

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



Re: Newly installed mysql 4.0

2004-03-17 Thread Paul DuBois
At 10:04 -0800 3/17/04, [EMAIL PROTECTED] wrote:
(newbie warning)
Hi,
I just removed 3.23  and installed 4 (the first time I have done an 
installation.) as per the docs I then tried to make a password for 
root and ran this from SSH root:

# /usr/bin/mysqladmin -u root password 'jman77'

but got this a reply:

/usr/bin/mysqladmin: connect to server at 'localhost' failed
error: 'Can't connect to local MySQL server through socket 
'/var/lib/mysql/mysql.sock' (2)'
Check that mysqld is running and that the socket: 
'/var/lib/mysql/mysql.sock' exists!

Why is that? what should I do?
Check that mysqld is running.  That's the kind of error you get if the
server isn't running.
It may also be that it's running, but the MySQL 4 server is using a different
socket file than your old 3.23 server.
--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
MySQL Users Conference: April 14-16, 2004
http://www.mysql.com/uc2004/
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: Newly installed mysql 4.0

2004-03-17 Thread Victor Medina
Your mysql server is not running my friend! =)

Try /etc/init.d/mysqld start -- this should be able to turn it on!
You can not change the passwords with the server off

Best Regards
On Wed, 2004-03-17 at 14:04, [EMAIL PROTECTED] wrote:
 (newbie warning)
 Hi,
 I just removed 3.23  and installed 4 (the first time I have done an installation.) 
 as per the docs I then tried to make a password for root and ran this from SSH 
 root:
 
 # /usr/bin/mysqladmin -u root password 'jman77'
 
 but got this a reply:
 
 /usr/bin/mysqladmin: connect to server at 'localhost' failed
 error: 'Can't connect to local MySQL server through socket 
 '/var/lib/mysql/mysql.sock' (2)'
 Check that mysqld is running and that the socket: '/var/lib/mysql/mysql.sock' exists!
 
 Why is that? what should I do?
 
 Please explain in steps coz am just trying to get the hang of this.
 
 Thanks,
 -Ryan
-- 

 |...|
 |  _    _|Victor Medina M   |
 |\ \ \| |  _ \ / \   |Linux - Java - MySQL  |
 | \ \ \  _| | |_) / _ \  |Dpto. Sistemas - Ferreteria EPA   |
 | / / / |___|  __/ ___ \ |[EMAIL PROTECTED]  |
 |/_/_/|_|_| /_/   \_\|Tel: +58-241-8507325 - ext. 325   |
 ||Cel: +58-412-8859934  |
 ||geek by nature - linux by choice  |
 |...|


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



Re: Newly installed mysql 4.0

2004-03-17 Thread ryan

Hey, 
thanks for replying.

 Your mysql server is not running my friend! =)
 
 Try /etc/init.d/mysqld start -- this should be able to turn it on!
 You can not change the passwords with the server off


I finally found the correct place to start  and did this:

/usr/sbin/mysqld start

but got back this message:

Starting MySQL:[FAILED]
You have new mail in /var/spool/mail/root
[EMAIL PROTECTED] root]# /usr/sbin/mysqld start
040317 21:30:50  Can't start server: Bind on TCP/IP port: Address already in use
040317 21:30:50  Do you already have another mysqld server running on port: 3306 ?
040317 21:30:50  Aborting

040317 21:30:50  /usr/sbin/mysqld: Shutdown Complete


Now what do I do?

Thanks,
-Ryan

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



Re: Newly installed mysql 4.0

2004-03-17 Thread Paul DuBois
At 11:32 -0800 3/17/04, [EMAIL PROTECTED] wrote:
Hey,
thanks for replying.
 Your mysql server is not running my friend! =)

 Try /etc/init.d/mysqld start -- this should be able to turn it on!
 You can not change the passwords with the server off


I finally found the correct place to start  and did this:

/usr/sbin/mysqld start

but got back this message:

Starting MySQL:[FAILED]
You have new mail in /var/spool/mail/root
[EMAIL PROTECTED] root]# /usr/sbin/mysqld start
040317 21:30:50  Can't start server: Bind on TCP/IP port: Address 
already in use
040317 21:30:50  Do you already have another mysqld server running 
on port: 3306 ?
040317 21:30:50  Aborting

040317 21:30:50  /usr/sbin/mysqld: Shutdown Complete

Now what do I do?
Okay, that appears to indicate that the server *is* running, so perhaps
it's using a different socket file than your old server.
Do you have a /var/lib/mysql/mysql.sock file?  How about /tmp/mysql.sock?

Try using mysqladmin to connect using a TCP/IP connection rather than
through the socket file:
mysqladmin -u root -h 127.0.0.1 variables

If that works, look through the output to see what the value of socket
is.
--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
MySQL Users Conference: April 14-16, 2004
http://www.mysql.com/uc2004/
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: Newly installed mysql 4.0.

2004-03-17 Thread ryan

Hey,
Thanks for replying.

I see that my mysql server IS running...

 Do you have a /var/lib/mysql/mysql.sock file?  How about /tmp/mysql.sock?

**That didnt work.

**And neither did this:
[EMAIL PROTECTED] root]# mysqladmin -u root -h 127.0.0.1 variables
mysqladmin: connect to server at '127.0.0.1' failed

error: 'Access denied for user: '[EMAIL PROTECTED]' (Using password: NO)'


**Then tried to do a search:

[EMAIL PROTECTED] root]# find / -name *mysql.sock*
find: /proc/23989/fd: No such file or directory
/home/virtual/site1/fst/var/lib/mysql/mysql.sock
[EMAIL PROTECTED] root]#

**Finally this gave some results

[EMAIL PROTECTED] root]# mysqladmin -u root -p
mysqladmin  Ver 8.40 Distrib 4.0.18, for pc-linux on i686
Copyright (C) 2000 MySQL AB  MySQL Finland AB  TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license

Administration program for the mysqld daemon.
Usage: mysqladmin [OPTIONS] command command
  -c, --count=#   Number of iterations to make. This works with -i
  (--sleep) only
  -#, --debug[=name]  Output debug log. Often this is 'd:t:o,filename'
  -f, --force Don't ask for confirmation on drop database; with
  multiple commands, continue even if an error occurs.
  -C, --compress  Use compression in server/client protocol
  --character-sets-dir=name
  Directory where character sets are.
  -?, --help  Display this help and exit.
  -h, --host=name Connect to host
  -p, --password[=name]
  Password to use when connecting to server. If password is
  not given it's asked from the tty.
  -P, --port=#Port number to use for connection.
  -r, --relative  Show difference between current and previous values when
  used with -i. Currently works only with extended-status.
  -O, --set-variable=name
  Change the value of a variable. Please note that this
  option is deprecated; you can set variables directly with
  --variable-name=value.
  -s, --silentSilently exit if one can't connect to server
  -S, --socket=name   Socket file to use for connection.
  -i, --sleep=#   Execute commands again and again with a sleep between.
  -u, --user=name User for login if not current user.
  -v, --verbose   Write more information.
  -V, --version   Output version information and exit
  -E, --vertical  Print output vertically. Is similar to --relative, but
  prints output vertically.
  -w, --wait[=#]  Wait and retry if connection is down
  --connect_timeout=#
  --shutdown_timeout=#

Variables (--variable-name=value)
and boolean options {FALSE|TRUE}  Value (after reading options)
- -
count 0
force FALSE
compress  FALSE
character-sets-dir(No default value)
host  (No default value)
port  0
relative  FALSE
socket/home/virtual/FILESYSTEMTEMPLATE/.mysqlsock/my
sql.sock
sleep 0
user  root
verbose   FALSE
vertical  FALSE
connect_timeout   43200
shutdown_timeout  3600

Default options are read from the following files in the given order:
/etc/my.cnf /var/lib/mysql/my.cnf ~/.my.cnf
The following groups are read: mysqladmin client
The following options may be given as the first argument:
--print-defaultsPrint the program argument list and exit
--no-defaults   Don't read default options from any options file
--defaults-file=#   Only read default options from the given file #
--defaults-extra-file=# Read this file after the global files are read

Where command is a one or more of: (Commands may be shortened)
  create databasename   Create a new database
  drop databasename Delete a database and all its tables
  extended-status   Gives an extended status message from the server
  flush-hosts   Flush all cached hosts
  flush-logsFlush all logs
  flush-status  Clear status variables
  flush-tables  Flush all tables
  flush-threads Flush the thread cache
  flush-privileges  Reload grant tables (same as reload)
  kill id,id,...Kill mysql threads
  password new-password Change old password to new-password
  ping  Check if mysqld is alive
  processlist   Show list of active threads in server
  reloadReload grant tables
  refresh   Flush all tables and close and open logfiles
  shutdown  Take server down
  status

Re: Newly installed mysql 4.0.

2004-03-17 Thread Paul DuBois
At 12:24 -0800 3/17/04, [EMAIL PROTECTED] wrote:
Hey,
Thanks for replying.
I see that my mysql server IS running...

 Do you have a /var/lib/mysql/mysql.sock file?  How about /tmp/mysql.sock?
**That didnt work.
Didn't work?  I didn't ask you do try anything, I just asked if either
of those files exist.
**And neither did this:
[EMAIL PROTECTED] root]# mysqladmin -u root -h 127.0.0.1 variables
mysqladmin: connect to server at '127.0.0.1' failed
error: 'Access denied for user: '[EMAIL PROTECTED]' (Using password: NO)'
That's a good sign, actually.  I means that mysqladmin was able to
find the server and attempt to connect to it.  That's good. The server rejected
the connection attempt, so that's not so good. :-)
I would next ask you to try specifying your password:

mysqladmin -u root -p -h 127.0.0.1 variables

except that you may not know it, correct?



**Then tried to do a search:

[EMAIL PROTECTED] root]# find / -name *mysql.sock*
find: /proc/23989/fd: No such file or directory
/home/virtual/site1/fst/var/lib/mysql/mysql.sock
[EMAIL PROTECTED] root]#
**Finally this gave some results
The following occurs because you didn't tell mysqladmin to do anything,
so it prints its help message.  This would happen regardless of whether
the server is running.
[EMAIL PROTECTED] root]# mysqladmin -u root -p
mysqladmin  Ver 8.40 Distrib 4.0.18, for pc-linux on i686
Copyright (C) 2000 MySQL AB  MySQL Finland AB  TCX DataKonsult AB
This software comes with ABSOLUTELY NO WARRANTY. This is free software,
and you are welcome to modify and redistribute it under the GPL license
Administration program for the mysqld daemon.
Usage: mysqladmin [OPTIONS] command command
  -c, --count=#   Number of iterations to make. This works with -i
  (--sleep) only
  -#, --debug[=name]  Output debug log. Often this is 'd:t:o,filename'
  -f, --force Don't ask for confirmation on drop database; with
  multiple commands, continue even if an error occurs.
  -C, --compress  Use compression in server/client protocol
[etc]

--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
MySQL Users Conference: April 14-16, 2004
http://www.mysql.com/uc2004/
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]


Re: Newly installed mysql 4.0.

2004-03-17 Thread Paul DuBois
At 21:54 +0100 3/17/04, Ryan A wrote:
Hey Paul,

 error: 'Access denied for user: '[EMAIL PROTECTED]'
 (Using password: NO)'
 That's a good sign, actually.
Finally a good sign.

  I means that
 mysqladmin was able to
 find the server and attempt to connect to it.
 That's good. The server rejected
 the connection attempt, so that's not so
 good. :-)
Crap! spoke to soon! :-)


 I would next ask you to try specifying your password:

 mysqladmin -u root -p -h 127.0.0.1 variables

 except that you may not know it, correct?
Nope, anyway to override...delete it, burn it, damn it to hell or just jump
on the SOB?
Depends.

You mentioned earlier that your MySQL start command is:

/usr/sbin/mysqld start

Does

/usr/sbin/mysqld stop

stop the current server?

If it does not, I suggest that you force the server down with kill -9 PID
(where PID is the process ID of the server).
Once the server is down, use the following procedure to restart it and reset
the root password:
http://www.mysql.com/doc/en/Resetting_permissions.html

--
Paul DuBois, MySQL Documentation Team
Madison, Wisconsin, USA
MySQL AB, www.mysql.com
MySQL Users Conference: April 14-16, 2004
http://www.mysql.com/uc2004/
--
MySQL General Mailing List
For list archives: http://lists.mysql.com/mysql
To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]