關於ignite Server
安裝路徑:/usr/local/apache-ignite-2.7.0-bin
log路徑:/usr/local/apache-ignite-2.7.0-bin/work/log
執行與關閉指令
1 2 3 4
| start: /usr/local/apache-ignite-2.7.0-bin/bin/startIgnite.sh shutdown: /usr/local/apache-ignite-2.7.0-bin/bin/shutdownIgnite.sh
|
重啟順序
1 2 3 4
| 1. All Tomcat server shutdown 2. All Ignite server shutdown (到此步驟請檢查 java process 是否已全部關閉) 3. All Ignite server startup 4. All Tomcat server startup
|
Ignite Visor
1 2 3 4 5 6 7 8 9 10 11 12 13 14
| Visor 為 Ignite 提供了腳本化的監控能力,它可以用於獲得與節點、緩存和任務有關的統計數據, 顯示與拓撲有關的各種指標的一般細節,還有節點的配置屬性也可以在這裡看到,它還可以用於 啟動和停止遠程節點。 執行路徑: /usr/local/apache-ignite-2.7.0-bin/bin/ignitevisorcmd.sh 選擇 ignite config 路徑: 1. 輸入 open 2. 選擇 config (這裡選擇 ignite startup 指定的 config)
查看 cluster 狀態 visor> top
查看 cache size / heap 使用率 visor> cache -a
|