mirror of
https://github.com/Websoft9/websoft9.git
synced 2024-11-21 15:10:22 +00:00
fix
This commit is contained in:
parent
0b69e80e4d
commit
52b0d306d0
2 changed files with 5 additions and 5 deletions
|
@ -41,11 +41,11 @@ You should have root privileges user to install or upgrade or uninstall Websoft9
|
|||
|
||||
```
|
||||
# Install by default
|
||||
curl https://websoft9.github.io/websoft9/install/install.sh | bash
|
||||
wget -O install.sh https://websoft9.github.io/websoft9/install/install.sh && bash install.sh
|
||||
|
||||
|
||||
# Install Websoft9 special version by development artifact and install path at /data/websoft9/source ...
|
||||
wget -O - https://websoft9.github.io/websoft9/install/install.sh | bash /dev/stdin --port 9000 --channel dev --path "/data/websoft9/source" --version "0.8.25"
|
||||
# Install Websoft9 with parameters
|
||||
wget -O install.sh https://websoft9.github.io/websoft9/install/install.sh && bash install.sh --port 9000 --channel release --path "/data/websoft9/source" --version "latest"
|
||||
```
|
||||
After installation, access it by: **http://Internet IP:9000** and using **Linux user** for login
|
||||
|
||||
|
|
|
@ -9,10 +9,10 @@
|
|||
|
||||
```
|
||||
# install or upgrade Websoft9
|
||||
wget -O - https://websoft9.github.io/websoft9/install/install.sh | bash
|
||||
wget -O install.sh https://websoft9.github.io/websoft9/install/install.sh && bash install.sh
|
||||
|
||||
# install or upgrade Websoft9 with parameters
|
||||
wget -O - https://websoft9.github.io/websoft9/install/install.sh | bash /dev/stdin --port 9000 --channel release --path "/data/websoft9/source" --version "latest"
|
||||
wget -O install.sh https://websoft9.github.io/websoft9/install/install.sh && bash install.sh --port 9000 --channel release --path "/data/websoft9/source" --version "latest"
|
||||
|
||||
# install or upgrade Cockpit with parameters
|
||||
wget -O - https://websoft9.github.io/websoft9/install/install_cockpit.sh | bash --port 9000
|
||||
|
|
Loading…
Reference in a new issue