MySql study notes [1]

来源:互联网 发布:淘宝app客户端下载新版 编辑:程序博客网 时间:2024/06/11 15:48

Operating System:
    Windows 2003 Server
Installation:
    Just install according the Wizard
Start the Server:
    To start the server, enter this command:
    e:/>e:/mysql/bin/mysqld --console
E:/mysql/bin>mysqld --console
InnoDB: The first specified data file ./ibdata1 did not exist:
InnoDB: a new database to be created!
041001  0:05:08  InnoDB: Setting file ./ibdata1 size to 10 MB
InnoDB: Database physically writes the file full: wait...
041001  0:05:09  InnoDB: Log file ./ib_logfile0 did not exist: new to be created

InnoDB: Setting log file ./ib_logfile0 size to 5 MB
InnoDB: Database physically writes the file full: wait...
041001  0:05:09  InnoDB: Log file ./ib_logfile1 did not exist: new to be created

InnoDB: Setting log file ./ib_logfile1 size to 5 MB
InnoDB: Database physically writes the file full: wait...
InnoDB: Doublewrite buffer not found: creating new
InnoDB: Doublewrite buffer created
InnoDB: Creating foreign key constraint system tables
InnoDB: Foreign key constraint system tables created
041001  0:05:15  InnoDB: Started
mysqld: ready for connections.
Version: '4.0.21-debug'  socket: ''  port: 3306  Source distribution
    
When you see
mysqld: ready for connections.
Version: '4.0.21-debug'  socket: ''  port: 3306  Source distribution
The server is ready to service client connection.