Home > Database > Mysql Tutorial > body text

精简版mysql添加日志功能_MySQL

WBOY
Release: 2016-06-01 13:45:15
Original
1073 people have browsed it

bitsCN.com

做两层开发,使用mysql做数据库.
自己根据经验并结合网络同仁提供的方法,剔除多余的文件,自己做了个mysql迷你版本,使用起来很方便,只有5M大小,携带方便.
但是突然发觉没有日志了,这在调试程序中极为不便.
找了资料,mysql中添加日志有两种方法:
以命令行方式启动
mysqld-nt.exe --log=log.txt

以配置文件方式启动
mysqld-nt.exe --defaults-file="g:/mysql/v5.0.67/bin/my.ini"
然后在my.ini文件的[mysqld]节中加入一行
log=log.txt

默认日志文件在data文件夹内.

另外,mysqld-nt启动时占用15M内存,如果感到吃紧,可以加参数跳过不需要的数据库引擎.
--skip-bdb --skip-innodb
这样只使用MyISAM引擎,只需要6M内存.
当然取消了innodb引擎,就没有行锁定了.


作者 “清风乱翻书”

bitsCN.com
Related labels:
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template