And of course it’s not that easy!
Actually this is quite annoying.
I have 2 concerns: Having my backups working properly as well as the DB Console.
But also renew my passwords from time to time.
And here we are sys and system’s passwords are luckily easy to change.
But what about sysman and dbsnmp?
Those are not. Try to change it and you will have your backups stop working, OEM throws in tons of errors and soon you will be asking yourself why the hell you wanted to change those passwords in the first place.
The reason
Sysman user is the schema of the standalone repository of the 10g EM DB Control.
If you have change only dbsnmp password your backups will work and the DB console as well but all the cool graphics that I like to show to our customers will disappear and that’s not cool.
There are 2 procedures. 1 for each passwords
Changing sysman password
So, since it’s the schema of the standalone repository, the DB console must be shut down.
C:\emctl stop dbconsole
This should stop dbconsole and the agent.
Have a check first.
C:\emctl status dbconsole
C:\emctl status agent
On windows the agent is very often not shutdown properly… So do it using the services screen find your Oracle10Agent service and make sure it’s not started.
When this is done, open an sqlplus console and throw in the command to change password
C:\set oracle_sid= [your SID]
C:\sqlplus / as sysdba
SQL>alter user sysman identified by [New Password];
Then check the new password by connecting with sysman user. This is to make sure sysman is not locked. Because when the password is changed and you try to reach the OEM, it will locked the sysman user.
SQL>conn sysman/newpassword
connected.
Ah that’s cool
if you get
ora-28000: account is locked
Then unlock it first.
SQL> alter user sysman account unlock;
Now that you get your new password and you are sure the account is not locked, you have to modify the emoms.properties file.
It’s located at ORACLE_HOME\[HOST]_[SID]\sysman\config. Replace HOST with your computer name and SID with your SID.
There are 2 parameters to modify:
oracle.sysman.eml.mntr.emdRepPwd= [Your encrypted password]
oracle.sysman.eml.mntr.emdRepPwdEncrypted=True
Change [Your encrypted password] with your new password in the first parameter
and change True to False in the second parameter.
Wait a minute. That is not very safe! The password is not encrypted!
That’s where Oracle 10g is cool. It’s not like you have a choice here.
As soon as you restart Dbconsole and Oracle agent, it will change false to true and your password will look like a bunch of numbers and letters again (Geeks love that)
So just type in:
C:\emctl start dbconsole
C:\emctl start agent
Again, if the agent is not started, try to do it through the service window. I found it to work much better than the command line for Oracle Agent.
Changing dbsnmp password
It’s about the same thing except it’s another configuration file.
Stop Db Console and Oracle agent. Just like before.
Make sure it’s stopped just like before.
Modify your user password just like before except use alter dbsnmp instead of sysman.
Finally make sure it’s not locked.
We have to modify the file targets.xml this time and that one is located at:
ORACLE_HOME\[HOST]_[SID]\sysman\emd
Look for this line:
<Property NAME=”password” VALUE=”<[Your encrypted password]>” ENCRYPTED=”TRUE”/>
Just like before, change [Your encrypted password] to your new password and change TRUE to FALSE.
Just like before, restart your DB Console service and Oracle Agent service.
Make sure they are working.
C:\emctl status dbconsole
C:\emctl status agent
Voila! It’s all done.
The bottom line is: When you want to change a password that doesn’t look like a collegue name, find some documentation on it first. A good way is to google: Problem [user].
You’ll find a lot of them!
Thanks for the DBSNMP and SYSMAN password-changing notes, I found them to be really clear. cheers!
Thanks Alex.
Im glad my experience help others a little
I’ve been through a lot recently but I got to figure out the ins and outs first.
It’s about sync and dataguard
I had the same problem i am not able to connect as sys as sysdba using oracle 10G DB control.But i am able to connect using Enterprise Manager.
I have done log on as a batch job though i think thats not required …and password of sysman is correct
the error displayed is invalid username and password though i can connect using …the same password using enterprise manager ..please help
These instructions worked for 11g too.
Thanks!
Hi.
Here what I would do:
connect like this on console:
C:\>set oracle_sid=
C:\>sqlplus / as sysdba
SQL>connect sysman/yourpassword
if it fails:
SQL>alter user sysman identified by ;
At least now I’m sure what the password should be.
Try to connect again using the same user.
if it fails again, you might want to try:
SQL>alter user sysman account unlock;
Then I would follow the document right here to configure sysman password for EM.
hope this helps
nico
how to change the password which is used to talk to OMS from agent managed server?
I forgot the password I set when install OMS.
Thanks,
- Hank
Well done! Wanted you to know you were right about using the Window’s service. Tried your instructions first without and it didn’t work. You save me a ton of time by having such well written instructions.
Thanks!!
Kathie
Thanks very much for that crystal clear steps to change the passwords. It is very much helpful.
Phani
Thank you so much. Finally go the 10g EM working after this update.
If I don’t have a catalog (repository) database created (Just using the control file), I don’t have to go through this process. I can just change the DBSNMP password. Is that correct?
Thanks
-Brian-
Nice Job Mate !!! It was very helpful !!!
Oh my god! A year later there’s still lots of people with the same problem.
I’m happy the few post I got online on this blog are still helping people out
Thanks a lot , It helped me in time.
Thanks for the steps, it helped!
Thanks a lot! very useful and clear information!
Thanks alot, its very helpfull
Thank you very much! It is very helpful!
I tried to change my password for sysman. I could make the changes to the property file. But when I try to start the dbconsole on the dos window , the message i get is OC4J configuration issue. Then I started the OC4J instance and tried to restart the dbconsole. This time I get a message “EM configuration issue. C:\app\sambhaji\product\11.1.0.\db_1/DG9TCS91_orcl; not found”.
Can you please help.