|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
hi everybody,
pls tell me how to start mysql server at boot time.... thanx |
|
#2
|
|||
|
|||
|
Hi,
I believe that differs between distributions, but on Red Hat or RH derived distro you can do this in the following way: as root: cd /etc/rc.d/rc3.d ln -s /etc/rc.d/init.d/mysql S98mysql That's it! :-) The above was done on Mandrake 7.0, which has the same structure as Red Hat. How does it work? /etc/rc.d/init.d contains scripts to start and stop services on your computer. By creating a symlink to mysql startup script in /etc/rc.d/rc3.d you're telling your system to run it during runlevel 3 startup, which is your regular login. You can also start and stop your services manually using files in /etc/rc.d/init.d directly, for example: /etc/rc.d/init.d/mysql start /etc/rc.d/init.d/mysql stop barrrt |
|
#3
|
|||
|
|||
|
thanx u very much......
|
![]() |
| Viewing: Dev Shed Forums > Databases > MySQL Help > how to start mysql at boot time in LInux |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|