Skip to content

GraphDefined/steve

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SteVe

Build Status Coverity Status

SteVe was developed at the RWTH Aachen University and means Steckdosenverwaltung, namely socket administration in German. The aim of SteVe is to support the deployment and popularity of electric mobility, so it is easy to install and to use. SteVe provides basic functions for the administration of charge points, user data, and RFID cards for user authentication and was tested successfully in operation.

SteVe is considered as an open platform to implement, test and evaluate novel ideas for electric mobility, like authentication protocols, reservation mechanisms for charge points, and business models for electric mobility. SteVe is distributed under GPL and is free to use. If you are going to deploy SteVe we are happy to see the logo on a charge point.

Supported OCPP protocols

  • OCPP1.2S
  • OCPP1.5S
  • OCPP1.2J
  • OCPP1.5J

Requirements & Configuration

  1. You need JDK 8, Maven and MySQL.

  2. The charge points must be configured to communicate with following addresses. Depending on the OCPP version of the charge point, SteVe will automatically route messages to the version-specific implementation.

  • SOAP: http://<your-server-ip>:<port>/steve/services/CentralSystemService
  • WebSocket/JSON: ws://<your-server-ip>:<port>/steve/websocket/CentralSystemService/<chargeBoxId>
  1. The following MySQL statements can be used as database initialization (adjust according to your setup):

    CREATE DATABASE stevedb;
    GRANT ALL PRIVILEGES ON stevedb.* TO 'steve'@'localhost' IDENTIFIED BY 'changeme';
    GRANT SELECT ON mysql.proc TO 'steve'@'localhost' IDENTIFIED BY 'changeme';
    
  2. Basic Configuration is defined in main.properties:

  1. Log File Configuration is defined in log4j2.xml:
  • You can change the log directory. The default Location is $HOME/logs/steve.log. A more suitable location might be /var/log/steve/steve.log (remember to set directory permissions accordingly)
  • You can change the log level

How to use?

Compile and build an archive ready to run:

mvn package

Start the application (please do not run SteVe as root):

java -jar target/steve-*.jar

Access the Web interface:

http://<your-server-ip>:<port>/steve/manager

Screenshots

  1. Home
  2. Heartbeats
  3. Connector Status
  4. Data Management - Reservations
  5. Data Management - Charge Points
  6. Data Management - Users
  7. Data Management - Transactions
  8. Operations - OCPP v1.2
  9. Operations - OCPP v1.5
  10. Settings

Are you having issues?

See the FAQ

Packages

No packages published

Languages

  • Java 96.6%
  • CSS 2.2%
  • JavaScript 1.2%