Question : MySQL daemon acts differently at boot time

Hello,
I have a MySQL daemon which starts just fine with 'service mysql start'.
The problem is when I boot the system. The daemon starts but acts differently and I out of ideas what can be the source of this behavior.

Any guidance to solve the problem will be appreciated.

Answer : MySQL daemon acts differently at boot time

I couldn't resolve so I made a WORKAROUND.

vi /usr/bin/shmuel.pl

#!/usr/bin/perl
exec("service mysql restart >> /tmp/mysql-shmuel.log");


chmod a+rx shmuel.pl
vi /etc/inittab

# Run gettys in standard runlevels
1:2345:respawn:/sbin/mingetty tty1
2:2345:respawn:/sbin/mingetty tty2
3:2345:respawn:/sbin/mingetty tty3
4:2345:respawn:/sbin/mingetty tty4
5:2345:respawn:/sbin/mingetty tty5
6:2345:respawn:/sbin/mingetty tty6
shml:2345:once:/usr/bin/shmuel.pl # <---  Add this line
Random Solutions  
 
programming4us programming4us