You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

52 lines
1.4 KiB

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

mysqladmin
===
MySQL服务器管理客户端
## 补充说明
**mysqladmin命令** 是mysql服务器管理任务的客户端工具它可以检查mytsql服务器的配置和当前工作状态创建和删除数据库创建用户和修改用户密码等操作。
### 语法
```
mysqladmin(选项)(参数)
```
### 选项
```
-hMySQL服务器主机名或ip地址
-u连接MySQL服务器的用户名
-p连接MySQL服务器的密码
--help显示帮助信息。
```
### 参数
管理命令需要在MySQL服务器上执行的管理命令。
**mysqladmin支持下列命令**
```
create databasename创建一个新数据库
drop databasename删除一个数据库及其所有表
extended-status给出服务器的一个扩展状态消息
flush-hosts清空所有缓存的主机
flush-logs清空所有日志
flush-tables清空所有表
flush-privileges再次装载授权表(同reload)
kill id,id,...杀死mysql线程
password 新口令:将老密码改为新密码;
ping检查mysqld是否活着
processlist显示服务其中活跃线程列表
reload重载授权表
refresh清空所有表并关闭和打开日志文件
shutdown关掉服务器
status给出服务器的简短状态消息
variables打印出可用变量
version得到服务器的版本信息。
```
<!-- Linux命令行搜索引擎https://jaywcjlove.github.io/linux-command/ -->