Install APEX - Intergraph Smart Materials - Version 2020 (10.0) - Installation & Upgrade - Hexagon

Intergraph Smart Materials Installation (2020)

Language
English
Product
Intergraph Smart Materials
Subproduct
Classic
Search by Category
Installation & Upgrade
Smart Materials/Smart Reference Data Version
2020 (10.0)
  1. Download Oracle Application Express to c:\tmp.

  2. Extract apex_19.1.zip to your hard drive.

  3. Open a Command Prompt window.

  4. Change your working directory to the apex directory where you unzipped the installation software, for example, c:\tmp\apex.

  5. Set the following Oracle parameters (replace <ORACLE_HOME> with the path of your Oracle home directory, and <SID> with the name (sid) of your database):

    set ORACLE_HOME=<ORACLE_HOME>

    set ORACLE_SID=<SID>

    For example:

    set ORACLE_HOME=C:\oracle\18c_Sta\db

    set ORACLE_SID=SMAT

  6. Launch SQL*Plus and connect to the database with sys as sysdba.

    Sqlplus /nolog

    connect sys/<password> as sysdba

  7. Execute:

    @apexins SYSAUX SYSAUX TEMP /i/

    InsAPEX01

    It takes a while.

    InsAPEX02

  8. To change the password for the admin account, do the following:

    1. Launch SQL*Plus and connect to the database as SYS specifying the SYSDBA role.

      Sqlplus /nolog

      connect sys/<password> as sysdba

    2. Run the apxchpwd.sql script.

    3. When prompted, enter a password for the ADMIN account.

      If you enter a password that does not match the complexity rules, get you an error. With a correct password the procedure will succeed.

      InsAPEX03

  9. Configure the user APEX_PUBLIC_USER as follows:

    1. Launch SQL*Plus and connect to the database as SYS specifying the SYSDBA role.

      sqlplus /nolog

      connect sys/<password> as sysdba

    2. Enter the following commands to unlock the user and change the password (replace <new_password> with your password):

      ALTER USER APEX_PUBLIC_USER ACCOUNT UNLOCK;

      ALTER USER APEX_PUBLIC_USER IDENTIFIED BY <new_password>;

    Remember the new password. In case of using special characters enclose the password in quotes.