本系列学习笔记主要讲如下几个方面;
1.mysql启动
如图,有多重启动方式
(1.1)mysql.server start (1.2)/etc/init.d/mysqld start (1.3)service mysqld start
(1.4)mysqld --default-file=/u01/my3306/my.cnf & (该方式是用自定义的配置文件启动)
(1.5)mysqld_safe --default-file=/u01/my3306/my.cnf &(linux推荐方式,该方式是用自定义的配置文件启动)
(1.6)mysqld_mutil start
原文:https://www.cnblogs.com/gered/p/9644127.html