websoft9/install
2024-09-02 15:07:08 +08:00
..
install.sh install.sh 2024-06-24 11:46:18 +08:00
install_cockpit.sh test apidocs 2024-09-02 15:07:08 +08:00
install_docker.sh 2.1.11-rc3 2024-08-07 15:11:33 +08:00
install_plugins.sh Update install_plugins.sh 2023-11-15 10:21:16 +08:00
install_podman.sh docker daemon 2023-10-06 16:45:57 +08:00
README.md docs 2023-11-30 13:47:23 +08:00
uninstall.sh fix 2023-10-07 17:10:33 +08:00

Install

User it

# install or upgrade Websoft9
wget -O install.sh https://websoft9.github.io/websoft9/install/install.sh && bash install.sh

# install or upgrade 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"

# install or upgrade Cockpit with parameters
wget -O install_cockpit.sh https://websoft9.github.io/websoft9/install/install_cockpit.sh && bash install_cockpit.sh --port 9000

# install or upgrade Docker
wget -O - https://websoft9.github.io/websoft9/install/install_docker.sh | bash

# uninstall by default
curl https://websoft9.github.io/websoft9/install/uninstall.sh | bash

# uninstall all
wget -O - https://websoft9.github.io/websoft9/install/uninstall.sh | bash /dev/stdin --cockpit --files

Develop it

This install script have below related resources:

  • Tools: Install or upgrade some useful software packages at Linux
  • Source Code: Download source code from artifactory
  • Docker: Install and upgrade Docker, compose up backend service with docker-compose.yml
  • Cockpit: Install and upgrade Cockpit and its Packages, manage it port, fix it menu
  • Plugins: Install and upgrade Websoft9 plugins which is the frontend
  • Systemd: Install and upgrade websoft9.serivce
  • Set Firewalld: let 80,443 and Cockpit port allowed, Cockpit and Docker service with firewalld

The install script should adhere to the following principles:

  1. Not allowed to modify the source code of the application.
  2. Every task must have an exception exit mechanism.
  3. Both installation and updates should be considered simultaneously.
  4. Upgrade script should not overwrite existing configurations.
  5. Duplication of codes in any form is not allowed, it must used function.
  6. Paths, ports, etc. must be defined using variables.

Some default parameters you should know:

  • Websoft9 root path/data/websoft9/source
  • Websoft9 Systemd script path: /opt/websoft9/systemd
  • Plugins path: /usr/share/cockpit
  • Cockpit config path: /ect/cockpit
  • Cockpit default port: 9000