1.installation

2.setup environment variables

   add %/MySQL Server/bin to path.

  then restart cmd/powershell

3.invoking mysql programs

command interpreter represents with shell>

enter the program name followed by any options or other arguments.

shell>不是输入的一部分

关于options:

1.参数亦单或者双dash开头来specify程序选项.单后接缩写short form,双后接全写long form.

缩写中间用空格甚至不留空格,全称中间用等号.

2.option大小写敏感 -v for --verbose and -V for --version.

3.一些option后面跟选项名,比如-h localhost or--host=localhost

4.password的特殊性

5. Within option names, dash (-) and underscore (_) may be used interchangeably. For example, --skip-grant-tables and--skip_grant_tables are equivalent. (However, the leading dashes cannot be given as underscores.)

6.Numeric值后可以跟K,M,G表示1024,1024^2,1024^3

e.g. mysqladmin --count=1K --sleep=10 ping

K可以小写k.

7.包含空格的值必须使用引号括起来.

有几种方式来specify选项for MySQL programs:  

a)List the options on the command line following the program name.This is common for options that apply to a specific invocation of the program

tions the highest.

4.reset password

官网教程比较详细.

https://dev.mysql.com/doc/mysql-windows-excerpt/8.0/en/resetting-permissions-windows.html

可能因为安全性原因,Google了好几种方法,要么是针对老版本的,要么是针对忘记密码修改密码的.

如果知道密码或者没有密码,想修改密码为其他或者null,其实可以更简单.

假设配置好环境变量,不然的话需要在cmd在Server 8.0的bin目录下启动.

直接shell>mysql -u root[or username if changed] [-p](if set pwd)登入.

然后在控制台中输入:

ALTER USER 'root'@'localhost' IDENTIFIED BY 'MyNewPass';

如果MyNewPass为空,则没有密码.

ALTER USER root@localhost IDENTIFIED BY 'MyNewPass';

也是等效的.

-------------------

https://dev.mysql.com/doc/refman/8.0/en/mysqladmin.html

-----------------------

A> mysqladmin - client for Administering a MySQL server.

mysqladmin is a client for performing administrative operations.

syntax:

shell> mysqladmin [options] command [command-arg] [command [command-arg]] ...

B> mysqlcheck - A Table Maintenance Program

it checks ,repairs, optimizes, or analyzes tables.

mysqlcheck must be used when the mysqld server is running,.

mysqlcheck use the SQL statements CHECK_TABLE| REPAIR_TABLE | ANALYZE_TABLE AND OPTIMIZE_TABLE.

C> mysqldump - A  Database Backup Program

the mysqldump client utility performs logical backups, producing a set of SQL statements that can be executed to reproduce the original database obejct definitions and table data.

It dumps one or more MySQL databases for backup or transfer to another SQL server. THe mysqldump conmmand can also generate output in CSV,outer delimited text, or XML format.

D>mysqlimport - A Data Import Program

The mysqlimport client provides a command-line interface to the LOAD_DATA_INFILE SQL statement.

Syntax:

shell> mysqlimport [options] db_name textfile1 [textfile2 ...]

filename会忽略(strip)拓展名,也就是只要名称相同,所有拓展名包括无拓展名的该名称的文件都会被导入.

E>mysqlpump - A Database Backup Program

the mysqlpump client utility performs logical backups.producing a set of SQL statements that can be executed to reproduce the origin database object definitions and table data.

It dumps one or more MySQL databases for backup or transfer t o another SQL server.

F> mysqlsh - The MySQL Shell

MySQL shell is an advancecd command-line client and code editor for mySQL. In addition to SQL, mysql shell also offers scripting capabilites for JavaScript and Python.

G>mysqlslap - Load Emulation Client

is a diagnostic program designed to emulate client load for a MySQL server and to report the timing of each stage.

It works as if multiple clients are accessing the server.

syntax: shell>mysqlslap [options]

Some options such as --create or --query enable you to specify a string containing an SQL statement or a file containing statements.

MySQL official tutorial的更多相关文章

  1. mysqlsh : mysql shell tutorial

    MySQL Shell 是一个高级的命令行客户端以及代码编辑器for Mysql. 除了SQL,MySQL Shell也提供脚本能力 for JS and Python. When MySQL she ...

  2. [转载] CMake Official Tutorial——教程还是官方的好

    CMake官方教程传送门:https://cmake.org/cmake-tutorial/ 以下的内容跟官方教程基本一致,少数地方根据自己的测试有所改动: A Basic Starting Poin ...

  3. ROS->The Official Tutorial

    系统安装 我的使用环境是Ubuntu 16.04LTS 32bit # deb cdrom:[Ubuntu 16.04 LTS _Xenial Xerus_ - Release amd64 (2016 ...

  4. [Hibernate] official tutorial - userguide

    Persistence contexts org.hibernate.Session API and javax.persistence.EntityManager API represent a c ...

  5. MySQL vs. MongoDB: Choosing a Data Management Solution

    原文地址:http://www.javacodegeeks.com/2015/07/mysql-vs-mongodb.html 1. Introduction It would be fair to ...

  6. JDBC + MySQL 示例

    jdbc mysql connection 教程 翻译自:JDBC MySQL Connection Tutorial Java Database Connectivity (JDBC) 是一个基于J ...

  7. TensorFlow tutorial

    代码示例来自https://github.com/aymericdamien/TensorFlow-Examples tensorflow先定义运算图,在run的时候才会进行真正的运算. run之前需 ...

  8. How to Install MySQL on CentOS 7

    CentOS 7的yum源中貌似没有正常安装mysql时的mysql-sever文件,需要去官网上下载   # wget http://dev.mysql.com/get/mysql-communit ...

  9. Connect C# to MySQL

    Connect C# to MySQL using MySQL Connector/Net, Insert, Update, Select, Delete example, Backup and re ...

随机推荐

  1. 20145212 罗天晨 Web安全基础实践

    一.实验后回答问题 (1)SQL注入攻击原理,如何防御 原理:SQL注入攻击是攻击者在web应用程序中事先定义好的查询语句的结尾上添加额外的SQL语句,把SQL语句当做用户名等输入正常网页中以获取数据 ...

  2. 牛客网数据库SQL实战(6-10)

    6.查找所有员工入职时候的薪水情况,给出emp_no以及salary, 并按照emp_no进行逆序CREATE TABLE `employees` (`emp_no` int(11) NOT NULL ...

  3. CF983B XOR-pyramid

    设\(xorx[l][r]\)表示题目中\(f(l,r)\)的值,则可以得出 \[ xorx[i][j]=xorx[i][j-1] \oplus xorx[i+1][j] \] 设\(maxx[l][ ...

  4. 比赛总结——牛客网 NOIP赛前集训营提高组模拟第一场

    第一场打的很惨淡啊 t1二分+前缀最小值没想出来,20分的暴力也挂了,只有10分 t2数位dp,调了半天,结果因为忘了判0的特殊情况WA了一个点,亏死 t3emmmm.. 不会 imone说是DSU ...

  5. Tutorials on training the Skip-thoughts vectors for features extraction of sentence.

    Tutorials on training the Skip-thoughts vectors for features extraction of sentence.  1. Send emails ...

  6. 微信发送红包示例(php)

    微信红包接口 微信红包是微信支付推出的一款基于微信客户端的免费服务应用,微信红包以微信支付 为核心安全保障,为广大用户提供安全,快捷的移劢支付服务. 请求URL 现金红包 https://api.mc ...

  7. Images之base image

    Create a base image Most Dockerfiles start from a parent image. If you need to completely control th ...

  8. js为什么返回两个对象字符串 objcet objcet ?

    js中两个使用 toString() 对有个有对象的数组进行操作时,为什么返回两个对象字符串 objcet objcet ? [{}].toString(); 返回 "[object Obj ...

  9. 模块、包及常用模块(time/random/os/sys/shutil)

    一.模块 模块的本质就是一个.py 文件. 导入和调用模块: import module from module import xx from module.xx.xx import xx as re ...

  10. 将实体类、匿名对象转换为SqlParameter列表

    /// <summary> /// <remarks> /// <para>将实体类/匿名对象转换为SqlParameter列表</para> /// ...