Posts: 3,621
Name: Thierry
Location: I'm the uber Spaminator !
|
It looks lilke your db is stuck in a bad state.
Even creating an index on a multi million rows table should be done in a matter of minutes, not hours...
If you can access your server via ssh, I deduct that it's either an vps, or a private server.
In that case, I'd suggest you to try to restart the mysql service.
To do that, you need to become the admin on the server.
It can be done via the command "su" or "sudo".
su is the privilage escalation program to the super user. You have to be both allowed to use it, and to provide the super user (root) password.
It's usage is
Code:
su -
< enter root password >
/etc/init.d/mysql restart
sudo is a program that allows you to launch a process as the root, without escalating all your session to the root account.
You still need to be authorized to use the program, but this time, it's your personal account password that will be asked:
Code:
sudo /etc/init.d/mysql restart
< enter your user password >
If you have error messages sent back by the db, I'd suggest you to do a table repair.
Here is the documentation about it:
http://dev.mysql.com/doc/refman/5.0/...air-table.html
__________________
Only a biker knows why a dog sticks his head out the window.
|