-- 查找特定文件中的文件内容
find ./ -type f -name "*.*" | xargs grep "content"
-- grant 权限1,权限2,…权限n on 数据库名称.表名称 to 用户名@用户地址(%代表所有地址) identified by ‘连接口令’;
grant all privileges on bugs.* to bugs@'%' identified by "123123";
flush privileges;
--登陆尝试 方法:mysql -u用户名 -p密码
mysql -ubugs -p123123
-- 更新密码方法
use mysql;
UPDATE user SET Password=PASSWORD('123123') where USER='bugs';
flush privileges;
-- 设置 bugzilla 可以进行新插入数据
use bugs;
delete from bugs;
commit;
alter table bugs auto_increment=1;
delete from bugs_fulltext;
delete from bug_sum_data;
commit;
-- 备份数据库
mysqldump -hlocalhost -uroot -p --lock-all-tables bugs > ./mybugs_template.dump
-- 导入数据库
mysql -u root -p bugs < ./mybugs_template.dump
============= nmon 监控方法 ================
nmon -f -m /nmon/ -s 3 -c 2
nmon -f -m 路径 -s 采集时间间隔 -c 采集次数
适合 linux unix aix ...