Linux/UNIX/macOS X 说明

EPM Automate 需要访问支持的 JRE(版本 8 到版本 11)的部署。环境变量 JAVA_HOME 必须设置为指向 JRE 安装。

要安装 EPM Automate

  1. 访问环境。
  2. 在“主页”上,通过单击用户名访问设置和操作
  3. 单击下载
  4. 在“下载”页面上,单击 EPM Automate 部分中的适用于 Linux/macOS X 的下载
  5. 在具有读/写/执行权限的目录中保存安装程序 (EPMAutomate.tar)。
  6. 完成以下步骤:
    1. 提取安装程序的内容
    2. 设置所需环境变量
    3. 将目录更改为从中提取安装程序内容的目录中的 epmautomate/bin
    4. 执行 epmautomate.sh

    在以下脚本中,请记住在需要时使用实际目录路径。例如,如果 EPMAutomate.tar 提取到 HOME/oracle/epmautomate/bin 中,则将其用作 EPMAutomate_extract_directory 的值。

    macOS X 示例(假定使用 Bash shell),从主目录安装并运行。

    cd ~/
    tar xf directory_containing_downloaded_installer/EPMAutomate.tar
    export JAVA_HOME=$(/usr/libexec/java_home)
    export PATH $HOME/epmautomate/bin:$PATH
    cd EPMAutomate_extract_directory/epmautomate/bin
    ./epmautomate.sh

    Linux 示例(假定使用 Bash shell),从主目录安装并运行。使用 JDK 版本 1.8.0_191。

    cd ~/
    tar xf directory_containing_downloaded_installer/EPMAutomate.tar
    export JAVA_HOME=/opt/jdk1.8.0_191
    export PATH ~/Downloads/epmautomate/bin:$PATH
    cd EPMAutomate_extract_directory/epmautomate/bin
    ./epmautomate.sh