|
First, make sure that you're using the Service Administration Login Page
(http://somehost.com/pls/htmldb/htmldb_admin) If the screen you're
seeing doesn't say something like "Welcome to Application Express
Service Administration" then you're probably not properly attempting to log
into the htmldb_admin interface. If you just installed Application
Express, the password was specified as part of that install. The
username will always be "admin" by default. If you still cannot
remember the password, then you can use SQL*Plus to reset the password or create a new
Administrator depending on which release of Oracle APplication Express you are using.
With release 3.0 and 3.1 to change the admin password start SQL*Plus and connect to the database where Oracle Application Express is installed as SYS. Then enter the following command followed by the new password:
@apxxepwd.sql password
For Releases prior to 3.0 you will need to create a new Administrator. Using that newly created login, you should be
able to log into the Service Administration Console and reset the original Admin user's password. To create the new admin user from SQL*Plus,
customers connect to the database as sys or system and run this command:
alter user FLOWS_020000 account unlock;
...and then connect to the FLOWS_020000 user and run this procedure:
begin
wwv_flow_api.set_security_group_id(p_security_group_id=>10);
wwv_flow_fnd_user_api.create_fnd_user(
p_user_name => 'admin2',
p_email_address => 'myemail@mydomain.com',
p_web_password => 'admin2') ;
end;
/
...which creates a new admin user with username "admin2" and password "admin2". Finally, execute a...
alter user FLOWS_020000 account lock;
...from a schema like System after this process is completed.
Back to top
|