博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Oracle中修改sysman和dbsnmp密码正确流程
阅读量:6300 次
发布时间:2019-06-22

本文共 836 字,大约阅读时间需要 2 分钟。

1、停止dbconsole
$ emctl stop dbconsole
查看状态,确认dbconsole已经停止
$ emctl status dbconsole
 
2、修改sysman用户和dbsnmp用户的密码
$ sqlplus / as sysdba
SQL> alter user sysman identified by xxx;
SQL> alter user dbsnmp identified by yyy;
解锁用户
SQL> alter user sysman account unlock;
SQL> alter user dbsnmp account unlock;
确认密码已修改
SQL> conn sysman/xxx;
Connected.
SQL> conn dbsnmp/yyy;
Connected.
 
3、修改配置文件
(与sysman相关)
转到$ORACLE_HOME/(host)_(sid)/sysman/config目录下
a. 把emoms.properties另存为emoms.properties.old
b. 修改emoms.properties文件
找到oracle.sysman.eml.mntr.emdRepPwd=把等于后的加密字串替换成刚才更改的密码xxx;
找到oracle.sysman.eml.mntr.emdRepPwdEncrypted=TRUE 把TRUE换成FALSE。
 
(与dbsnmp相关)
转到$ORACLE_HOME/(host)_(sid)/sysman/emd目录下
$cp targets.xml targets.xml.bak
$vi targets.xml
修改下列代码中:
 
 
用新的dbsnmp的密码代替上列password的Value值,ENCRYPTED的值修改成FALSE。
 
4、重启dbconsole,访问EM恢复正常
$emctl start dbconsole

转载地址:http://sagta.baihongyu.com/

你可能感兴趣的文章
做人与做技术
查看>>
oracle列转行函数 LISTAGG()
查看>>
发段代码玩玩
查看>>
Linux_free(buffer与cache区别)
查看>>
我的友情链接
查看>>
一分钟学会spring注解之@value注解
查看>>
CentOS7修改网卡为eth0
查看>>
Exchange 2007 数据保护与灾难恢复
查看>>
Oracle在线调整redo日志组数及组成员
查看>>
快速搜索工具Everything
查看>>
反射遍历所有属性,包括父类
查看>>
Canvas、Path 和 Paint 实例 (游戏开发必备)
查看>>
Sentry for Impala Without kerberos(CDH 5.10)
查看>>
curl命令详解
查看>>
shell脚本批量修改主机密码
查看>>
Memcached
查看>>
PHP里10个鲜为人知但却非常有用的函数
查看>>
我的友情链接
查看>>
文件管理系统的学习
查看>>
邮件服务器_安装准备和安装之七_(Windows Server 2008 R2 SP1英文版)
查看>>