Windows下面安装和配置MySQL
1.首先到http://dev.mysql.com/ 上下载windows版mysql5.6免安装zip包。然后将zip包解压到C:\mysql下。
2.复制mysql下的my-default.ini, 在同目录下创建my.ini,my.ini为mysql的配置。最简单的配置:
[mysqld] character-set-server=utf8 # Remove leading # to turn on a very important data integrity option: logging # These are commonly set, remove the # and set as required. # server_id = ..... # The TCP/IP Port the MySQL Server will listen on port=3306 #Path to installation directory. All paths are usually resolved relative to this. basedir="C:/mysql/" #数据文件的目录,可以更改也可以不改,为了数据安全,最好改到非系统盘,改的时候注意,把前面#去掉,再把mysql目录下的data文件夹复制到你所要的目录 #datadir="D:/data/" character-set-server=utf8 default-storage-engine=MYISAM max_connections=1000 query_cache_size=64M tmp_table_size=128M #在V5.1里table_open_cache替换table_cache做为新的变量名称,所以5.1以上的要改成table_open_cache table_cache=256 wait_timeout=120 interactive_timeout=120 local-infile = 0 thread_cache_size=8 #*** MyISAM Specific options myisam_max_sort_file_size=100G myisam_sort_buffer_size=26M key_buffer_size=32M read_buffer_size=64K read_rnd_buffer_size=256K sort_buffer_size=256K #*** INNODB Specific options *** #skip-innodb innodb_buffer_pool_size = 128M innodb_additional_mem_pool_size = 4M innodb_log_files_in_group = 3 # Set .._log_file_size to 25 % of buffer pool size innodb_log_file_size = 64M innodb_log_buffer_size = 10M innodb_max_dirty_pages_pct = 50 innodb_flush_log_at_trx_commit = 2 innodb_lock_wait_timeout = 50 innodb_file_per_table = 1 innodb_open_files = 100
3.计算机右键,属性,高级系统设置,高级,环境变量,系统变量。
编辑环境变量PATH。将";C:\mysql\bin"加入path中。
4.注册mysql为windows service. 以后可以使用windows service来安装mysqld和卸载mysqld的服务.
以管理员模式启动cmd
进入mysql安装路径: C:\mysql\bin
输入:mysqld -install Mysql --defaults-file="C:\mysql\my.ini"
提示:Service successfully installed.
(卸载MySQL服务命令是:mysqld -remove Mysql)
5.启动mysql服务:net start Mysql (net stop Mysql 停止mysql服务),现在进去Windows服务里面可以看到Mysql的服务:
6.现在就可以在命令行使用root用户登录mysql数据库:
mysql -u root -p
密码为空,直接回车。
修改root帐户的登陆密码1234:
GRANT ALL ON *.* TO 'root'@'localhost' IDENTIFIED BY '1234';
7.安装完成!
版权所有:《晋城生活服务》 => 《Windows下面安装和配置MySQL》
本文地址:http://blog.0356sh.com/mysql-install.html
除非注明,文章均为 《晋城生活服务》 原创,欢迎转载!转载请注明本文地址,谢谢。
发表评论: