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