MySQL start and stop
一、本文说明
本实验主要是演示MySQL的四种启动方式,附带停止的操作。
二、mysqld
mysqld is the MySQL server mysqld reads options from the [mysqld] and [server] groups we can invoke mysqld manually.This is usually not done except for debugging purposes.If you invoke the server this way,error messages go to the terminal by default rather than to the error log.
connection
start
./bin/mysqld --defaults-file=./my.cnf --user=mysql
connect
mysql --defaults-file=./my.cnf
mysql -S /tmp/mysql.sock
----启动:
[root@node4 mysql5.5]# ./bin/mysqld --defaults-file=./my.cnf --user=mysql &
[] 11315
[root@node4 mysql5.5]# 130729 0:50:34 InnoDB: The InnoDB memory heap is disabled
130729 0:50:34 InnoDB: Mutexes and rw_locks use InnoDB's own implementation
130729 0:50:34 InnoDB: Compressed tables use zlib 1.2.3
130729 0:50:34 InnoDB: Initializing buffer pool, size = 128.0M
130729 0:50:34 InnoDB: Completed initialization of buffer pool
130729 0:50:34 InnoDB: highest supported file format is Barracuda.
130729 0:50:34 InnoDB: Waiting for the background threads to start
130729 0:50:35 InnoDB: 1.1.8 started; log sequence number 1595675
130729 0:50:36 [Note] Event Scheduler: Loaded 0 events
130729 0:50:36 [Note] ./bin/mysqld: ready for connections.
Version: '5.5.22-log' socket: '/tmp/mysql.sock' port: 3306 Source distribution [root@node4 mysql5.5]# ps -ef |grep mysql |grep -v grep
mysql 11315 5333 1 00:50 pts/1 00:00:00 ./bin/mysqld --defaults-file=./my.cnf --user=mysql
----连接:
[root@node4 mysql5.5]# mysql --defaults-file=./my.cnf
[root@node4 mysql5.5]# mysql -S /tmp/mysql.sock
----关闭:
[root@node4 mysql5.5]# mysqladmin shutdown
三、mysqld_safe
mysqld_safe reads all options the [mysqld],[server],and [mysqld_safe] sections in option files.For backward compatibility,it also reads [safe_mysqld] sections,although you should rename such sections to [mysqd_safe] in MySQL 5.1 installations. mysqld_safe is a shell script that invokes mysqld.The script sets up the error log,and then launches mysqld and monitors it.If mysqld terminates abnormally,mysqld_safe restarts it.
connection
start
mysqld_safe --defaults-file=./my.cnf --user=mysql &
connect
mysql --defaults-file=./my.cnf
mysql -S /tmp/mysql.sock
----启动:
[root@node4 mysql5.5]# ./bin/mysqld_safe --default-file=./my.cnf --user=mysql &
[] 11352
[root@node4 mysql5.5]# 130729 00:54:22 mysqld_safe Logging to '/opt/mysql5.5/data/node4.err'.
130729 00:54:23 mysqld_safe Starting mysqld daemon with databases from /opt/mysql5.5/data
130729 00:54:25 mysqld_safe mysqld from pid file /opt/mysql5.5/data/node4.pid ended []+ Done ./bin/mysqld_safe --default-file=./my.cnf --user=mysql
----连接:
[root@node4 mysql5.5]# mysql --defaults-file=./my.cnf
[root@node4 mysql5.5]# mysql -S /tmp/mysql.sock
----关闭:
[root@node4 mysql5.5]# mysqladmin shutdown
四、mysql.server
MySQL distributions on Unix include a script named mysql.server.It can be used on
systems such as Linux and Solaris that use System V-style run directaries to start and stop
system services.It is also used by the Max OS X Startup Item for MySQL.
$MySQL_BASE/share/mysql/mysql.server and support-files/mysql.server
mysql.server reads options from the [mysql.server] and [mysqld] sections of option files.
For backward compatibility,it also reads [mysql_server] sections,although you should rename
such sections to [mysql.server] when using MySQL 5.1
a shell script that invoke mysqld_safe.
connection
start
cd share/mysql
./mysql.server start
cp ./mysql.server /etc/rc.d/init.d/mysql
chkconfig --add mysql
service mysql start
connect
mysql --default-file=./my.cnf
mysql -S /tmp/mysql.sock
----启动:
[root@node4 mysql5.5]# ./support-files/mysql.server start
Starting MySQL... [ OK ]
[root@node4 mysql5.5]# ps -ef |grep mysql |grep -v grep
root 11873 1 1 01:01 pts/1 00:00:00 /bin/sh /opt/mysql5.5/bin/mysqld_safe --datadir=/opt/mysql5.5/data --pid-file=/opt/mysql5.5/data/node4.pid
mysql 12329 11873 4 01:01 pts/1 00:00:00 /opt/mysql5.5/bin/mysqld --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data --plugin-dir=/opt/mysql5.5/lib/plugin --user=mysql --log-error=/opt/mysql5.5/data/node4.err --pid-file=/opt/mysql5.5/data/node4.pid --socket=/tmp/mysql.sock --port=3306
----设置随系统启动而启动MySQL
[root@node4 mysql5.5]# cp ./support-files/mysql.server /etc/init.d/mysql
[root@node4 mysql5.5]# chkconfig --add mysql
[root@node4 mysql5.5]# chkconfig --list mysql
mysql 0:off 1:off 2:on 3:on 4:on 5:on 6:off
[root@node4 mysql5.5]# service mysql start
Starting MySQL.. [ OK ]
[root@node4 mysql5.5]# ps -ef |grep mysql |grep -v grep
root 12423 1 1 01:03 pts/1 00:00:00 /bin/sh /opt/mysql5.5/bin/mysqld_safe --datadir=/opt/mysql5.5/data --pid-file=/opt/mysql5.5/data/node4.pid
mysql 12881 12423 3 01:03 pts/1 00:00:00 /opt/mysql5.5/bin/mysqld --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data --plugin-dir=/opt/mysql5.5/lib/plugin --user=mysql --log-error=/opt/mysql5.5/data/node4.err --pid-file=/opt/mysql5.5/data/node4.pid --socket=/tmp/mysql.sock --port=3306
---连接:
[root@node4 mysql5.5]# mysql --defaults-file=./my.cnf
[root@node4 mysql5.5]# mysql -S /tmp/mysql.sock
----关闭:
[root@node4 mysql5.5]# mysqladmin shutdown
[root@node4 mysql5.5]# service mysql stop
Shutting down MySQL. [ OK ]
五、mysqld_multi
mysqld_multi is designed to manage several mysqld processes that listen for connections on different Unix socket files and TCP/IP prots.It can start or stop servers,or report their current status.The MySQL Instance Manager is an alternative means of managing multiple servers
how to config
1). mkdir $MySQL_BASE/data2
2). mysql_install_db --basedir=$mysql_base --datadir=$mysql_base/data2 --user=mysql
3). vi $MySQL_BASE/my.cnf
[mysqld_multi]
mysqld = /opt/mysql5152/bin/mysqld_safe
mysqladmin = /opt/mysql5152/bin/mysqladmin
user = test
password = test
[mysqld3306]
.
.
.
4). mysqld_multi --defaults-file=./my.cnf start 3306
5). mysql -uroot -P 3306 --protocol=tcp
mysql -S /tmp/mysql3306.sock
6). GRANT SHUTDOWN ON *.* TO 'test'@'localhost' IDENTIFIED BY 'test';
7). mysqld_multi --defaults-file=./my.cnf stop 3306
----创建存放数据库的目录
[root@node4 mysql5.5]# mkdir data2
----创建数据库基表
[root@node4 mysql5.5]# ./scripts/mysql_install_db --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data2 --user=mysql
Installing MySQL system tables...
130729 1:35:52 [Warning] You need to use --log-bin to make --binlog-format work.
OK
Filling help tables...
130729 1:35:52 [Warning] You need to use --log-bin to make --binlog-format work.
OK To start mysqld at boot time you have to copy
support-files/mysql.server to the right place for your system PLEASE REMEMBER TO SET A PASSWORD FOR THE MySQL root USER !
To do so, start the server, then issue the following commands: /opt/mysql5.5/bin/mysqladmin -u root password 'new-password'
/opt/mysql5.5/bin/mysqladmin -u root -h node4 password 'new-password' Alternatively you can run:
/opt/mysql5.5/bin/mysql_secure_installation which will also give you the option of removing the test
databases and anonymous user created by default. This is
strongly recommended for production servers. See the manual for more instructions. You can start the MySQL daemon with:
cd /opt/mysql5.5 ; /opt/mysql5.5/bin/mysqld_safe & You can test the MySQL daemon with mysql-test-run.pl
cd /opt/mysql5.5/mysql-test ; perl mysql-test-run.pl Please report any problems with the /opt/mysql5.5/scripts/mysqlbug script!
----修改data2目录的属主
[root@node4 mysql5.5]# chown -R mysql:mysql data2/
----修改my.conf文件,添加下面的内容
[root@node4 mysql5.5]# more my.cnf
[mysqld_multi]
mysqld = /opt/mysql5.5/bin/mysqld_safe
mysqladmin = /opt/mysql5.5/bin/mysqladmin
user = test
password = test # The MySQL server
[mysqld3306]
port = 3306
socket = /tmp/mysql3306.sock
pid-file = /tmp/mysql3306.pid
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
basedir = /opt/mysql5.5
datadir = /opt/mysql5.5/data
log-error = /tmp/mysql3306.err [mysqld3307]
port = 3307
socket = /tmp/mysql3307.sock
pid-file = /tmp/mysql3307.pid
skip-external-locking
key_buffer_size = 16M
max_allowed_packet = 1M
table_open_cache = 64
sort_buffer_size = 512K
net_buffer_length = 8K
read_buffer_size = 256K
read_rnd_buffer_size = 512K
myisam_sort_buffer_size = 8M
basedir = /opt/mysql5.5
datadir = /opt/mysql5.5/data2
log-error = /tmp/mysql3307.err
----启动3306
[root@node4 mysql5.5]# ./bin/mysqld_multi --defaults-file=./my.cnf start 3306 &
[] 13184
[root@node4 mysql5.5]# ps -ef |grep 3306 |grep -v grep
root 13192 1 0 01:52 pts/1 00:00:00 /bin/sh /opt/mysql5.5/bin/mysqld_safe --port=3306 --socket=/tmp/mysql3306.sock --pid-file=/tmp/mysql3306.pid --skip-external-locking --key_buffer_size=16M --max_allowed_packet=1M --table_open_cache=64 --sort_buffer_size=512K --net_buffer_length=8K --read_buffer_size=256K --read_rnd_buffer_size=512K --myisam_sort_buffer_size=8M --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data --log-error=/tmp/mysql3306.err
mysql 13637 13192 1 01:52 pts/1 00:00:00 /opt/mysql5.5/bin/mysqld --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data --plugin-dir=/opt/mysql5.5/lib/plugin --user=mysql --skip-external-locking --key-buffer-size=16M --max-allowed-packet=1M --table-open-cache=64 --sort-buffer-size=512K --net-buffer-length=8K --read-buffer-size=256K --read-rnd-buffer-size=512K --myisam-sort-buffer-size=8M --log-error=/tmp/mysql3306.err --pid-file=/tmp/mysql3306.pid --socket=/tmp/mysql3306.sock --port=3306
[]+ Done ./bin/mysqld_multi --defaults-file=./my.cnf start 3306
----启动3307
[root@node4 mysql5.5]# ./bin/mysqld_multi --defaults-file=./my.cnf start 3307 &
[] 13658
[root@node4 mysql5.5]# ps -ef |grep 3307 |grep -v grep
root 13666 1 1 01:53 pts/1 00:00:00 /bin/sh /opt/mysql5.5/bin/mysqld_safe --port=3307 --socket=/tmp/mysql3307.sock --pid-file=/tmp/mysql3307.pid --skip-external-locking --key_buffer_size=16M --max_allowed_packet=1M --table_open_cache=64 --sort_buffer_size=512K --net_buffer_length=8K --read_buffer_size=256K --read_rnd_buffer_size=512K --myisam_sort_buffer_size=8M --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data2 --log-error=/tmp/mysql3307.err --log-bin=mysql-bin --binlog_format=mixed --server-id=1
mysql 14156 13666 11 01:53 pts/1 00:00:00 /opt/mysql5.5/bin/mysqld --basedir=/opt/mysql5.5 --datadir=/opt/mysql5.5/data2 --plugin-dir=/opt/mysql5.5/lib/plugin --user=mysql --skip-external-locking --key-buffer-size=16M --max-allowed-packet=1M --table-open-cache=64 --sort-buffer-size=512K --net-buffer-length=8K --read-buffer-size=256K --read-rnd-buffer-size=512K --myisam-sort-buffer-size=8M --log-bin=mysql-bin --binlog-format=mixed --server-id=1 --log-error=/tmp/mysql3307.err --pid-file=/tmp/mysql3307.pid --socket=/tmp/mysql3307.sock --port=3307
[]+ Done ./bin/mysqld_multi --defaults-file=./my.cnf start 3307
----对数据库的连接
[root@node4 mysql5.5]# mysql -S /tmp/mysql3306.sock
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.22 Source distribution Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> exit;
Bye
[root@node4 mysql5.5]# mysql -S /tmp/mysql3307.sock
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 1
Server version: 5.5.22-log Source distribution Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> exit;
Bye
----关闭3306,首先需要连接数据库,创建test用户并授予它权限,最后使用mysqld_multi关闭3306
[root@node4 mysql5.5]# mysql -S /tmp/mysql3306.sock
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 2
Server version: 5.5.22 Source distribution Copyright (c) 2000, 2011, Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners. Type 'help;' or '\h' for help. Type '\c' to clear the current input statement. mysql> GRANT SHUTDOWN ON *.* TO 'test'@'localhost' identified by 'test' with grant option;
Query OK, 0 rows affected (0.11 sec) mysql> exit;
Bye
[root@node4 mysql5.5]# ./bin/mysqld_multi --defaults-file=./my.cnf stop 3306
[root@node4 mysql5.5]# ps -ef |grep 3306 |grep -v grep
MySQL start and stop的更多相关文章
- Hadoop 中利用 mapreduce 读写 mysql 数据
Hadoop 中利用 mapreduce 读写 mysql 数据 有时候我们在项目中会遇到输入结果集很大,但是输出结果很小,比如一些 pv.uv 数据,然后为了实时查询的需求,或者一些 OLAP ...
- mysql每秒最多能插入多少条数据 ? 死磕性能压测
前段时间搞优化,最后瓶颈发现都在数据库单点上. 问DBA,给我的写入答案是在1W(机械硬盘)左右. 联想起前几天infoQ上一篇文章说他们最好的硬件写入速度在2W后也无法提高(SSD硬盘) 但这东西感 ...
- LINUX篇,设置MYSQL远程访问实用版
每次设置root和远程访问都容易出现问题, 总结了个通用方法, 关键在于实用 step1: # mysql -u root mysql mysql> Grant all privileges o ...
- nodejs进阶(6)—连接MySQL数据库
1. 建库连库 连接MySQL数据库需要安装支持 npm install mysql 我们需要提前安装按mysql sever端 建一个数据库mydb1 mysql> CREATE DATABA ...
- MySQL高级知识- MySQL的架构介绍
[TOC] 1.MySQL 简介 概述 MySQL是一个关系型数据库管理系统,由瑞典MySQL AB公司开发,目前属于Oracle公司. MySQL是一种关联数据库管理系统,将数据保存在不同的表中,而 ...
- 闰秒导致MySQL服务器的CPU sys过高
今天,有个哥们碰到一个问题,他有一个从库,只要是启动MySQL,CPU使用率就非常高,其中sys占比也比较高,具体可见下图. 注意:他的生产环境是物理机,单个CPU,4个Core. 于是,他抓取了CP ...
- 我的MYSQL学习心得(一) 简单语法
我的MYSQL学习心得(一) 简单语法 我的MYSQL学习心得(二) 数据类型宽度 我的MYSQL学习心得(三) 查看字段长度 我的MYSQL学习心得(四) 数据类型 我的MYSQL学习心得(五) 运 ...
- Entity Framework Core 实现MySQL 的TimeStamp/RowVersion 并发控制
将通用的序列号生成器库 从SQL Server迁移到Mysql 遇到的一个问题,就是TimeStamp/RowVersion并发控制类型在非Microsoft SQL Server数据库中的实现.SQ ...
- Docker笔记一:基于Docker容器构建并运行 nginx + php + mysql ( mariadb ) 服务环境
首先为什么要自己编写Dockerfile来构建 nginx.php.mariadb这三个镜像呢?一是希望更深入了解Dockerfile的使用,也就能初步了解docker镜像是如何被构建的:二是希望将来 ...
- 当忘记mysql数据库密码时如何进行修改
因为长时间没有使用数据库了,或者把密码改完之后就忘了数据库密码,不能正常进入数据库,也无法修改密码,有一个简单的常用修改密码方式: 1.首先找到和打开mysql.exe和mysqld.exe所在的文件 ...
随机推荐
- UIScorlView 循环滚动
- (void) createAdScrollView { _view = [[UIView alloc] initWithFrame:CGRectMake(, , WIDTH, )]; [self. ...
- 关于StdAfx.h和StdAfx.cpp
http://www.cplusplus.com/articles/2z86b7Xj/ https://msdn.microsoft.com/en-us/library/h552b3ca.aspx h ...
- iOS面试必看,最全梳理
序言 目前形势,参加到iOS队伍的人是越来越多,甚至已经到供过于求了.今年,找过工作人可能会更深刻地体会到今年的就业形势不容乐观,加之,培训机构一火车地向用人单位输送iOS开发人员,打破了生态圈的动态 ...
- 一步一步学习Swift之(一):关于swift与开发环境配置
一.什么是Swift? 1.Swift 是一种新的编程语言,用于编写 iOS 和 OS X 应用. 2.Swift 结合了 C 和 Objective-C 的优点并且不受 C 兼容性的限制. 3.Sw ...
- 开篇呀,恭喜恭喜,是个好开头-----关于sort()排序
感觉自己活了半辈子从来没写过博客,这可是头一回,而且不是记事是为了学习,先恭喜恭喜自己,有一个很好的开端,不管能不能半途而废,反正是想着为了学习做点什么. 之前有很多东西需要搬过来,循序渐进吧,反正也 ...
- Leetcode: Create Maximum Number
Given two arrays of length m and n with digits 0-9 representing two numbers. Create the maximum numb ...
- using gulp
原 荐 gulp构建前端工程 半张一块 发布时间: 2016/07/27 16:22 阅读: 895 收藏: 4 点赞: 4 评论: 2 摘要 Gulp 是一个自动化工具,前端开发者可以使用它来处理常 ...
- [原创]java WEB学习笔记85:Hibernate学习之路-- -映射 一对一关系 ,基于主键方式实现
本博客的目的:①总结自己的学习过程,相当于学习笔记 ②将自己的经验分享给大家,相互学习,互相交流,不可商用 内容难免出现问题,欢迎指正,交流,探讨,可以留言,也可以通过以下方式联系. 本人互联网技术爱 ...
- ruby的在ubuntu上的安装
apt (Debian or Ubuntu) Debian GNU/Linux and Ubuntu use the apt package manager. You can use it like ...
- ZOJ 3545 Rescue the Rabbit(AC自动机+状压DP)(The 2011 ACM-ICPC Asia Dalian Regional Contest)
Dr. X is a biologist, who likes rabbits very much and can do everything for them. 2012 is coming, an ...