Docker

Please access here for more detailed information about Docker.

Manual Installation

When using Docker container, the following are the example of operating procedures and setting configuration.

  1. Load Docker image.
    Start up the terminal and run the following command. docker load -i <*.tar.gz>

  2. Launch Docker container Run the following command on the terminal.
    docker run -d --restart=always --name actiphy_ass \
    -p "0.0.0.0:443:443" \
    -p "0.0.0.0:58337:58337" \
    -p "0.0.0.0:58240:58240/udp" \
    --mount type=bind,source=<destination to output log records and settings>,target=/app/logs \
    --mount type=bind,source=<path of the bucket and mount point of cache device>,target=/app/data \
    "ass:<version of the loaded image>"

    When a port is in use on host computer, please change it to any other port.

    When directly mount a local volume, please specify it as follows.
    Ex:
    –mount type=volume,source=,target=/app/data

    When deploying a storage or cache device for a bucket, please mount them under the path allocated to “target=/app/data” in advance before launching Docker. When using the mounted device after launching Docker, you need to restart Docker.

  3. Configure the settings for Web console connection Use Web browser supporting self-signed certificates such as Google Chrome, etc. When the connection to Web console is established, please configure the settings on the respective items pages.

    Ex:https://<IP address>

    When you configure the settings for a port other than 443 after starting up the container, please select the port and establish the connection.

The following are the operating procedures how to exit Docker container and delete.

  1. Exit Docker container
    Run the following command on terminal.
    docker stop actiphy_ass

  2. Delete Docker container
    Run the following command on terminal.
    docker rm -f actiphy_ass

  3. Delete Docker image
    Run the following command on terminal.
    docker rmi -f ass:<version of the loaded image>

Script Installation

Run scripts included in the product media to install Podman compatible with Docker and the required packages, and configure the settings.

  1. Log in as the root account

  2. Run scripts included in the product media.
    Launch the terminal and run the following command.
    ./aas_ass_install-packages.sh

The install menu includes the following items.