Chinaunix首页 | 论坛 | 博客
  • 博客访问: 1409565
  • 博文数量: 239
  • 博客积分: 5909
  • 博客等级: 大校
  • 技术积分: 2715
  • 用 户 组: 普通用户
  • 注册时间: 2010-07-24 20:19
文章分类

全部博文(239)

文章存档

2014年(4)

2013年(22)

2012年(140)

2011年(14)

2010年(59)

我的朋友

分类: Oracle

2013-10-11 15:57:20

Oracle Database 12c supports proxy authentication to the Oracle database. Proxy authentication is supported over thin and thick JDBC connections and on the command line. Users can authenticate to the database using their own credentials and then proxy to another user in the database. Proxy authentication is particularly useful when administrators need to connect to the application schema to perform maintenance. Audit records generated during the connection include the proxy user name, providing important information on the actual end user who performed the maintenance activities. Note that the new Oracle Database 12c Unified Audit can check whether the connection has been established using a proxy and perform additional auditing. Please refer to the Oracle documentation for additional details on configuring proxy authentication with the Oracle database.


  1.     SYSTEM> grant create session to steve identified by steve_password;
  2.     SYSTEM> grant create session to sales_app_dba identified by sales_app_dba_password;
  3.     SYSTEM> alter user sales_app_dba grant connect through steve;
  4.     SYSTEM> connect steve[sales_app_dba]/steve_password;
  5.     SALES_APP_DBA>
通过使用proxy user可以有效地避免密码泄露问题

阅读(2047) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~