`
xu_wccq
  • 浏览: 130872 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论

常用资料

阅读更多
mysql
查找异常线程:
shell >mysqladmin proc stat -i2 (-i2每隔两秒显示一次)

#> 杀死线程:  shell >mysqladmin kill [pid]

#> 授权
mysql>grant all on productcenter.* to 'user'@'localhost' identified by 'password';(指定的user用户拥有productcenter数据库中的所有表的所有权限(select ,insert,update,delete.....)
mysql>grant select on productcenter.* to 'user'@'localhost' identified by 'password';(只拥有select 权限)



shell
#>find ./ -name *~ -type f -exec rm -rf {} \; 
(删除当前目录及子目录下所有以 ~ 结尾的文件.)

#>find ./ -name .svn -type d -exec rm -rf {} \;
(删除当前目录以及子目录下所有名为 .svn 的目录)


分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics