Configuration
erver Configuration
xml
<?xml version='1.0' encoding='UTF-8'?>
<!DOCTYPE properties SYSTEM 'http://java.sun.com/dtd/properties.dtd'>
<properties>
<entry key='web.port'>8082</entry>
<entry key='database.driver'>com.mysql.jdbc.Driver</entry>
<entry key='database.url'>jdbc:mysql://localhost:3306/traccar</entry>
<entry key='database.user'>traccar</entry>
<entry key='database.password'>password</entry>
</properties>
Database Configuration
sql
-- Create database
CREATE DATABASE traccar;
CREATE USER 'traccar'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON traccar.* TO 'traccar'@'localhost';
Device Configuration
xml
<entry key='protocol.port'>5001-5050</entry>
<entry key='device.timeout'>300</entry>
<entry key='status.timeout'>60</entry>