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. ldap集成x-pack

    ldap配置支持x-pack有两种格式: 1.  User Search Mode 2. User DN Templates Mode 由于第一种方式需要明文填入ldap管理员账号信息,我这边采用第二 ...

  2. Selenium 15: How to Run Parallel Tests Using Selenium Grid and JUnit

    In this post, I will give two techniques and describe how to run your selenium tests in parallel by ...

  3. topcoder srm 420 div1

    problem1 link 暴力即可.因为即便所有数字的和是50,50所有的不同的划分数只有204226中.所以最长的循环也就这么大. problem2 link 令$f[i][j]$表示有$i$个红 ...

  4. 内置函数之sorted,filter,map

    # 4,用map来处理字符串列表,把列表中所有人都变成sb,比方alex_sb # name=['oldboy','alex','wusir'] # print(list(map(lambda i:i ...

  5. Centos7.5安装VirtualBox-5.2

    1.查看自己的内核版本 [root@localhost /]# rpm -qa |grep kernel kernel-tools-libs-3.10.0-862.6.3.el7.x86_64 ker ...

  6. js选择排序

    选择排序 平均时间复杂度O(n*n) 最好情况O(n*n) 最差情况O(n*n) 空间复杂度O(1) 稳定性:不稳定 function chooseSort (arr) { var temp; var ...

  7. netty基础

    1,ServerBootstrap  [Bootstrap] 

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

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

  9. (转载)Navicat Premium 12.1.16.0安装与激活

    声明:本文所提供的所有软件均来自于互联网,仅供个人研究和学习使用,请勿用于商业用途,下载后请于24小时内删除,请支持正版! 本文介绍Navicat Premium 12的安装.激活与基本使用.已于20 ...

  10. Nginx配置示例

    server {listen 6080;server_name local.boheadmin; location / {proxy_pass http://127.0.0.1:8087;} loca ...