一些常用的命令

来源:互联网 发布:穿越火线网络连接失败 编辑:程序博客网 时间:2024/05/04 03:04

mysql

查询数据库中所有表名

select * from information_schema.tables

查询指定数据库中指定表的所有字段名

select column_name from information_schema.columns  where table_schema=’YOURDATABASENAME’ and table_name=’YOURTABLENAME’

 

scp

scp /home/cheney/full.tar.gz root@10.5.0.1:/home/root/ scp

 

JBoss Login module 的logout

只能在FORM auth-method 的时候用

session.invalidate()

同时设置配置文件

<security-domain flushOnSessionInvalidation="true">java:/jaas/JBossLoginModule</security-domain>

原创粉丝点击