Mysql not working

dedicated

Verified User
Joined
Jul 25, 2005
Messages
5
php, html working fine but for some reason mysql is not working.

It seem that I have made a mistake while updating mysql ... if anyone can help please let me know.
 
Last edited:
OS: FC2

I updated mysql from 4.1.11 to 4.1.13 and the problem started.

when I type mysqld as root I get the following

050725 11:09:03 [Warning] Asked for 196608 thread stack, but got 126976
050725 11:09:03 [ERROR] Can't start server: Bind on TCP/IP port: Address already in use
050725 11:09:03 [ERROR] Do you already have another mysqld server running on port: 3306 ?
050725 11:09:03 [ERROR] Aborting
 
Make sure no other process of mysql is running. If there is, kill it.
Or simply restarting your server might correct the problem if you don't want to or know how to kill a process.
 
jmstacey said:
Make sure no other process of mysql is running. If there is, kill it.
Or simply restarting your server might correct the problem if you don't want to or know how to kill a process.

I did restart the server more than 3 times and the problem still there
 
Then did you make sure that only one process of mysql is trying to start? Check your startup scripts.
Have you tried killing all mysql processes manually and then restarting only one process?
 
it is working now but I don't know what made it work. Thanks everyone for the help.
 
Same problem

admin@server:~$ ps waux | grep mysqld
root 4025 0.0 0.1 3660 1288 ? S 20:20 0:00 /bin/sh /usr/bi n/mysqld_safe
mysql 4062 0.0 1.7 128128 17616 ? Sl 20:20 0:00 /usr/sbin/mysql d --basedir=/usr --datadir=/var/lib/mysql --user=mysql --pid-file=/var/run/mysql d/mysqld.pid --skip-external-locking --port=3306 --socket=/var/run/mysqld/mysqld .sock
root 4063 0.0 0.0 2744 564 ? S 20:20 0:00 logger -p daemo n.err -t mysqld_safe -i -t mysqld
admin 5912 0.0 0.0 2852 712 pts/0 S+ 22:16 0:00 grep mysqld


That is the output you asked for earlier??? I am using Apache server
 
Back
Top