github.com/polarismesh/polaris@v1.17.8/release/README.md (about) 1 # Installation Guide 2 3 English | [简体中文](./README-zh.md) 4 5 README: 6 7 - [How to install](#how-to-install) 8 - [Standalone](#standalone) 9 - [Cluster](#cluster) 10 - [How to verify](#how-to-verify) 11 12 ## How to install 13 14 The release packages of standalone and cluster have been provided for Linux, Mac and Windows. 15 16 - [Github Releases](https://github.com/polarismesh/polaris/releases) 17 - [Gitee Releases](https://gitee.com/polarismesh/polaris/releases) 18 19 ### Standalone 20 21 **Linux** 22 23 Download the package named `polaris-standalone-release-*.linux.*.zip`. 24 25 ``` 26 unzip polaris-standalone-release-*.linux.*.zip 27 28 cd polaris-standalone-release-*.linux.* 29 30 bash install.sh 31 ``` 32 33 **Mac** 34 35 Download the package named `polaris-standalone-release-*.darwin.*.zip`. 36 37 ``` 38 unzip polaris-standalone-release-*.darwin.*.zip 39 40 cd polaris-standalone-release-*.darwin.* 41 42 bash install.sh 43 ``` 44 45 **Windows** 46 47 Download the package named `polaris-standalone-release-*.windows.*.zip`. 48 49 ``` 50 unzip polaris-standalone-release-*.windows.*.zip 51 52 cd polaris-standalone-release-*.windows.* 53 54 install.bat 55 ``` 56 57 ### Cluster 58 59 todo 60 61 ## How to verify 62 63 Run the command to verify the installation. 64 65 ``` 66 curl http://127.0.0.1:8090 67 ``` 68 69 If the response is "Polaris Server", the installation is successful.