标签:mysql常用操作记录
/usr/local/sbin/apachectl graceful
创建用户 CREATE USER ‘test‘@‘192.168.1.1‘ IDENTIFIED BY ‘111111‘;
授权 grant all privileges on *.* to test@‘localhost’ identified by ‘111111‘; 本机
grant all privileges on *.* to test@‘%’ identified by ‘111111‘; %允许网络端主机访问数据库
删除用户名 DELETE FROM user WHERE User="jude" and Host="localhost";
mysql> UPDATE user SET Password= PASSWORD(‘111111‘) WHERE user=‘mysql‘;
FLUSH PRIVILEGES;
mysql常用维护命令
show processlist
如果是root帐号,你能看到所有用户的当前连接,如果是其它普通帐号,只能看到自己占用的连接
show processlist只能列出前100条;如果想全列出请使用show full processlist
1、show global status;列出MySQL服务器运行各种状态值
2、show variables;查询MySQL服务器配置信息语句
3、查看慢查询
show variables like ‘%slow%‘;
show global status like ‘%slow%‘;
4、最大连接数
show variables like ‘max_connections‘;MySQL服务器最大连接数
show global status like ‘Max_used_connections‘; 服务器响应的最大连接数
5、查看表结构
desc Tablename;
describe Tablename;
show columns from Tablename;
show create table Tablename
show binlog enevts in ‘master-bin0000001‘; 产看binlog日志执行内容
show global variables like ‘read%‘;
vi /etc/my.conf read-only = ON 设置数据库子读模式
master_info real_info
sync-binlog =on 在主服务器设置用户事务安全
percona-tools percona-toolkit查看mysql主从同步信息工具
pt-slave-delay -h
还可以查看系统硬件负载
MySQL监控时常用的的几个MySQL命令。
status = show status like ‘%%’ [例:show status like ‘Com_select‘]
variables = show variables like ‘%%’ [例:show variables like ‘query_cache_size‘]
1、MySQL查询次数(status)
Com_select;Com_update;Com_insert;Com_delete;Com_change_db
2、查询缓存空间大小:query_cache_size(variables)
查询缓存最大查询数据集大小:query_cache_limit(variables);
缓存中的查询个数:Qcache_inserts(status);
查询缓存命中率:(Qcache_hits/(Qcache_hits+Qcache_inserts))*100% (status)
3、索引缓存命中率
索引缓存空间大小:key_buffer_size (variables)
索引缓存命中率:(Key_reads/Key_read_requests)*100% (status)
4、并发连接数
最大充许连接数:max_connections(variables)
实际最大连接数:max_used_connections(status)
当前连接数:Threads_connected(status)
活跃连接数:Threads_running(status)
缓存连接数:Threads_cache(status)
5、流量统计(status)
Bytes_received ,Bytes_sent(status)
6、连接次数
每秒连接次数:Connections(status)
每秒实际创建连接次数:Threads_created(status)
7、表锁定统计
立即释放的表锁数:Table_locks_immediate(status)
需要等待的表锁数:Table_locks_waited(status)
数据库备份脚本
#!/bin/bash
DATE=`date +%Y%m%d%H%M`
DATABASE=test
BACKUP=/data/backup
PASSWORD="111111"
/usr/local/mysql/bin/mysqldump -umysql -h 127.0.0.1 -p$PASSWORD -R --opt $DATABASE |gzip > ${BACKUP}\/${DATABASE}_${DATE}.sql.gz sleep 3
find $BACKUP -mtime +10 |xargs rm -rf
本文出自 “linux学习中..” 博客,请务必保留此出处http://haozi4263.blog.51cto.com/2791641/1663668
标签:mysql常用操作记录
原文地址:http://haozi4263.blog.51cto.com/2791641/1663668