APEX Office Print Installation - 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)

Your data will be transferred to the AOP cloud servers if you are not using an on-premise installation of AOP.

  1. Download the AOP installation package using the appropriate link below and extract it.

    Cloud Package: https://apexofficeprint.s3-eu-west-1.amazonaws.com/cloud/aop_cloud_v19.2.3.zip

    On Premises Package - Linux: https://apexofficeprint.s3-eu-west-1.amazonaws.com/linux/aop_linux_v19.2.3.zip

    On Premises PackageWindows: https://apexofficeprint.s3-eu-west-1.amazonaws.com/windows/aop_win_v19.2.3.zip

    Smart Materials Web 10.0 does only support AOP version 19.2.3.

    For more information see https://www.apexofficeprint.com/docs/index.html?#18-signup-and-download.

  2. Copy the install_aop.sql script from <SMat_Web_Install_folder>\additional_scripts to the AOP installation folder, for example, …aop_cloud_v19.2.3\v19.2.3\apex\apex_version_18.x_19.1.

  3. Start SQL*PLUS and connect as  BIR_SPMAT user.

  4. Run install_aop.sql.

  5. Navigate to the …aop_cloud_v19.2.3\v19.2.3\db directory.

  6. Run install.sql.

  7. Start SQL*PLUS and connect as SYS user.

  8. Execute the following statement:

    BEGIN

    DBMS_NETWORK_ACL_ADMIN.create_acl(acl => 'AOP.xml',

    description => 'Access control list for the AOP service',

    principal => 'BIR_SPMAT',

    is_grant => TRUE,

    privilege => 'connect',

    start_date => NULL,

    end_date => NULL);

    DBMS_NETWORK_ACL_ADMIN.add_privilege(acl => 'AOP.xml',

    principal => 'APEX_190100',

    is_grant => TRUE,

    privilege => 'connect',

    start_date => NULL,

    end_date => NULL);

    DBMS_NETWORK_ACL_ADMIN.assign_acl(acl => 'AOP.xml',

    HOST => 'api.apexofficeprint.com',

    lower_port => NULL,

    upper_port => NULL);

    END;