- 浏览: 303840 次
- 性别:
- 来自: 上海
文章分类
- 全部博客 (167)
- <HTML and JavaScript and CSS> (6)
- 《Java2 基础知识及概念》 (3)
- Java2 Tools及其他 (11)
- EJB2.0 相关 (3)
- 英语学习 (4)
- Oracle Database Server (27)
- 计算机理论 (9)
- Java持久层框架 (2)
- 《Linux操作系统》 (24)
- 杂项技术 (4)
- Application Server (15)
- Windows操作系统 (7)
- Java中间件 (6)
- 娱乐生活 (4)
- 《Java设计模式》 (3)
- 《Interview Skill》 (1)
- 《Struts原理及应用》 (1)
- Workflow (2)
- 云计算 (3)
- 项目实践 (3)
- WEB相关技术 (10)
- JavaScript技巧及应用 (1)
最新评论
-
Interactive Installation
$ ./runInstaller -
Non-Interactive Installation
$ ./runInstaller -responsefile myrespfile -silent - DBCA
- Optional Flexible Architecture(OFA)
-
create OS user id: xxx
create OS group: ora_dba, ora_fox_dba, ora_oper, ora_fox_oper
add OS user id to ora_dba group
edit sqlnet.ora: SQLNET.AUTHENTICATION_SERVICES= (NTS)
(1)windows,SQLNET.AUTHENTICATION_SERVICES必须设置为NTS或者ALL才能使用OS认证;不设置或者设置为其他任何值都不能使用OS认证。
(2)linux,SQLNET.AUTHENTICATION_SERVICES的值设置为ALL,或者不设置的情况下,OS验证才能成功;设置为其他任何值都不能使用OS认证。 - Using Password File Authentication
$ orapwd file=xxx.ora password=admin entries=5
set REMOTE_LOGIN_PASSWORDFILE to EXCLUSIVE in init.ora file
grant sysdba to fox
1.remote_login_passwordfile = NONE
此时停用口令文件验证,Oracle数据库不允许远程SYSDBA/SYSOPER身份登录无法通过远程进行数据库起停等操作管理
2.remote_login_passwordfile = exclusive
3.remote_login_passwordfile = SHAREDMore than one database can use a password file. However, the only user recognized by the password file is SYS.
意思是说多个数据库可以共享一个口令文件,但是只可以识别一个用户:SYS很多人的疑问在于:口令文件的缺省名称是orapw<sid>,怎么能够共享? 实际上是这样的: Oracle数据库在启动时,首先查找的是orapw<sid>的口令文件,如果该文件不存在,则开始查找,orapw的口令文件,如果口令文件命名为orapw,多个数据库就可以共享. 那么你可能会有这样的疑问,多个Exclusive的数据库是否可以共享一个口令文件(orapw)呢?SQL> show parameter password
NAME TYPE VALUE
------------------------------------ ----------- ------------------------------
remote_login_passwordfile string SHARED[oracle@jumper dbs]$ strings orapw
]\[Z
ORACLE Remote Password file
INTERNAL
AB27B53EDC5FEF41
8A8F025737A9097A注意这里仅记录着INTERNAL/SYS的口令
REMOTE_LOGIN_PASSWORDFILE=EXCLUSIVE 时
[oracle@jumper dbs]$ strings orapw ]\[Z ORACLE Remote Password file HSJF INTERNAL AB27B53EDC5FEF41 8A8F025737A9097A [oracle@jumper dbs]$ exit exit
注意这里,以EXCLUSIVE 方式启动以后,实例名称信息被写入口令文件.
此时如果有其他实例以Exclusive模式启动仍然可以使用这个口令文件,口令文件中的实例名称同时被改写.
也就是说,数据库只在启动过程中才读取口令文件,数据库运行过程中并不锁定该文件,类似于pfile/spfile文件.注意此时可以增加SYSDBA用户,并且这些信息可以被写入到口令文件. 一旦口令文件中增加了其他SYSDBA用户,此文件不再能够被其他Exclusive的实例共享.
SQL > select * from v$pwfile_users;
SQL > show user配置企业管理控制台
OEMREP(OEMREP/OEMREP)
Manager Server Service 和Agent必须启动,另外还要有一个管理的schema
sysman/oem_temp必须以这个用户登陆OMS
发表评论
文章已被作者锁定,不允许评论。
-
Oracle忘记数据库密码
2011-07-01 23:45 768alter user xxx identified by xx ... -
Oracle内存全面分析
2010-07-07 16:49 856http://www.hellodba.com/Doc/ora ... -
(15)Managing User
2010-07-07 13:59 843SQL> alter user xxx quo ... -
(14) Managing Password Security and Resources
2010-07-07 13:59 755Password Management SQL> ... -
(13) Managing Data Integrity
2010-07-07 13:58 747... -
(12) Managing Indexes
2010-07-07 13:58 739a -
(11)Managing Table
2010-07-07 13:57 807Storing User Data(1) Regular t ... -
(10) Managing Undo Data
2010-07-07 13:56 799show parameter undo; ... -
(9) Storage Structure and Relationships
2010-07-07 13:55 978Extent Allocat ... -
(8) Managing Tablespaces and Data files
2010-07-07 13:55 1101SQL> select * from v$tabl ... -
(7) Maintaining Redo Log Files
2010-07-07 13:54 1143SQL> select * from v$lo ... -
(6) Maintaining Control file
2010-07-07 13:54 710select * from v$database; se ... -
(5)Data Dictionary Content and Usage
2010-07-07 13:53 1013Data Dictionary(1) Data Dictio ... -
(4)Create a Database
2010-07-07 13:52 813Operating System EnvironmentOR ... -
(3)Manage a Oracle Instance
2010-07-07 13:39 811Init Parameter Start Sequences ... -
《Oracle视频教程》
2010-07-07 11:23 22431. Oracle Architectural Compone ... -
Oracle EXP/IMP命令详解
2010-07-07 10:01 1076EXP命令 格式: EXP KEYWORD=value ... -
Oracle EXP Direct
2010-07-07 10:00 1238Oracle提供2种模式导出表数据,传统模式CONVENTIO ... -
EXPDP和IMPDP使用说明
2010-07-07 09:53 1049EXPDP命令行选项 1. ATTACHexpd ... -
Oracle GoldenGate备份软件
2010-07-05 13:46 2564转载:http://edu.codepub.com/2010/ ...
相关推荐
Edward Snajder takes on the challenges of performance, optimization, scalability, and portability for PostgreSQL, Oracle, SQL Server, and MySQL DB engines for the databases behind the Jive platform....
### Oracle 错误代码解析 #### ORA-00001: Unique constraint violated - **解释**: 当尝试插入或更新的数据违反了唯一性约束时触发此错误。 - **解决方案**: 检查数据是否重复,并确保每个字段值都是唯一的。 ##...
### Oracle报错大全(珍藏版) #### ORA-00001: Unique Constraint Violated 当尝试插入或更新违反唯一约束的数据时触发此错误。例如,在具有唯一索引的列上插入重复数据。 #### ORA-00017: Rollback Segment Full...
在安装WebLogic Server 10.3.3时,用户需参考官方提供的"Getting started with WebLogic Server 10.3.3"文档,遵循其中的步骤进行。安装过程中会设置管理员账户的初始密码,这里设定为`weblogic1234`。 2. **启动...
### Oracle 错误一览表详解 #### ORA-00001: Unique constraint violated - **描述**:当尝试插入或更新一个行时,违反了唯一性约束。 - **解决方法**:确保数据不违反任何唯一性约束,或者修改约束以适应数据。 #...
在QuickStart界面,选择"Getting started with WebLogic Server?",然后创建新域: 1. 选择"Create a new WebLogic domain"。 2. 在"Select Domain Source"界面,选择"Generate a domain configured automatically ...
首先,选择"Getting started with WebLogic Server",然后选择"Create a new WebLogic domain"。 7. 配置Domain: 按照向导的指示,一路点击"下一步",在指定Domain管理员用户名和密码时,输入如`weblogic01`。不...
1. 选择“Getting started with weblogic Server?”,然后点击“Next”。 2. 在“Create a new weblogic domain”选项上打勾,点击“Next”。 3. 选择“Generate a domain configured automatically to support the ...
9. **Fusion Middleware配置向导**:可以通过开始菜单或点击“Getting started with WebLogic Server”来启动配置向导。 **二、WebLogic配置** 1. **创建新域**:在配置向导中选择“创建新的Weblogic域”,然后...
1. **启动配置向导**:安装完成后,会自动弹出 QuickStart 窗口,点击 “Getting started with...” 进入配置向导。 2. **创建新域**:选择 “New” 创建一个新的域,点击 Next 继续。 3. **域信息**:选择是否为...
- 通过点击“Getting started with WebLogic Server”或通过开始菜单进入 Fusion Middleware 配置向导。 **2. 创建新的 WebLogic 域** - 选择“创建新的 WebLogic 域”,点击“下一步”。 **3. 接受默认设置** ...
7.7 Oracle Georaster . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 177 7.8 Postgis Raster . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . ...