Linux Installation
Prerequisites
Before starting the installation, ensure your system meets the following requirements:
Docker and Docker Compose installed
Administrative privileges (sudo access)
At least 8GB available RAM
Internet connectivity for downloading software
Download Software
You will receive the download URL and license key via email after purchase. Use the provided URL to download the software package.
# Download the software package
wget https://dataops-store.s3.amazonaws.com/dataops_server.zip
# Extract the downloaded file
unzip dataops_server.zip
# Navigate to the installation directory
cd dataops_serverDocker Compose Compatibility Fix
Docker Compose V2 (introduced in 2021) changed the command from docker-compose to docker compose. If you're using a newer version of Docker, create a symlink for compatibility:
Note: This step is only needed if you encounter docker-compose command not found errors.
Configuration
License Configuration (Paid Subscriptions Only)
For Starter Version users: Skip this section as licensing is not required.
For paid subscriptions: Edit the .env file and update the following properties with the values provided in your purchase confirmation email:
Server URL Configuration (Optional)
Default setup: VexData runs locally and no changes are needed.
For cluster deployments: If you're running jobs on Hadoop clusters, EMR, Databricks, or Kubernetes, update the server URL:
HTTPS deployments: If you have SSL certificates, use:
Important: Do not use localhost in the HOST_URL as it may cause connectivity issues.
Installation
First-Time Installation
Update to latest version:
Replace
<VERSION_NUMBER>with the version provided (e.g.,7_35).Start the server:
Access the application: Open your web browser and navigate to:
Local installation:
http://127.0.0.1Remote installation:
http://<HOST_URL>
Software Updates
To update VexData with patches and new versions:
Download and install updates:
Restart the server:
HTTPS Setup (Optional)
Prerequisites
SSL certificate file (
.crtor.pem)Private key file (
.key)OpenSSL installed on your system
Create PKCS#12 Keystore
Convert your SSL certificate and private key into a .p12 keystore file:
Parameters explained:
-export: Creates an exportable keystore-inkey: Your private key file-in: Your SSL certificate file-out: Output keystore file name-name: Alias for the certificate (use any descriptive name)
You'll be prompted to create an export password. Remember this password - you'll need it for configuration.
Install Keystore
Copy the generated keystore file to the keys directory on server :
Configure HTTPS Settings
Edit the app.properties file and update the following settings:
Example:
Troubleshooting
Common Issues
Docker Compose command not found:
Ensure Docker is properly installed
Run the symlink commands in the Docker Compose Compatibility section
Permission denied errors:
Ensure you have sudo privileges
Run installation commands with appropriate permissions
Server won't start:
Check if ports 80/443 are available
Verify your
.envandapp.propertiesconfigurationsCheck system memory requirements
HTTPS certificate errors:
Verify certificate and key files are valid
Ensure the keystore password is correct
Check that the domain in HOST_URL matches your certificate
Support
For additional support, consult the VexData documentation or contact support with specific error messages and system information.
Last updated