1 mysql_safe

原理

mysqld_safe其实为一个shell脚本(封装mysqld),启动时需要调用server和database(即/bin和/data目录),因此需要满足下述条件之一:

1 /bin和/data和mysql_safe脚本位于同一目录;

2 如果本地目录找不到找到/bin和/data,mysqld_safe试图通过绝对路径定位(/usr/local);

shell> cd mysql_installation_directory

shell> bin/mysqld_safe &

如果从MySQL安装目录调用仍然失败,需要--ledir和--datadir选项来指示服务器和数据库的安装目录。

注:service mysql start  , /etc/init.d/mysql  最终调的也是mysqld_safe

参数

路径

--basedir=path

The path to the MySQL installation directory.

--ledir=path

If mysqld_safe cannot find the server, use this option to indicate the path name to the directory where the server is located.

--datadir=path

The path to the data directory.

选项文件

--defaults-extra-file=path

The name of an option file to be read in addition to the usual option files. This must be the first option on the command line if it is used. If the file does not exist or is otherwise inaccessible, the server will exit with an error.

--defaults-file=file_name

The name of an option file to be read instead of the usual option files. This must be the first option on the command line if it is used

输出日志

--log-error=file_name

Write the error log to the given file

--syslog, --skip-syslog

syslog causes error messages to be sent to syslog on systems that support the logger program. --skip-syslog suppresses the use of syslog; messages are written to an error log file.

注:如果上述3个选项都不指定,默认为—skip-syslog;如果同时指定log-error和syslog则以前者为准;

其他

--malloc-lib=[lib_name]

The name of the library to use for memory allocation instead of the systemmalloc()library.

The --malloc-lib option works by modifying the LD_PRELOAD environment value to affect dynamic linking to enable the loader to find the memory-allocation library when mysqld runs:

--mysqld=prog_name

The name of the server program (in the ledir directory) that you want to start. This option is needed if you use the MySQL binary distribution but have the data directory outside of the binary distribution. If mysqld_safe cannot find the server, use the --ledir option to indicate the path name to the directory where the server is located.

执行流程

mysqld_safe脚本执行的基本流程:

1、查找basedir和ledir。

2、查找datadir和my.cnf。

3、解析my.cnf中的组[mysqld]和[mysqld_safe]并和终端里输入的命令合并。

4、对系统日志和错误日志的判断和相应处理,及选项--err-log参数的赋值。

5、对选项--user,--pid-file,--socket及--port进行处理及赋值,保证启动时如果不给出这些参数它也会有值。

6、启动mysqld.

a)启动时会判断一个进程号是否存在,如果存在那么就在错误日志中记录"A mysqld process already exists"并且退出。

b)如不存在就删除进程文件,如果删除不了,那么就在错误日志中记录"Fatal error: Can't remove the pid file"并退出。

注:

1、mysqld_safe增加了一些安全特性,例如当出现错误时重启服务器并向错误日志文件写入运行时间信息。

2、如果有的选项是mysqld_safe 启动时特有的,那么可以终端指定,如果在配置文件中指定需要放在[mysqld_safe]组里面,放在其他组不能被正确解析。

3、mysqld_safe启动能够指定内核文件大小 ulimit -c $core_file_size以及打开的文件的数量ulimit -n $size。

4、MySQL程序首先检查环境变量,然后检查配置文件,最后检查终端的选项,说明终端指定选项优先级最高。

代码

在一个死循环里调用mysqld启动数据库,接下来检查pid-file,如果不存在说明mysqld被正常关闭则退出循环;接下来判断进程是否hang,如果是则kill -9;

注:mysql_safe会反复尝试启动数据库,如果mysqld无法启动则会消耗大量CPU,为此5.6加入一个判断条件,若一秒内启动了5次则sleep 1;

while true

do

rm -f $safe_mysql_unix_port "$pid_file"     # Some extra safety

if test -z "$args"

then

$NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file="$pid_file"  >> "$err_log" 2>&1

else

eval "$NOHUP_NICENESS $ledir/$MYSQLD $defaults --basedir=$MY_BASEDIR_VERSION --datadir=$DATADIR $USER_OPTION --pid-file="$pid_file"  $args >> "$err_log" 2>&1"

fi

if test ! -f "$pid_file"            # This is removed if normal shutdown

then

echo "STOPPING server from pid file $pid_file"

break

fi

if false && test $KILL_MYSQLD -eq 1

…..

done

非正常关闭数据库时应先杀死mysqld_safe,而后是mysqld,否则mysqld会被再次启动

http://blog.csdn.net/thinke365/article/details/5016411

http://bugs.mysql.com/bug.php?id=54035

2 单机安装多个数据库

单机可以安装多个版本的mysql binary;

非共享参数

每个mysql binary必须拥有独自的数据目录,日志文件和pid文件,以及socket和port;

如果mysql安装在不同路径,则可为每个安装路径指定—basedir,这样每个安装路径都自动使用各自的数据目录,日志文件和pid文件;

此时只需为每个mysql单独指定—socket和—port即可;

指定非默认端口和socket文件

shell> cmake . -DMYSQL_TCP_PORT=port_number  -DMYSQL_UNIX_ADDR=file_name -DCMAKE_INSTALL_PREFIX=/usr/local/mysql-5.6.23

查看已安装数据库使用的参数,比如base directory和unix socket,避免新安装的数据库使用同样参数从而产生冲突;

shell> mysqladmin --host=host_name --port=port_number variables

注:如果host为localhost,则mysqladmin默认使用unix socket,可通--protocol=tcp显示声明

创建data directory

有两种创建方式:

1 新建数据目录  ,mysql_install_db;

2 复制已有的数据目录,关闭现有mysqld;复制数据目录;修改my.cof;启动mysqld;

如何启动特定的mysql

1

shell> mysqld_safe --defaults-file=/usr/local/mysql/my.cnf

shell> mysqld_safe --defaults-file=/usr/local/mysql/my.cnf2

2

shell> MYSQL_UNIX_PORT=/tmp/mysqld-new.sock

shell> MYSQL_TCP_PORT=3307

shell> export MYSQL_UNIX_PORT MYSQL_TCP_PORT

shell> mysql_install_db --user=mysql

shell> mysqld_safe --datadir=/path/to/datadir &

3

shell> mysqld_multi [options] {start|stop|reload|report} [GNR[,GNR] ...]

读取my.cnf中对应的[mysqldN]

# This file should probably be in your home dir (~/.my.cnf)

# or /etc/my.cnf

# Version 2.1 by Jani Tolonen

[mysqld_multi]

mysqld     = /usr/local/bin/mysqld_safe

mysqladmin = /usr/local/bin/mysqladmin

user       = multi_admin

password   = multipass

[mysqld6]

socket     = /tmp/mysql.sock6

port       = 3311

pid-file   = /usr/local/mysql/var6/hostname.pid6

datadir    = /usr/local/mysql/var6

language   = /usr/local/share/mysql/japanese

user       = jani

注:每个数据库用于关闭mysqld的帐号和密码最好保持一致

http://blog.itpub.net/15480802/viewspace-1412269/

my3319.cnf 配置:

[mysqld]
socket =/usr/local/mysql/dbdata_3309/mysql3309.sock
port =
pid-file = /usr/local/mysql/dbdata_3309/mysql3309.pid
datadir = /usr/local/mysql/dbdata_3309
basedir = /usr/local/mysql
server-id=

启动MySQL:

mysqld_safe --defaults-file=/usr/local/mysql/dbdata_3309/my3319.cnf &

mysql_safe和mysql_multi的更多相关文章

  1. 利用mysql_multi来管理多实例:

    mysql_multi的现实意义: 1:随着连接数上升,性能会下降,通过多实例来分流大量连接来提高性能. 2:做资源隔离 3:分库分表 mysql_multi是官方管理多实例的一个脚本,利用perl语 ...

  2. Mysql利用mysql_multi配置一台主机多个实例(转)

    在Mysql官方帮助文档中,详细记录中Mysql的启动方式,有mysqld_safe.mysql.server.mysql_multi这三种.关于mysql_multi的介绍: Mysqld_mult ...

  3. mysql_multi启动数据库

    1.初始化数据库 在$mysql_base目录下,新增加存放data的文件夹,用mysql_install_db命令执行初始化 [root@ora11g scripts]# ./mysql_insta ...

  4. mysql脚本mysql_safe解释、mysql.sock文件、mysql_install_db

    1.首先解释下,启动mysql时为何会调用mysql_safe脚本来启动mysql [root@localhost ~]# /etc/init.d/mysqld start 正在启动 mysqld: ...

  5. (3.3)mysql基础深入——mysql启动深入分析

    基础:(2.1)学习笔记之mysql基本操作(启动与关闭) 0.mysql启动的 3种方式 (1)mysql.server (2)mysqld_safe (3)mysqld 1.启动分析 [1.1]概 ...

  6. Mysql_Learning_Notes_mysql系统结构_2

    Mysql_Learning_Notes_mysql系统结构_2 三层体系结构,启动方式,日志类型及解析方法,mysql 升级 连接层 通信协议处理\线程处理\账号认证(用户名和密码认证)\安全检查等 ...

  7. mysql basic operation,mysql总结,对mysql经常使用语句的详细总结,MySQL学习笔记

    mysql> select * from wifi_data where dev_id like "0023-AABBCCCCBBAA" ; 1.显示数据库列表.show d ...

  8. Centos 下 mysql root 密码重置

    重置mysql密码的方法有很多,官网也提供了很方便的快捷操作办法,可参考资料 resetting permissions .本文重置密码的具体步骤如下: 一.停止MySQL(如果处于运行状态) #se ...

  9. mysql 5.6.24安装实例

    安装前准备工作: 1)编辑PATH路径 vim /etc/profile PATH=/home/mysql/bin:/home/mysql/lib:$PATH export PATH 2)生效PATH ...

随机推荐

  1. 【c++基础】C与C++接口相互调用

    前言 编译程序的时候出现错误,入口程序如果是cpp文件可以编译成功,如果是c程序则出错.一般这个问题是c与c++之间接口相互调用出现的问题. 出现的错误是undefined reference to ...

  2. mongoDB主从和集群

    主从(windows下的配置) 主服务器设置 mongod --dbpath=F:\mongoDB\db --master \\dbpath是设定数据存放路径 --master是指定为主库 从服务器设 ...

  3. Springboot项目中异常拦截设计与处理

    背景: 项目运行过程中会出现各种各样的问题,常见的有以下几种情况: 业务流程分析疏漏,对业务流程的反向操作.边界分析设计不充分 调用外部服务.调用外部系统出现的超时.错误.返回值与预期不符 外部资源连 ...

  4. 谷歌浏览器调试javascript方法

    谷歌浏览器调试javascript方法 1 ctrl + shift + f 全局文件搜索 然后加断点 也可以直接编辑js文件 保存后 就更新了 一般用在点击事件上 ps:如果加了断点 刷新浏览断点消 ...

  5. BugkuCTF~Misc~WriteUp

    1.签到 get flag: Qftm{You should sign in} 2.这是一张单纯的图片 查看图片十六进制 提去特殊字符串进行解码 get flag: key{you are right ...

  6. 一分钟 - 创建python虚拟环境

    python创建虚拟环境 python安装第三方库大都是通过pip命令安装,这个命令确实是很简便的,而对于每个独立的项目来说,需要用到的库或许会不同,如果删除或更新原来已有的版本库,或许会导致其他的项 ...

  7. python基础 — random库

    python中用于生成伪随机数的函数库是random 因为是标准库,使用时候只需要import random random库包含两类函数,常用的共8个 --基本随机函数: seed(), random ...

  8. Linux远程管理命令

    关机\重启 shutdown 选项 时间 参数 -r 重启 例子: shutdown 1分钟后关机 shutdown now 立刻关机 shutdown –r now 立即重启 shutdown 20 ...

  9. JavaScript进行UTF-8编码与解码

    JavaScript本身可通过charCodeAt方法得到一个字符的Unicode编码,并通过fromCharCode方法将Unicode编码转换成对应字符. 但charCodeAt方法得到的应该是一 ...

  10. go 疑难杂症

    func Test_doSeond(t *testing.T) { msg := make([]Msg, 0) for i := 0; i < 5; i++ { m := Msg{ data: ...