4

I've just installed an Oracle 11g Standard Edition Database. It ran successfully and everything, however when going to Oracle Enterprise Manager Im not really sure what my "username" would be.

I entered a password during the installer, and I tried SYS and my password connecting as "Normal" and "SYSDBA". However, I'm not really sure what my username is meant to be. Is it just that I haven't set up a username/password for this yet?

Thanks

RolandoMySQLDBA
185k34 gold badges327 silver badges541 bronze badges
asked Jul 23, 2013 at 13:51

3 Answers 3

6

Here is the Oracle 11.2 installation document describing the administrator user accounts after installation. Once logged in, you would change passwords with the syntax

alter user system identified by mynewpassword;

Note the SYS and SYSTEM accounts are assigned the DBA role. The DBA role does not have a password, the accounts do. The DBA role is created with every installation. You could grant the DBA role to another user if needed.

answered Jul 23, 2013 at 16:51
1
  • 1
    Please update the provided link. It's broken. Commented Nov 14, 2018 at 11:22
6

The best account to login to the Oracle Enterprise Manager Database Control (EMDC) is the SYSMAN user account; with it, you are logging in as the proper EMDC super user. Use NORMAL mode, not AS SYSDBA.

Alternatively, you can use SYSTEM (specifying mode AS SYSDBA).

This is per 11.1 manual: http://docs.oracle.com/cd/B28359_01/install.111/b32002/rev_precon_db.htm#autoId1

The same manual describes how to, being in EMDC, convert another "normal" database user (the one you use in sqlplus) into an EMDC-capable user. Or, from within EMDC, you can create a new user: a database user that is both EMDC-capable and sqlplus-capable from the beginning.

As SYSMAN wouldn't have a password by default after install, you need to assign it. Just login to sqlplus with SYS AS SYSDBA and issue:

alter user sysman identified by "MyPass!@#$" account unlock;
answered Jul 24, 2013 at 21:12
0
0

Open a browser, and access the Enterprise Manager Cloud Control Console

https://<oms_host_name>:<console_port>/em

Enter the user name sysman, and the password you provided for this user account at the time of installation.

answered Feb 14, 2016 at 9:42

Your Answer

Draft saved
Draft discarded

Sign up or log in

Sign up using Google
Sign up using Email and Password

Post as a guest

Required, but never shown

Post as a guest

Required, but never shown

By clicking "Post Your Answer", you agree to our terms of service and acknowledge you have read our privacy policy.