【Mysql】指定/etc/init.d/mysql加载的配置文件

背景:线上的mysql数据库启动方式都是如下
  1. /home/data/mysql/bin/mysqld_safe --defaults-file=/home/data/mydata/3308/my.cnf &

现在希望在/etc/init.d下面加上mysql的启动脚本方便管理,那么就得做如下操作
  1. 拷贝启动目录下的启动脚本至/etc/init.d下
  2. cp /home/data/mysql/support-files/mysql.server  /etc/init.d/mysql

  3. 修改/etc/init.d/mysql
  4. basedir=/home/data/mysql
    datadir=/home/data/mydata/3308

  5. # Try to find basedir in /etc/my.cnf
    conf=/home/data/mysql
    /my.cnf    ---加载的配置文件会默认先调用/etc/my.cnf 在调用/home/data/mysql/my.cnf(mysqlbasedir目录下)
  6. 注意:如果配置文件不在/etc/或者basedir下,conf指定其它路径的配置文件不生效,还不知道为什么
 


测试:

  1. [root@host-192-168-1-56 init.d]# /etc/init.d/mysql start
    Starting MySQL... SUCCESS! 
    [root@host-192-168-1-56 init.d]# /etc/init.d/mysql status
    SUCCESS! MySQL running (48764)
  2. [root@host-192-168-1-56 init.d]# /etc/init.d/mysql stop
    Shutting down MySQL.. SUCCESS! 



注意:启动文件的conf配置文件要么指定/etc/下 要么指定basedir下,其他路径都不行!




来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/29096438/viewspace-2121816/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/29096438/viewspace-2121816/

你可能感兴趣的:(【Mysql】指定/etc/init.d/mysql加载的配置文件)