mysql 5.6.26 winx64安装配置图文教程(一)
阅读目录 公司服务器是Windows 开发连接的数据库使用的是"MySQL" 一、下载MySQL免安装版 二、配置MySQL数据库 [client] • 这样一个基本的MySQL环境所需要的参数就够了 三、MySQL环境变量 四、安装MySQL数据库 • 执行mysqld -install 安装MySQL • 执行net start mysql启动MySQL D:mysql-5_x64bin>net start mysql 启动MySQL服务:net start mysql • 修改Mysql密码 D:mysql-5_x64bin>mysql -u root -p //使用root登入mysql mysql> mysql> show databases; //显示所有数据库 +--------------------+ | Database | +--------------------+ | information_schema | | mysql | | performance_schema | | test | +--------------------+ 4 rows in set (0.00 sec) • 进入'mysql'数据、删除空用户 mysql> use mysql; Database changed mysql> delete from user where user=''; Query OK,1 row affected (0.00 sec) • 更新密码并重新刷权限表到内存(也可以用mysqladmin工具来设置密码) mysql> update User set Password=PASSWORD('123456') where User='root'; Query OK,4 rows affected (0.00 sec) Rows matched: 4 Changed: 4 Warnings: 0 mysql> flush privileges; Query OK,0 rows affected (0.00 sec) • 尝试登陆 D:mysql-5_x64bin>mysql -u root -p //用root用户登入数据库 Enter password: ****** //输入更新后的密码 123456 Welcome to the MySQL monitor. Commands end with ; or g. Your MySQL connection id is 5 Server version: 5.6.26 MySQL Community Server (GPL) Copyright (c) 2000,Oracle and/or its affiliates. All rights reserved. Oracle is a registered trademark of Oracle Corporation and/or its affiliates. Other names may be trademarks of their respective owners. Type 'help;' or 'h' for help. Type 'c' to clear the current input statement. mysql> • 开启远程连接(给予全部权限,允许 192.168.1.x 网段都可以连接) mysql> grant all privileges on *.* to 'root'@'192.168.1.%' identified by 'root' with grant option; Query OK,0 rows affected (0.00 sec) mysql> flush privileges; Query OK,0 rows affected (0.00 sec) mysql> select host,user,password from user; +-------------+------+-------------------------------------------+ | host | user | password | +-------------+------+-------------------------------------------+ | 192.168.1.% | root | *81F5E21E35407D884A6CD4A731AEBFB6AF209E1B | +-------------+------+-------------------------------------------+ 4 rows in set (0.00 sec) 精彩专题分享:mysql不同版本安装教程 mysql5.7各版本安装教程 mysql5.6各版本安装教程 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持编程小技巧。 (编辑:李大同) 【声明】本站内容均来自网络,其相关言论仅代表作者个人观点,不代表本站立场。若无意侵犯到您的权利,请及时与联系站长删除相关内容! |