APEX Office Print Installation - Intergraph Smart Reference Data - Installation & Upgrade - Hexagon

Intergraph Smart Reference Data Installation (10.2)

Language
English
Product
Intergraph Smart Reference Data
Search by Category
Installation & Upgrade
Smart Materials/Smart Reference Data Version
10.2

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://s3-eu-west-1.amazonaws.com/apexofficeprint/cloud/aop_cloud_v20.3.1.zip

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

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

    Smart Materials Web 10.1 does only support AOP version 20.3.1.

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

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

  3. Navigate to the …aop_cloud_v20.3.1\v20.3.1\db directory.

  4. Run install.sql.

  5. Execute the below commands:

    GRANT EXECUTE ON AOP_API_PKG TO M_SYS;

    GRANT EXECUTE ON aop_plsql_pkg TO M_SYS;

    GRANT EXECUTE ON aop_convert_pkg TO M_SYS;

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

  7. 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_application.g_flow_schema_owner,

    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;