Oracle‎ > ‎Application Express‎ > ‎

体験版では定期的にユーザーのロック解除が必要です

Application Express を利用していて急にadminでログインできなくなる現象がある。パスワードの期限が切れただけかと思いきや、体験版の期限が切れた場合におきる現象だ。とりあえず、ログインできるようにするには以下の手順を踏む。

1.データベースサーバーのapexがインストールされているところを開く
[root]# cd <ORACLE_HOME>/apex

2.sqlplusでsysにログインする
[root]# sqlplus sys/Password01 as sysdba

3.コマンドを実行する
SQL> @apxconf

      PORT
----------
      8080

Enter values below for the XDB HTTP listener port and the password for the Application Express ADMIN user.
Default values are in brackets [ ].
Press Enter to accept the default value.


Enter a password for the ADMIN user              []ここで適当に仮のパスワードを入力して[Enter]
Enter a port for the XDB HTTP listener [      8080]
...changing HTTP Port

PL/SQL procedure successfully completed.

...changing password for ADMIN

PL/SQL procedure successfully completed.


Commit complete.


4.apex/apex_adminにアクセスしてログイン後、自動的にパスワードの変更画面になるので正規のパスワードを設定する。

ソース(http://www.oracle.com/technology/global/jp/obe/11gr1_db/install/apexinst/apexinst.htm)

Comments