- 浏览: 912607 次
- 性别:
- 来自: 北京
文章分类
最新评论
-
天天来注册:
...
try catch finally 用法 -
tadpole_java:
谢谢你的分享。
二十七、Qt数据库(七)QSqlRelationalTableModel(转) -
359449749tan:
android之EditText文本监听(addTextChangedListener) -
michael_wang:
人过留名 多谢分享
Android NOtification 使用 -
wilsonchen:
wangqi0614 写道这个删除是删除所有的把?能不能值删除 ...
Android的SharedPreferences保存与删除数据简单实例
1、软件的下载
到mysql的官方网站下载MySQL的解压包,mysql-noinstall-5.0.22-win32.zip
然后解压到C:\mysql里面就是MySQL数据库的全部内容。
2、配置
首先我们来看MySQL的根目录,里面有多个文件名如my-****.ini形式的文件,这就是MySQL配置
的样例文件,你可以选取其中一个,将其名字改为my.ini,MySQL启动的时候就是读取这个my.ini文
件来决定数据库的各项参数。
在my.ini文件中需要进行配置的主要是两个方面,一个是客户端,一个是服务器端。
* 客户端配置
# CLIENT SECTION
#-----------------------------------------------------
[client]
port = 3306
[mysql]
default-character-set = gbk
需要配置的主要是两项,一个是客户端端口,一个是默认的字符集(gbk就是设置成了中文),这
里端口选用默认的3306,字符集可以根据需要修改为UTF-8或GBK。
* 服务器端配置
#SERVER SECTION
#-----------------------------------------------------
[mysqld]
port = 3306
basedir = "C:/mysql-5.0.51b-win32"
datadir = "C:/mysql-5.0.51b-win32/Data"
default-character-set = gbk
default-storage-engine = INNODB
max_connections = 100
max_allowed_packet = 16M
这里主要的是端口port,数据库安装目录(也就是我们解压的目录)basedir,数据库中数据
的存储路径(也就是你将来建立的Database和Table存放的位置)datadir。
其次就是字符集的设置,最大连接数的设置等,实际的设置项要根据开发与使用的需要,参
考解压目录中的几个样例文件进行取舍配置。
3、启动Mysql数据库
* 可以在Windows环境变量的path中先加入C:\mysql\bin这项,这样我们就可以
在命令行中直接使用mysql的各项命令了
* 进入命令行窗口,运行c:\mysqld-nt,这是查看Windows任务管理器,发现进程中多出来一个
mysqld-nt.exe,这说明数据库已经成功的启动的了。
* 此外,我们可以把数据库注册成一个服务,随着系统的启动而启动,具体命令如下:
c:\mysqld-nt -install
运行上面的命令后,就会在系统服务中注册了一个名字为MySQL,启动来性为Automatic的服务
,这个服务默认情况下是自动启动的。
可以通过命令行的防止停止或启动,如:
c:\net start MySQL启动)
c:\net stop MySQL(停止)
c:\mysqld-nt --remove MySQL(卸载服务)
4、使用MySQL数据库
* 由于我们在环境变量的path中加入了MySQL安装目录下的bin这项,所以可以直接使用MySQL命
令。
* 配置好上面信息并启动MySQL以后,默认的用户名root,密码为空,所以我们可以使用一下命
令登陆数据库:
c:\mysql -uroot -hlocalhost
回车以后会看到如下命令行状态:
mysql>
这说明已经成功登陆了MySQL数据库。
如果想为root用户加上密码,可以退出数据库mysql>quit,然后使用如下命令设置root用户的
密码:
c:\mysqladmin -uroot password 123456
这样就将root用户的密码修改为123456了,再次登陆数据库是就要用如下代码:
c:\mysql -uroot -p123456 -hlocalhost
至此,MySQL5数据库的配置就完成了,可以通过客户端或是程序来使用这个数据库了。
5、总结
MySQL提供了Install和NotInstall两种文件包的下载和安装方式,Install方式使用起来更为直
观和方便,而notInstall方式则能让你更加的了解MySQL数据库基本配置内容,所以各有利弊。从个
人角度来看,还是比较推荐notIntall的方式来使用Mhysql数据库,这样可以为在不同的平台下使用
MySQL奠定一个良好的基础。
现用my.ini
根据my-huge.ini改
# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /usr/local/var) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MySQL clients
[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 1M
table_cache = 512
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
basedir= C:\mysql
#bind-address=127.0.0.1
datadir= C:\mysql/data
#language=C:\mysql/share/english
#slow query log#=
#tmpdir#=
#port=3306
#set-variable=key_buffer=16M
[WinMySQLadmin]
Server=C:\mysql/bin/mysqld-nt.exe
user=root
password=mysql
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id = 1
# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
# Point the following paths to different dedicated disks
#tmpdir = /tmp/
#log-update = /path-to-dedicated-directory/hostname
# Uncomment the following if you are using BDB tables
#bdb_cache_size = 384M
#bdb_max_lock = 100000
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/var/
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /usr/local/var/
#innodb_log_arch_dir = /usr/local/var/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
到mysql的官方网站下载MySQL的解压包,mysql-noinstall-5.0.22-win32.zip
然后解压到C:\mysql里面就是MySQL数据库的全部内容。
2、配置
首先我们来看MySQL的根目录,里面有多个文件名如my-****.ini形式的文件,这就是MySQL配置
的样例文件,你可以选取其中一个,将其名字改为my.ini,MySQL启动的时候就是读取这个my.ini文
件来决定数据库的各项参数。
在my.ini文件中需要进行配置的主要是两个方面,一个是客户端,一个是服务器端。
* 客户端配置
# CLIENT SECTION
#-----------------------------------------------------
[client]
port = 3306
[mysql]
default-character-set = gbk
需要配置的主要是两项,一个是客户端端口,一个是默认的字符集(gbk就是设置成了中文),这
里端口选用默认的3306,字符集可以根据需要修改为UTF-8或GBK。
* 服务器端配置
#SERVER SECTION
#-----------------------------------------------------
[mysqld]
port = 3306
basedir = "C:/mysql-5.0.51b-win32"
datadir = "C:/mysql-5.0.51b-win32/Data"
default-character-set = gbk
default-storage-engine = INNODB
max_connections = 100
max_allowed_packet = 16M
这里主要的是端口port,数据库安装目录(也就是我们解压的目录)basedir,数据库中数据
的存储路径(也就是你将来建立的Database和Table存放的位置)datadir。
其次就是字符集的设置,最大连接数的设置等,实际的设置项要根据开发与使用的需要,参
考解压目录中的几个样例文件进行取舍配置。
3、启动Mysql数据库
* 可以在Windows环境变量的path中先加入C:\mysql\bin这项,这样我们就可以
在命令行中直接使用mysql的各项命令了
* 进入命令行窗口,运行c:\mysqld-nt,这是查看Windows任务管理器,发现进程中多出来一个
mysqld-nt.exe,这说明数据库已经成功的启动的了。
* 此外,我们可以把数据库注册成一个服务,随着系统的启动而启动,具体命令如下:
c:\mysqld-nt -install
运行上面的命令后,就会在系统服务中注册了一个名字为MySQL,启动来性为Automatic的服务
,这个服务默认情况下是自动启动的。
可以通过命令行的防止停止或启动,如:
c:\net start MySQL启动)
c:\net stop MySQL(停止)
c:\mysqld-nt --remove MySQL(卸载服务)
4、使用MySQL数据库
* 由于我们在环境变量的path中加入了MySQL安装目录下的bin这项,所以可以直接使用MySQL命
令。
* 配置好上面信息并启动MySQL以后,默认的用户名root,密码为空,所以我们可以使用一下命
令登陆数据库:
c:\mysql -uroot -hlocalhost
回车以后会看到如下命令行状态:
mysql>
这说明已经成功登陆了MySQL数据库。
如果想为root用户加上密码,可以退出数据库mysql>quit,然后使用如下命令设置root用户的
密码:
c:\mysqladmin -uroot password 123456
这样就将root用户的密码修改为123456了,再次登陆数据库是就要用如下代码:
c:\mysql -uroot -p123456 -hlocalhost
至此,MySQL5数据库的配置就完成了,可以通过客户端或是程序来使用这个数据库了。
5、总结
MySQL提供了Install和NotInstall两种文件包的下载和安装方式,Install方式使用起来更为直
观和方便,而notInstall方式则能让你更加的了解MySQL数据库基本配置内容,所以各有利弊。从个
人角度来看,还是比较推荐notIntall的方式来使用Mhysql数据库,这样可以为在不同的平台下使用
MySQL奠定一个良好的基础。
现用my.ini
根据my-huge.ini改
# Example MySQL config file for very large systems.
#
# This is for a large system with memory of 1G-2G where the system runs mainly
# MySQL.
#
# You can copy this file to
# /etc/my.cnf to set global options,
# mysql-data-dir/my.cnf to set server-specific options (in this
# installation this directory is /usr/local/var) or
# ~/.my.cnf to set user-specific options.
#
# In this file, you can use all long options that a program supports.
# If you want to know which options a program supports, run the program
# with the "--help" option.
# The following options will be passed to all MySQL clients
[client]
#password = your_password
port = 3306
socket = /tmp/mysql.sock
# Here follows entries for some specific programs
# The MySQL server
[mysqld]
port = 3306
socket = /tmp/mysql.sock
skip-locking
key_buffer = 384M
max_allowed_packet = 1M
table_cache = 512
sort_buffer_size = 2M
read_buffer_size = 2M
read_rnd_buffer_size = 8M
myisam_sort_buffer_size = 64M
thread_cache_size = 8
query_cache_size = 32M
# Try number of CPU's*2 for thread_concurrency
thread_concurrency = 8
basedir= C:\mysql
#bind-address=127.0.0.1
datadir= C:\mysql/data
#language=C:\mysql/share/english
#slow query log#=
#tmpdir#=
#port=3306
#set-variable=key_buffer=16M
[WinMySQLadmin]
Server=C:\mysql/bin/mysqld-nt.exe
user=root
password=mysql
# Don't listen on a TCP/IP port at all. This can be a security enhancement,
# if all processes that need to connect to mysqld run on the same host.
# All interaction with mysqld must be made via Unix sockets or named pipes.
# Note that using this option without enabling named pipes on Windows
# (via the "enable-named-pipe" option) will render mysqld useless!
#
#skip-networking
# Replication Master Server (default)
# binary logging is required for replication
log-bin=mysql-bin
# required unique id between 1 and 2^32 - 1
# defaults to 1 if master-host is not set
# but will not function as a master if omitted
server-id = 1
# Replication Slave (comment out master section to use this)
#
# To configure this host as a replication slave, you can choose between
# two methods :
#
# 1) Use the CHANGE MASTER TO command (fully described in our manual) -
# the syntax is:
#
# CHANGE MASTER TO MASTER_HOST=<host>, MASTER_PORT=<port>,
# MASTER_USER=<user>, MASTER_PASSWORD=<password> ;
#
# where you replace <host>, <user>, <password> by quoted strings and
# <port> by the master's port number (3306 by default).
#
# Example:
#
# CHANGE MASTER TO MASTER_HOST='125.564.12.1', MASTER_PORT=3306,
# MASTER_USER='joe', MASTER_PASSWORD='secret';
#
# OR
#
# 2) Set the variables below. However, in case you choose this method, then
# start replication for the first time (even unsuccessfully, for example
# if you mistyped the password in master-password and the slave fails to
# connect), the slave will create a master.info file, and any later
# change in this file to the variables' values below will be ignored and
# overridden by the content of the master.info file, unless you shutdown
# the slave server, delete master.info and restart the slaver server.
# For that reason, you may want to leave the lines below untouched
# (commented) and instead use CHANGE MASTER TO (see above)
#
# required unique id between 2 and 2^32 - 1
# (and different from the master)
# defaults to 2 if master-host is set
# but will not function as a slave if omitted
#server-id = 2
#
# The replication master for this slave - required
#master-host = <hostname>
#
# The username the slave will use for authentication when connecting
# to the master - required
#master-user = <username>
#
# The password the slave will authenticate with when connecting to
# the master - required
#master-password = <password>
#
# The port the master is listening on.
# optional - defaults to 3306
#master-port = <port>
#
# binary logging - not required for slaves, but recommended
#log-bin=mysql-bin
# Point the following paths to different dedicated disks
#tmpdir = /tmp/
#log-update = /path-to-dedicated-directory/hostname
# Uncomment the following if you are using BDB tables
#bdb_cache_size = 384M
#bdb_max_lock = 100000
# Uncomment the following if you are using InnoDB tables
#innodb_data_home_dir = /usr/local/var/
#innodb_data_file_path = ibdata1:2000M;ibdata2:10M:autoextend
#innodb_log_group_home_dir = /usr/local/var/
#innodb_log_arch_dir = /usr/local/var/
# You can set .._buffer_pool_size up to 50 - 80 %
# of RAM but beware of setting memory usage too high
#innodb_buffer_pool_size = 384M
#innodb_additional_mem_pool_size = 20M
# Set .._log_file_size to 25 % of buffer pool size
#innodb_log_file_size = 100M
#innodb_log_buffer_size = 8M
#innodb_flush_log_at_trx_commit = 1
#innodb_lock_wait_timeout = 50
[mysqldump]
quick
max_allowed_packet = 16M
[mysql]
no-auto-rehash
# Remove the next comment character if you are not familiar with SQL
#safe-updates
[isamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[myisamchk]
key_buffer = 256M
sort_buffer_size = 256M
read_buffer = 2M
write_buffer = 2M
[mysqlhotcopy]
interactive-timeout
发表评论
-
SQL语句的练习
2014-04-18 15:42 838第一题:查询101课程比102课程成绩高的所有学生的学号 ... -
MySql中的常见技术
2014-04-14 23:08 813引用 第一部分:引擎选择 MySQL 存储引擎该如何选择 一、 ... -
SQL语句大全(转链接)
2014-04-12 00:00 921http://www.cnblogs.com/yubinfen ... -
Oracle SID在本机上已经存在,请指定一个不同的SID”的解决办法
2012-08-23 17:36 1333windows 系统: 1、 开始->设置->控制面板-> ... -
PHP环境配置:Apach+Tomcat+mysql+php
2011-11-05 15:22 67491》下载需要的软件: Apache : apa ... -
主键与外键
2011-10-13 20:08 1067一、什么是主键、外键 ... -
编译数据库ODBC
2011-08-17 19:15 1110单独编译~\src\plugins\sqldrivers\od ... -
将xml中的数据导入到数据库
2011-08-07 17:06 1189最简单的读取,把xml的一级子元素当做一条记录插入数据库 ... -
图形安装MySql
2011-08-04 12:41 843http://www.360doc.com/content/1 ... -
MyEclipse连接Hibernate项目
2011-08-04 12:06 887http://hi.baidu.com/bigbig_88/b ... -
Java工作流引擎 JBoss jBPM 3.1.2 演示示例
2011-08-04 01:32 978jBPM是由JBoss开发的工作流和业务流程管理引擎,可以用于 ... -
关于Struts+JBPM+Hibernate+MYsql的结合
2011-08-04 01:28 857一,首先在eclipse里新建 ... -
Qt中combox连接数据库
2011-08-01 00:15 5100示例源码: #include "widget.h& ... -
SQL语句进行插入
2011-07-25 11:31 937Connection conn = null; Prepa ... -
MySQL压力测试工具
2011-07-03 09:36 1149第一、mysqlslap mysqlslap是一个m ... -
XML 数据库
2011-05-01 14:46 722http://msdn.microsoft.com/en-us ... -
POI+XOM+Java操作Excel与XML之间转换
2011-05-01 12:54 1234http://www.iteye.com/topic/6834 ... -
使用SQL语句查询表中重复记录并删除
2011-04-30 20:33 2183文章一: 假设有一样 ... -
利用oleDB对象,将数据库中全部表转换成XML文件
2011-04-30 19:27 787... -
poi文件下载地址 poi.jar
2011-04-26 11:46 1194http://xiao5461.blog.163.com/bl ...
相关推荐
此“Windows X64 Mysql8.1.0免安装包”为用户提供了一种便捷的方式,无需经过传统安装过程,即可在Windows 64位操作系统上快速启动和运行MySQL服务。以下是关于这个免安装包的一些详细知识: 1. **MySQL 8.1.0版本*...
本文主要介绍的是后者——如何在Windows 64位平台上配置并使用MySQL的免安装版本。这种方式的优势在于它更加灵活便捷,尤其适用于测试或临时环境的搭建。 #### 二、下载与解压 1. **下载**:首先,需要从MySQL官方...
windows 7 64位下配置mysql64位免安装版,下载免安装版mysql可根据配置直接运行、使用MySQL
MySQL 5.6是MySQL数据库管理系统的一个重要版本,尤其对于Windows 64位操作系统用户,这个免安装版本提供了极大的便利。MySQL是一个开源的关系型数据库管理系统,广泛应用于网站开发、数据分析、企业信息系统等领域...
mysql8.0免安装 免安装! 免安装! 免安装! 解压即用,解压到D盘不用修改配置,直接双击startup.bat启动,端口3306 root密码:root 如需修改位置,更改my.ini中的basedir和datadir
mysql5.7windows免安装版,亲测可用
MySQL绿色解压版免安装是一种方便快捷的方式,无需经历传统安装过程,就能在Windows系统上运行MySQL数据库服务器。这种版本通常包含所有必要的组件,解压后即可使用,减少了配置的复杂性,尤其适合临时测试、开发...
MySQL ODBC 5.1 Driver 是一个用于连接MySQL数据库的开放数据库连接(ODBC)驱动程序,它允许用户通过标准的ODBC接口访问MySQL数据库,适用于Windows操作系统。这个版本是免安装的,意味着用户可以直接解压使用,...
为了便于在任何目录下通过命令行工具访问MySQL,需要在环境变量中添加`MYSQL_HOME`。具体步骤为:打开系统环境变量设置界面,新增名为`MYSQL_HOME`的变量,值为MySQL主目录路径(如`E:/share/mysql`),并将其添加到...
MySQL Server 5.1.34 迷你绿色免安装免配置版是针对Windows操作系统设计的一款轻量级数据库管理系统,它具有便携式、无需安装和配置的特点,适合于快速搭建临时或测试环境中的数据库服务。这个版本在不牺牲功能的...
此文档介绍了在Windows7下,如何安装免安装的mysql。
MySQL 5.7 x64 免安装版是一款专为64位Windows系统设计的数据库管理系统,无需复杂的安装过程,只需解压即可使用。这款压缩包包含了一个精简的MySQL服务器版本,使得部署和管理变得更加便捷。对于那些不希望经历传统...
MySQL5.7 免安装版配置是指在 Windows 平台下,使用免安装的方式来配置 MySQL5.7 数据库管理系统。下面是 MySQL5.7 免安装版配置的详细步骤和相关知识点。 一、文件配置 在配置 MySQL5.7 之前,需要先解压缩 MySQL...
总的来说,Navicat for MySQL免安装版是数据库管理员、开发者和分析师的理想工具,无论是在本地还是远程工作,都能提供高效且全面的MySQL数据库管理体验。其简洁的界面和丰富的功能,使得即使是对数据库不太熟悉的...
通过以上步骤,您就可以成功配置MySQL 5.7.9 ZIP免安装版本,并在Windows环境中使用它来进行数据库管理和开发工作了。在实际操作过程中,如果遇到任何问题,可以查阅官方文档或寻求社区支持以获得帮助。
综上所述,Navicat for MySQL免安装版是一款高效、便捷的数据库管理工具,无论是在个人开发还是团队协作中,都能显著提高工作效率。只需从压缩包中提取“Navicat Premium”文件,即可开始使用这个强大的数据库管理...
在Windows系统上安装MySQL_5.7.36-winx64免安装版是一个非常实用的方法,特别是对于那些不希望占用过多系统资源或者频繁迁移数据库服务的用户。这个过程涉及几个关键步骤,包括解压文件、配置环境变量、创建数据目录...
在Windows操作系统上,这种免安装版通常包含所有必要的组件,让你能在任何支持的系统上迅速启动和运行MySQL。 在描述中提到,`root用户密码`是`qwert12345`,这是MySQL的管理员账户,拥有对整个数据库系统的完全...
3.打开文件my-huge.ini另存为my.ini,在my.ini文件中加入如下配置,再放到C:/windows下(也可以放在安装目录下,进行手工指定(配置) my.ini 的路径) [mysqld] basedir=E:/.../mysql(安装路径) datadir=E:/.../...
mysql5.7免安装 免安装! 免安装! 免安装! 解压即用,解压到D盘不用修改配置,直接双击startup.bat启动,端口3306 root密码:root 如需修改位置,更改my.ini中的basedir和datadir