Mysql 5.6.30绿色版配置

来源:互联网 发布:淘宝我的试用在哪里 编辑:程序博客网 时间:2024/06/08 03:52

一、下载Mysql

官方地址:http://dev.mysql.com/downloads/mysql/
可自行选择32位或64位。

二、编辑配置文件

编辑配置文件my-default.ini;

完整my-default.ini如下:

# For advice on how to change settings please see# http://dev.mysql.com/doc/refman/5.6/en/server-configuration-defaults.html# *** DO NOT EDIT THIS FILE. It's a template which will be copied to the# *** default location during install, and will be replaced if you# *** upgrade to a newer version of MySQL.[mysqld]# Remove leading # and set to the amount of RAM for the most important data# cache in MySQL. Start at 70% of total RAM for dedicated server, else 10%.# innodb_buffer_pool_size = 128M# Remove leading # to turn on a very important data integrity option: logging# changes to the binary log between backups.# log_bin# These are commonly set, remove the # and set as required.# mysql根目录basedir = D:\Java\mysql-5.6.30-winx64\bin# 数据文件存放目录datadir = D:\Java\mysql-5.6.30-winx64\data# 端口port = 3306# server_id = .....# Remove leading # to set options mainly useful for reporting servers.# The server defaults are faster for transactions and fast SELECTs.# Adjust sizes as needed, experiment to find the optimal values.# join_buffer_size = 128M# sort_buffer_size = 2M# read_rnd_buffer_size = 2M sql_mode=NO_ENGINE_SUBSTITUTION,STRICT_TRANS_TABLES # 服务端的编码方式character-set-server=utf8[client]# 客户端编码方式,最好和服务端保存一致loose-default-character-set = utf8

三、命令安装

  1. 在 bin 目录下面输入 mysqld –install(以管理员身份);

    bin目录安装

  2. 执行完后, 会有提示安装成功的英文;

  3. 启动MySQL服务

    启动 MySQL 服务, 启动了你才能用 MySQL 数据库.

    有两种方式可以启动 MySQL:

    方法一: 用命令启动

        net start mysql

    方法二: 从 windows 服务中启动

  4. 修改 root 账号的密码
    mysqladmin -uroot -p password
    输入需要设置的密码。
0 0