首页 > 代码库 > MySQL解压缩版安装手记(windows)
MySQL解压缩版安装手记(windows)
操作系统:windows 2003
mysql版本:mysql-5.6.22-winx64.zip
mysql版本:mysql-5.6.22-winx64.zip
安装及配置步骤:
1,解压缩mysql;
2,创建my.ini文件并写入一下内容:
[client] no-beep port=3369 default-character-set=utf8 [mysql] default-character-set=utf8 [mysqld] port=3369 #mysql解压目录 basedir=D:/mysql_test/mysql-5.6.22-winx64 #mysql数据文件所在位置 datadir=D:/mysql_test/mysql-5.6.22-winx64/data character-set-server=utf8 default-storage-engine=INNODB sql-mode="STRICT_TRANS_TABLES,NO_AUTO_CREATE_USER,NO_ENGINE_SUBSTITUTION" # General and Slow logging. log-output=FILE general-log=0 general_log_file="WIN-SAN3COGQ5SE.log" slow-query-log=1 #慢查询日志文件存放位置 slow_query_log_file="D:/mysql_test/mysql-5.6.22-winx64/slow_sql_log.log" long_query_time=5 log-error="WIN-SAN3COGQ5SE.err" server-id=1 max_connections=151 query_cache_size=512M table_open_cache=2000 tmp_table_size=706M thread_cache_size=16 #*** MyISAM Specific options myisam_max_sort_file_size=10G myisam_sort_buffer_size=2G key_buffer_size=8M read_buffer_size=64K read_rnd_buffer_size=256K sort_buffer_size=32M #*** INNODB Specific options *** innodb_additional_mem_pool_size=32M innodb_flush_log_at_trx_commit=0 innodb_log_buffer_size=16M innodb_buffer_pool_size=4G innodb_log_file_size=1024M innodb_thread_concurrency=33 innodb_autoextend_increment=64 innodb_buffer_pool_instances=16 innodb_concurrency_tickets=5000 innodb_old_blocks_time=1000 innodb_open_files=300 innodb_stats_on_metadata=http://www.mamicode.com/0>
3,创建mysql启动服务
cmd -> mysql/bin -> mysqld.exe -install mysql<服务名> --defaults-file="my.ini文件所在路径"
进入windows管理 - 服务 查看mysql服务是否创建成功,并启动服务;
删除mysql服务;
mysqld.exe -remove mysql<服务名>
4,测试mysql安装是否成功;host:localhost user:root password:(空,首次安装无密码)
5,设置用户
#删除匿名用户
#创建新用户并限制可访问ip;如:
用户名为newuser,host为10.64.7.%,意思为,仅有来自10.64.7.%这个地址段才能进行访问;
#使root用户仅能在本机使用,host为localhost,127.0.0.1,::1(这是ipv6的 127.0.0.1)并设置密码;
6,权限授权,原则是最小权限授权.
MySQL解压缩版安装手记(windows)
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。