Konfigurasi ArcGIS Notebook Server pada Multiple Machine #6

Open
opened 10 months ago by byprakoso · 0 comments
Owner

Install arcgis notebook server

  1. Run dan extrct program Arcgis_Notebook_Server_Windows_114,file setup akan terinstal pada destination folder yang kita tentukan

  2. pada file instalasi arcgis notebook server,run setup
    setup

  3. agreement
    agreement

  4. destination folder install
    dest installed folder

  5. specify account name and password
    specify account name

  6. instalation proses
    proses install

  7. setelah install akan arcgis notebook akan meminta license
    input license

  8. setelah berhasil kita akan dialihkan ke urlhttps://localhost://1143/arcgis/configure dan pastikan kita sudah inbound firewall rule untuk port Arcgis notebook server 11443 dan Arcgis portal 7443.
    after install notebookserver

install docker engine 27.1.2

Referensi: https://enterprise.arcgis.com/en/notebook/11.4/install/windows/install-docker-engine-from-binaries-windows-containers-.htm

  1. Aktifkan fitur Windows Containers dengan menjalankan perintah berikut di Windows PowerShell dengan hak istimewa administratif:
Add-WindowsFeature Containers

finish instalation

restart windows

  1. verifikasi instalasi fitur Kontainer dengan menjalankan perintah berikut:
Get-WindowsFeature Containers

setelah install docker

  1. download docker engine pada Link berikut: https://download.docker.com/win/static/stable/x86_64 pilih versi docker engine yang sesuai
    image

  2. Jalankan perintah PowerShell berikut untuk menginstal dan mengekstrak arsip ke file program

PS C:\> Expand-Archive /path/to/<FILE>.zip -DestinationPath $Env:ProgramFiles

extratc dan install docker

  1. Daftarkan layanan dan mulai Docker Engine:
PS C:\> &$Env:ProgramFiles\Docker\dockerd --register-service
PS C:\> Start-Service docker
  1. Verifikasi bahwa Docker terinstal dengan benar dengan menjalankan hello-world Images:
PS C:\> &$Env:ProgramFiles\Docker\docker run hello-world:nanoserver
  1. tambahkan path direktori docker yang sudah terinstall. masuk ke system> advance system settings> enviroment variables,pilih path > klik edit Tambahkan path folder tempat docker.exe
    jika saat cek docker versin muncul error,masuk ke system properties-enviromnets variable-edit path dan tambahkan path ke file docker

  2. cek docker verison dan docker info pastikan tidak ada pesan error
    image

image

configure docker engine

  1. Tambahkan user ke group docker-users

Buka Computer Management → Local Users and Groups → Groups.

Pastikan ada group docker-users. Kalau belum ada, buat baru.

Tambahkan akun yang digunakan untuk install ArcGIS Notebook Server ke dalam group ini.

  1. Edit konfigurasi Docker daemon.json
    File: C:\ProgramData\docker\config\daemon.json

isi file:

{
  "group": "docker-users"
}

  1. Enable Docker Remote API (port 2375)
sc config docker binpath= "\"C:\Program Files\docker\dockerd.exe\" --run-service -H tcp://localhost:2375 -H npipe://"

  1. Restart Docker Service
net stop docker
net start docker

Wajib reboot setelah konfigurasi selesai.

# Install arcgis notebook server 1. Run dan extrct program Arcgis_Notebook_Server_Windows_114,file setup akan terinstal pada destination folder yang kita tentukan 2. pada file instalasi arcgis notebook server,run setup ![setup](/attachments/b487488e-ae79-46f8-9064-ae8758166982) 3. agreement ![agreement](/attachments/cff4b03a-6234-43ac-99a5-4357f450ec39) 4. destination folder install ![dest installed folder](/attachments/286cc3c2-8241-402f-a5db-31c574c80912) 5. specify account name and password ![specify account name](/attachments/0de6629d-1970-4f22-bbf0-ab5648d77df4) 6. instalation proses ![proses install](/attachments/d21004af-cd5b-48e0-99e3-7731853e5fea) 7. setelah install akan arcgis notebook akan meminta license ![input license](/attachments/9bacc56c-a81d-4665-82c1-18f6a8720263) 8. setelah berhasil kita akan dialihkan ke url``https://localhost://1143/arcgis/configure`` dan pastikan kita sudah inbound firewall rule untuk port Arcgis notebook server 11443 dan Arcgis portal 7443. ![after install notebookserver](/attachments/fe77728d-9030-4b8f-85e8-c513f1ab0711) # install docker engine 27.1.2 Referensi: https://enterprise.arcgis.com/en/notebook/11.4/install/windows/install-docker-engine-from-binaries-windows-containers-.htm 1. Aktifkan fitur Windows Containers dengan menjalankan perintah berikut di Windows PowerShell dengan hak istimewa administratif: ``` Add-WindowsFeature Containers ``` ![finish instalation](/attachments/1fd6f59a-662e-41ce-b7d1-c0f62c2243b6) restart windows 2. verifikasi instalasi fitur Kontainer dengan menjalankan perintah berikut: ``` Get-WindowsFeature Containers ``` ![setelah install docker](/attachments/d3ab729d-36b4-48cc-880b-2bd5bf2e5217) 3. download docker engine pada Link berikut: https://download.docker.com/win/static/stable/x86_64 pilih versi docker engine yang sesuai ![image](/attachments/ec20cd0a-bd77-4a4e-bc88-3fdb9d562d7f) 4. Jalankan perintah PowerShell berikut untuk menginstal dan mengekstrak arsip ke file program ``` PS C:\> Expand-Archive /path/to/<FILE>.zip -DestinationPath $Env:ProgramFiles ``` ![extratc dan install docker](/attachments/67bee9e4-07e5-4fd6-857c-3f286f698a95) 5. Daftarkan layanan dan mulai Docker Engine: ``` PS C:\> &$Env:ProgramFiles\Docker\dockerd --register-service ``` ``` PS C:\> Start-Service docker ``` 5. Verifikasi bahwa Docker terinstal dengan benar dengan menjalankan hello-world Images: ``` PS C:\> &$Env:ProgramFiles\Docker\docker run hello-world:nanoserver ``` 6. tambahkan path direktori docker yang sudah terinstall. masuk ke system> advance system settings> enviroment variables,pilih path > klik edit Tambahkan path folder tempat docker.exe ![jika saat cek docker versin muncul error,masuk ke system properties-enviromnets variable-edit path dan tambahkan path ke file docker](/attachments/e8ba7a68-52f0-4ae7-9af1-883eee568ac8) 7. cek docker verison dan docker info pastikan tidak ada pesan error ![image](/attachments/3145835e-db91-4c36-a31b-167ebe26a7e8) ![image](/attachments/a3b5e2d8-576c-4c7d-ace9-e7e2e451777b) # configure docker engine 1. Tambahkan user ke group docker-users Buka Computer Management → Local Users and Groups → Groups. Pastikan ada group docker-users. Kalau belum ada, buat baru. Tambahkan akun yang digunakan untuk install ArcGIS Notebook Server ke dalam group ini. 2. Edit konfigurasi Docker ``daemon.json`` File: C:\ProgramData\docker\config\daemon.json isi file: ``` { "group": "docker-users" } ``` 3. Enable Docker Remote API (port 2375) ``` sc config docker binpath= "\"C:\Program Files\docker\dockerd.exe\" --run-service -H tcp://localhost:2375 -H npipe://" ``` 4. Restart Docker Service ``` net stop docker net start docker ``` Wajib reboot setelah konfigurasi selesai.
byprakoso changed title from Konfigurasi ArcGIS Notebook Server pada Multiple Machine to Konfigurasi ArcGIS Notebook Server pada Multiple Machine(Ubuntu 20.04) 9 months ago
byprakoso changed title from Konfigurasi ArcGIS Notebook Server pada Multiple Machine(Ubuntu 20.04) to Konfigurasi ArcGIS Notebook Server pada Multiple Machine 9 months ago
Sign in to join this conversation.
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date

No due date set.

Dependencies

This issue currently doesn't have any dependencies.

Loading…
There is no content yet.