Skip to main content
Version: 2.0

Parameter

Various parameters such as server, network, port and path involved in Websoft9 are listed below:

Paths

Websoft9 Console

  • Websoft9 installation directory: /opt/websoft9
  • Websoft9 data directory: /opt/websoft9/data
  • Websoft9 backup directory: /opt/websoft9/data/backups
  • Websoft9 application persistent storage directory: /var/lib/docker/volumes

Docker on the server

  • Docker Volumes: /var/lib/docker/volumes
  • Docker image directory: /var/lib/docker/image
  • Docker program directory: /var/lib/docker
  • Docker Server configuration file: /etc/docker/daemon.json
  • Docker system service: /lib/systemd/system/docker.service

Ports

Users can view the ports used on the server with `netstat -tunlp'.

The following are the most commonly used ports, please go to the Security Group to enable or disable it.

Application access ports

Port numberPurposeNecessity
9000Websoft9 Consolerequired
80Websoft9 Console, Websoft9 Gateway, Apply HTTP Accessrequired
443Websoft9 Gateway, Application HTTPS Accessrequired
9001-9999Application Extranet Accessoptional

Server management ports

Port numberPurposeNecessity
21Linux server FTP portoptional
22Linux server SSH portoptional
2375 or 2376 (TLS)Docker daemon listening APIoptional

Network

By default, a network named websoft9 is created and all applications run on this network

Services

You need to know Systemd and Docker services for administrator.

Systemd

Websoft9 runs as a Docker container. The main Systemd service is Docker:

sudo systemctl start | stop | restart | status docker

Docker

Websoft9 runs as a single container. Query it with docker ps | grep websoft9:

$ docker ps | grep websoft9
abc123def456 websoft9dev/websoft9:latest ... Up 2 hours 0.0.0.0:80->80/tcp, 0.0.0.0:443->443/tcp, 0.0.0.0:9000->9000/tcp websoft9

CLI