Mysql5.5 系统参数查看
Published on 2016 - 06 - 05
查看默认引擎列表
show engines;
查看当前引擎
show variables like '%storage_engine%';
查看表用的什么引擎
show create talbe 表明
查看数据库创建时使用的什么字符集
show create database 数据库名
查看mysql的配置文件位置
mysqld --verbose --help | grep -A 1 'Default options'
或者
mysql --help | grep my.cnf''