Open VTS vehicle tracking software logo
TutorialsPricingFree Tools

Industries

Logistics & TransportationEnd-to-end fleet visibility and route optimization
Construction & InfrastructureHeavy equipment monitoring and geofencing
Oil, Gas & Energy OperationsRemote asset tracking across pipeline networks
Mining & Heavy IndustryFleet management for mining operations

 

Agriculture & Agri-Fleet OperationsSmart field and farm vehicle management
Waste Management & Sanitation ServicesRoute and collection fleet optimization
School & Institutional TransportationStudent safety and bus fleet tracking
Security Patrol & Response FleetsReal-time patrol monitoring and dispatch

 

Electric Vehicle Fleet OperationsEV fleet range and charge management
Banking & Cash-in-Transit OperationsSecure transit and armored vehicle tracking
Insurance Telematics & Field InvestigationDriver behavior and claims fleet tracking
Field Service & Mobile WorkforceTechnician dispatch and workforce routing

Learn

BlogGuides & E-booksCustomer Stories

Product

Product TourSupported Devices

Help

DocumentationContent Library

Developers

API Reference

Contact

Contact Us

Company

Our StoryCareers

Ecosystem

Partner ProgramAffiliate Program
Download Now
PricingFree Tools
Logistics & TransportationConstruction & InfrastructureOil, Gas & EnergyMining & Heavy IndustryAgriculture & Agri-FleetWaste Management & SanitationSchool & Institutional TransportSecurity Patrol & ResponseElectric Vehicle FleetsBanking & Cash-in-TransitInsurance & TelematicsField Service & Mobile Workforce

Learn

BlogGuides & E-booksCustomer Stories

Product

Product TourSupported Devices

Help

DocumentationContent Library

Developers

API Reference

Contact

Contact Us

Company

Our StoryCareers

Ecosystem

Partner ProgramAffiliate Program
Download Now
All Docs

Getting Started

Installation

  • System Requirements
  • Install on Linux
  • Install with Docker

Quick Start

  • First Login & Setup

Platform Guides

Tracking

  • Real-Time Tracking
  • Route History & Playback

Geofencing

  • Geofence Setup

Alerts & Notifications

  • Alert Configuration

Configuration

Server

  • Server Configuration

Database

  • Database Setup

Integrations

Devices

  • Device Protocols

REST API

  • REST API Overview
  1. Home
  2. Resources
  3. Documentation
  4. Configuration
  5. Database Setup

Database Setup

Configure PostgreSQL, connection pooling, backups, and migrations.

Last updated March 15, 2026

Open VTS uses PostgreSQL as its primary database. This guide covers production database configuration, connection pooling, and backup strategies.

Database Configuration#

conf/openvts.xml
<entry key="database.driver">org.postgresql.Driver</entry>
<entry key="database.url">jdbc:postgresql://localhost:5432/openvts</entry>
<entry key="database.user">openvts</entry>
<entry key="database.password">your_secure_password</entry>
<entry key="database.maximumPoolSize">10</entry>

PostgreSQL Optimization#

Apply these PostgreSQL settings for optimal Open VTS performance:

postgresql.conf
# Memory
shared_buffers = 2GB           # 25% of available RAM
effective_cache_size = 6GB     # 75% of available RAM
work_mem = 64MB

# Write-ahead log
wal_buffers = 64MB
checkpoint_completion_target = 0.9

# Query planning
random_page_cost = 1.1         # SSD-optimized
effective_io_concurrency = 200

Backup Strategy#

backup.sh
#!/bin/bash
# Daily automated backup
DATE=$(date +%Y%m%d_%H%M)
pg_dump -U openvts -Fc openvts > /backups/openvts_$DATE.dump

# Keep last 30 days
find /backups -name "openvts_*.dump" -mtime +30 -delete
Danger
Always test your backup restoration process before going to production. Use pg_restore to verify backup integrity regularly.
PreviousServer ConfigurationNextDevice Protocols

On this page

  • Database Configuration
  • PostgreSQL Optimization
  • Backup Strategy
Self-HostedFull Data Control
10,000+Vehicles Tracked
50+Countries
99.9%Uptime SLA
Open VTS — Vehicle Tracking Software

Vehicle tracking software built for scale. Own your data, control your fleet, and track without limits with our GPS fleet management platform.

Product

  • Vehicle Tracking Software
  • Vehicle Tracking Application
  • Video Telematics
  • Self-Hosted vs SaaS
  • Free Tools
  • Pricing

Industries

  • Logistics & Transportation
  • Construction & Infrastructure
  • Oil, Gas & Energy
  • Agriculture & Agri-Fleet
  • Mining & Heavy Industry
  • School Transportation
  • Electric Vehicle Fleets

Resources

  • Blog
  • Guides & E-books
  • Documentation
  • API Reference
  • Tutorials
  • Help Center
  • Supported Devices

Company

  • Our Story
  • Careers
  • Contact Us
  • Partner Program
  • Affiliate Program
  • Customer Stories
  • Content Library

© 2026 Open VTS. All rights reserved.

Privacy PolicyRefund PolicyTerms of UseSecuritySitemap