博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mysql的启动
阅读量:4597 次
发布时间:2019-06-09

本文共 4828 字,大约阅读时间需要 16 分钟。

1。直接用mysqld手工启动

[root@ora11g bin]# ./mysqld --defaults-file=../my.cnf 140328 10:04:37 [ERROR] Fatal error: Please read "Security" section of the manual to find out how to run mysqld as root!140328 10:04:37 [ERROR] Aborting140328 10:04:37 [Note] ./mysqld: Shutdown complete[root@ora11g bin]# ./mysqld --defaults-file=../my.cnf --user=mysql140328 10:04:44 InnoDB: The InnoDB memory heap is disabled140328 10:04:44 InnoDB: Mutexes and rw_locks use InnoDB's own implementation140328 10:04:44 InnoDB: Compressed tables use zlib 1.2.3140328 10:04:44 InnoDB: Using Linux native AIO140328 10:04:44 InnoDB: Initializing buffer pool, size = 128.0M140328 10:04:44 InnoDB: Completed initialization of buffer pool140328 10:04:44 InnoDB: highest supported file format is Barracuda.InnoDB: The log sequence number in ibdata files does not matchInnoDB: the log sequence number in the ib_logfiles!140328 10:04:44  InnoDB: Database was not shut down normally!InnoDB: Starting crash recovery.InnoDB: Reading tablespace information from the .ibd files...InnoDB: Restoring possible half-written data pages from the doublewriteInnoDB: buffer...140328 10:04:44  InnoDB: Waiting for the background threads to start140328 10:04:45 InnoDB: 5.5.37 started; log sequence number 1595675140328 10:04:45 [Note] Server hostname (bind-address): '0.0.0.0'; port: 3306140328 10:04:45 [Note]   - '0.0.0.0' resolves to '0.0.0.0';140328 10:04:45 [Note] Server socket created on IP: '0.0.0.0'.140328 10:04:45 [Note] Event Scheduler: Loaded 0 events140328 10:04:45 [Note] ./mysqld: ready for connections.Version: '5.5.37'  socket: '/tmp/mysql.sock'  port: 3306  Source distribution[root@ora11g ~]# ps -ef | grep mysqlmysql     7641  7547  1 10:04 pts/1    00:00:00 ./mysqld --defaults-file=../my.cnf --user=mysqlroot      7697  7661  0 10:05 pts/2    00:00:00 grep mysql[root@ora11g ~]#

 2.安全启动

[root@ora11g bin]# ./mysqld_safe --defaults-file=../my.cnf --user=mysql &[1] 7758[root@ora11g bin]# 140328 10:13:16 mysqld_safe Logging to '/usr/local/mysql/data/ora11g.err'.140328 10:13:16 mysqld_safe Starting mysqld daemon with databases from /usr/local/mysql/data[root@ora11g bin]# ps -ef | grep mysqlroot      7758  7661  0 10:13 pts/2    00:00:00 /bin/sh ./mysqld_safe --defaults-file=../my.cnf --user=mysqlmysql     8024  7758  0 10:13 pts/2    00:00:00 /usr/local/mysql/bin/mysqld --defaults-file=../my.cnf --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/ora11g.err --pid-file=/usr/local/mysql/data/ora11g.pid --socket=/tmp/mysql.sock --port=3306root      8044  7661  0 10:13 pts/2    00:00:00 grep mysql[root@ora11g bin]#

 3.用服务的方式启动

[root@ora11g support-files]# [root@ora11g support-files]# ./mysql.server startStarting MySQL                                             [  OK  ][root@ora11g support-files]# ps -ef | grep mysql root      8433     1  3 10:24 pts/2    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/ora11g.pidmysql     8705  8433 12 10:24 pts/2    00:00:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/ora11g.err --pid-file=/usr/local/mysql/data/ora11g.pid --socket=/tmp/mysql.sock --port=3306root      8723  7661  0 10:24 pts/2    00:00:00 grep mysql[root@ora11g support-files]#

把mysql.server cp到 /etc/rc.d/init.d/mysql,再chkconfig --add mysql就ok了

[root@ora11g support-files]# cp mysql.server  /etc/rc.d/init.d/mysql [root@ora11g support-files]# chkconfig --add mysql[root@ora11g support-files]# chkconfig --list | grep mysqlmysql           0:off   1:off   2:on    3:on    4:on    5:on    6:off[root@ora11g support-files]# service mysqld stopmysqld: unrecognized service[root@ora11g support-files]# service mysql stop Shutting down MySQL.                                       [  OK  ][root@ora11g support-files]# service mysql startStarting MySQL..                                           [  OK  ][root@ora11g support-files]# ps -ef | grep mysql                     root      8808     1  1 10:28 pts/2    00:00:00 /bin/sh /usr/local/mysql/bin/mysqld_safe --datadir=/usr/local/mysql/data --pid-file=/usr/local/mysql/data/ora11g.pidmysql     9073  8808  2 10:28 pts/2    00:00:00 /usr/local/mysql/bin/mysqld --basedir=/usr/local/mysql --datadir=/usr/local/mysql/data --plugin-dir=/usr/local/mysql/lib/plugin --user=mysql --log-error=/usr/local/mysql/data/ora11g.err --pid-file=/usr/local/mysql/data/ora11g.pid --socket=/tmp/mysql.sock --port=3306root      9100  7661  0 10:28 pts/2    00:00:00 grep mysql[root@ora11g support-files]#

 

查看mysql的启动时的参数:

[root@ora11g bin]# ./mysqld --help --verbose | less

转载于:https://www.cnblogs.com/nazeebodan/p/3630070.html

你可能感兴趣的文章
Coursera公开课笔记: 斯坦福大学机器学习第十课“应用机器学习的建议(Advice for applying machine learning)”...
查看>>
竞价广告系统-广告检索
查看>>
强哥PHP面向对象学习笔记
查看>>
[转]基于.NET平台常用的框架整理
查看>>
Symbian (Read Inbox)读取收件箱的内容
查看>>
良好的编程规范
查看>>
struts2 入门
查看>>
.net 编译原理
查看>>
mean 快速开发和现有技术的对比分析
查看>>
Metro Style app :浏览器扩展
查看>>
linux的kernel是怎样工作的(TI_DM36X_ARM系统)(1)
查看>>
[luogu4310] 绝世好题 (递推)
查看>>
[luogu3203 HNOI2010] 弹飞绵羊 (分块)
查看>>
-Dmaven.multiModuleProjectDirectory system propery is not set.
查看>>
Python2 unichr() 函数
查看>>
Python 字典 copy()方法
查看>>
Minimum Path Sum
查看>>
Remove Duplicates from Sorted Array II
查看>>
常量指针和指针常量巧妙记忆方法[转]
查看>>
python-haproxy作业讲解视频总结
查看>>