Oracle的默认用户密码

1.安装时选择的自动安装,忘了用户名和密码导致现在试了几个oracle默认用户名密码後(表格中附带默认用户名及密码),都提示无效的用户名、密码,

username

password

description

see also

ctxsys

ctxsys

the oracle text account

oracle text reference

dbsnmp

dbsnmp

the account used by the management agent component of oracle enterprise manager to monitor and manage the database

oracle enterprise manager grid control installation and basic configuration

lbacsys

lbacsys

the oracle label security administrator account

oracle label security administrator’s guide

mddata

mddata

the schema used by oracle spatial for storing geocoder and router data

oracle spatial user’s guide and reference

mdsys

mdsys

the oracle spatial and oracle intermedia locator administrator account

oracle spatial user’s guide and reference

dmsys

dmsys

the oracle data mining account.

oracle data mining administrator’s guide

oracle data mining concepts

olapsys

manager

the account used to create olap metadata structures. it owns the olap catalog (cwmlite).

oracle olap application developer’s guide

ordplugins

ordplugins

the oracle intermedia user. plug-ins supplied by oracle and third party format plug-ins are installed in this schema.

oracle intermedia user’s guide

ordsys

ordsys

the oracle intermedia administrator account

oracle intermedia user’s guide

outln

outln

the account that supports plan stability. plan stability enables you to maintain the same execution plans for the same sql statements. outln acts as a role to centrally manage metadata associated with stored outlines.

oracle database performance tuning guide

si_informtn_schema

si_informtn_schema

the account that stores the information views for the sql/mm still image standard

oracle intermedia user’s guide

sys

change_on_install

the account used to perform database administration tasks

oracle database administrator’s guide

sysman

change_on_install

the account used to perform oracle enterprise manager database administration tasks. note that sys and system can also perform these tasks.

oracle enterprise manager grid control installation and basic configuration

system

manager

another account used to perform database administration tasks.

oracle database administrator’s guide

这时候要找到一组用户名、密码提示被锁,才能进行下一步

安装oracle时,若没有为下列用户重设密码,则其默认密码如下:

用户名/密码

登录身份

说明

sys/change_on_install

sysdba或sysoper

不能以normal登录,可作为默认的系统管理员

system/manager

sysdba或normal

不能以sysoper登录,可作为默认的系统管理员

sysman/oem_temp

sysman 为oms的用户名

scott/tiger

normal

普通用户

aqadm /aqadm

sysdba或normal

高级队列管理员

dbsnmp/dbsnmp

sysdba或normal

复制管理员

2,在cmd中启动sqlplus;用sqlplus/as sysdba登录,提示

连接到:

oracle database 10g express edition release 10.2.0.1.0 – production

3. 执行alter user 你被锁的用户名 account unlock;

4. 重新用sql/plus登录,用你刚刚解锁的用户名、密码;

重新修改密码就可以了!

具体操作如下:

1.运行->sqlplus /nolog

2.输入conn / as sysdba 管理员账户登录

3.如果用户被锁定先解锁:

alter user system account unlock;

4.修改密码:

alter user system identified by wanglj;

接下来可以用sqlplus登陆了。

(0)
上一篇 2022年3月22日
下一篇 2022年3月22日

相关推荐