LinuxQuestions.org

LinuxQuestions.org (/questions/)
-   Linux - Newbie (https://www.linuxquestions.org/questions/linux-newbie-8/)
-   -   mySQL Problem... (https://www.linuxquestions.org/questions/linux-newbie-8/mysql-problem-500635/)

kthnx 11-11-2006 12:50 PM

mySQL Problem...
 
I tried installing the mySQL Binary on Slackware 10.2 (w/ fluxbox if that matters).. I just downloaded it, tar -xzf'ed it, then ./configure;make;make installed it... I thought that would be all I needed, but whenever I try to start up the daemon, I get this error:
Code:

ERROR 2002 (HY000): Can't connect to local MySQL server through socket '/tmp/mysql.sock' (2)
Help plox? I don't know where the mysql.sock file is normally installed, then I can just start mysql up with a -S /normal/path/to/mysql.sock...

I can't find it =|

acid_kewpie 11-11-2006 01:02 PM

i just searched LQ for that exact error message, and got 70 exact identical questions... you might like to try that next time. the answer to all those threads... start the mysql service. all you'd doing is starting the client, not the daemon.

kthnx 11-11-2006 01:05 PM

Wait, I got it, and now i'm running the mysqld, but whenever I do I get this problem:

Code:

bash-3.00$ ./rc.mysqld start
bash-3.00$ Starting mysqld daemon with databases from /var/lib/mysql
STOPPING server from pid file /var/run/mysql/mysql.pid
061110 11:07:22  mysqld ended


btmiller 11-11-2006 01:13 PM

Does the file have executable permission? If not do chmod +x /etc/rc.d/rc.mysqld and try again.

Tinkster 11-11-2006 01:15 PM

The directory is odd (but then, I haven't tried 11 yet). And is the
script actually set to executable? :}

[edit]Heh, too slow[/edit]

Cheers,
Tink

kthnx 11-11-2006 01:19 PM

Yes it is. New issue. Sorry bout the confusion, Thank you all for your help.

It's 10.2 by the way. I have 11 on DVD and this damn lappy doesn't have a DVD drive ;)

kthnx 11-11-2006 01:25 PM

Wait, I don't think I even have a mysql.pid... what's going on... =|

kthnx 11-11-2006 02:12 PM

Bump! HELP ME! =|

Please.

Tinkster 11-11-2006 02:15 PM

No bumping 'til 24 hours are up. Read the rules


And no, if you didn't start the mysqld you wouldn't have a pid. And you
haven't answered btmillers question.


Cheers,
Tink

kthnx 11-11-2006 02:28 PM

Quote:

Originally Posted by btmiller
Does the file have executable permission? If not do chmod +x /etc/rc.d/rc.mysqld and try again.

Yes. The file has executable permission.

This is the error now:

Starting mysqld daemon with databases from /var/lib/mysql
STOPPING server from pid file /var/run/mysql/mysql.pid
061110 11:18:32 mysqld ended

I cd'ed to /var/run/mysql/ and the directory was empty...


Sorry about that, I didn't mean to annoy anyone by prematurely bumping, I just need to set up mySQL in a hurry, knaamean?

Wim Sturkenboom 11-12-2006 06:18 AM

I think you forget to create the initial database. Have a look in /etc/rc.mysqld, the command is mentioned there (something like mysql_installdb or so).

kthnx 11-12-2006 05:47 PM

I did, I ran the commands in the rc.mysqld file a while back. Created a password for the mysql user and everything.. I've done everything it says to do in the files, but I still get that error.


mysql@rawrcore:~$ Starting mysqld daemon with databases from /var/lib/mysql
STOPPING server from pid file /var/run/mysql/mysql.pid
061111 15:40:32 mysqld ended

kthnx 11-23-2006 08:43 AM

Quote:

061121 19:22:56 [ERROR] /usr/local/libexec/mysqld: Can't find file: './mysql/hel p_relation.frm' (errno: 13)
^^ That's the error I get when I run mysql_install_db. Where can I get that file?

Tinkster 11-23-2006 11:24 AM

So you installed MySQL from source and not the slackware package?


Cheers,
Tink

timmeke 11-24-2006 02:22 AM

Quote:

Originally Posted by kthnx
^^ That's the error I get when I run mysql_install_db. Where can I get that file?

Is that the exact error message? It seems that there is a space in the filename, which probably shouldn't be there.

Just to clarify the PID issue: the Process ID (PID) of many services/daemons are stored in files in /var/run when the service is started. This makes it very easy to:
1. stop the service (just executes a "kill" or "killall" on the stored PID)
2. check if the service is still running (by checking if the PID file exists or not).

So, when you start mysqld, it'll create the PID file in /var/run. In your case, mysqld then stopped immediately and erased the PID file (because the Process ID stored inside it is no longer valid).

Anyways, it seems that mysqld is starting allright, so no execution permission issue. It just immediately stops, probably caused by an error or something.
Maybe you can check out the MySql log files (if you don't know where they're stored, search in /var/log or on the MySql website). It should give you some indication why mysqld fails to start.


All times are GMT -5. The time now is 03:30 AM.