Hive System Requirements and Installation

The Hive is delivered as an executable web application in .RUN format.

Connection to web application is carried out via any latest browser.

Hive hardware requirements

The following are the estimated system requirements:

Description Minimal Requirements Recommended Requirements
RAM 4 GB 8 GB
CPU 2 cores 4 cores
Disk speed - 50 IOPS
Disk size 100 GB 200 GB

Preparing for installation

Before installation, prepare a virtual machine or server with one of the supported operating systems:

  • CentOS 8
  • RHEL 8
  • Ubuntu 18.04
  • Ubuntu 20.04

Some Linux distributions in minimal installation may not include the following utilities: curl, find, groupadd, tar, gzip, useradd, xargs. However, these utilities are used in the Platform, and we recommend you to install them.

Install Docker engine and Docker-compose standalone on the server or virtual machine.

Note: the following utilities currently are not supported: Docker compose, Docker rootless, and Docker from snap.

Extracting installation files from an image

To extract installation files from the supplied image for verification, perform the following steps:

  1. Open the console of the virtual machine;
  2. Run the command (root privileges required):

    bash ./install_hw_bw_en-US_<version>.run --noexec --target </your/new/directory>
    

    where, </your/new/directory> – the directory where the installation files will be extracted;

    • *.tar files – container images;
    • ascii-logo.txt – logo that is displayed in the console during installation;
    • bin.tgz – bash scripts for extracting to /opt/hw-bw/bin;
    • installer, installer.sh, common-functions.sh, load-images.sh – installer (bash script);
    • defaults.ini – global settings of the platform (is copied to /opt/hw-bw/config);
    • user-template.ini – list of all settings supported by current version (is copied to /opt/hw-bw/config);
    • systemd.tgz – service systemd (is copied to /opt/hw-bw/systemd);
    • ssl.tgz – self-signed SSL-certificates (is copied to /opt/hw-bw/ssl but only during first installation);
    • kb.tgz - pre-installed report templates and vulnerability descriptions.

Hive installation

  1. Download the installation file from hexway.io;
  2. Copy the file install_hw_bw_en-US_<version>.run to the server using any SSH file transfer client;

    scp install_hw_bw_en-US_<version>.run </server/path>
    
  3. Execute the following command to grant all the necessary permissions to the installation file (optional):

    chmod +x ./install_hw_bw_en-US_<version>.run
    
  4. To start installation, run the command:

    bash ./install_hw_bw_en-US_<version>.run
    
  5. When installation completes, Platform will start automatically. You will see the following message:

    hexway Hive ready to use.
    UI accessible on http://<ip-server> or https://<ip-server>
    Login as <username> password: <password>
    

Note: when installing the platform without additional parameters, the root user password will be generated automatically.

  1. Open the Platform in the browser by the address specified in the message: https://<ip-server>/.

Additional installation parameters

To add a unique password to the root user manually, use --noconfig option during installation:

bash ./install_hw_bw_en-US_<version>.run -- --noconfig

When installation completes, open the file /opt/hw-bw/config/users.ini, add the line to the [main] field and save the file:

[main] b.root.password = <new_password>

To apply changes, run the following command (root privileges are required):

/opt/hw-bw/bin/reconfig

Platform will automatically start and new password will be applied to the root user.

Installation of updates

To update Platform:

  1. Download the installation file from hexway.io;
  2. Copy the installation file install_hw_bw_en-US_<version>.run to the server using any SSH file transfer client;

    scp install_hw_bw_en-US_<version>.run </server/path>
    
  3. Run the command:

    bash ./install_hw_bw_en-US_<version>.run
    

During the update process, Platform will be saved to a backup and then the latest updates will be installed.

Notes:

  1. Platform backups are saved to the /opt/hw-bw_backup folder;
  2. The Platform stores only the three latest backups.

When installation completes, Platform will start automatically.

Note: after installation of updates, connection between Hive and Apiary projects should restore automatically, however it may take some time. If connection did not restore, see section Hive troubleshooting.

Default passwords

The default password of the root user is generated during the installation and saved to the file /opt/hw-bw/config/local.ini. You can view the default password of the administrator using the command:

/opt/hw-bw/bin/show-info

See also