| 您的当前位置:首页 --> MYSQL教程 --> mysql 5.6.26 winx64安装配置图文教程(一) |
| MYSQL教程 mysql 5.6.26 winx64安装配置图文教程(一) |
| 浏览次数:931 关键词 ( ) |
| 查看使用该CPU的产品 查看CPU天梯 |
| CPU型号:mysql 5.6.26 winx64安装配置图文教程(一) |
| 主频:Ghz |
| 睿频:Ghz |
| 核心数:个 |
| 不支持超核心 |
| 制作工艺: |
| 插槽类型: |
| 功耗:0W |
| L3缓存:0MB |
| 支持最大内存: 0GB |
| CPU详细参数 |
|
阅读目录 公司服务器是Windows 开发连接的数据库使用的是"MySQL" 一、下载MySQL免安装版 二、配置MySQL数据库 [client] • 这样一个基本的MySQL环境所需要的参数就够了 三、MySQL环境变量 四、安装MySQL数据库 • 执行mysqld -install 安装MySQL • 执行net start mysql启动MySQL D:\mysql-5_x64\bin>net start mysql 启动MySQL服务:net start mysql • 修改Mysql密码 D:\mysql-5_x64\bin>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_x64\bin>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, 2015, 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各版本安装教程 以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持80vps。 |
| 下一个产品 SQL计算timestamp的差值的方法 上一个产品 mysql存储引擎和数据类型(二) |