Installation, Configuration and Operation on Windows
Installation
Unzip the Odilon Server zip file in the directory where you want to install the executables
(data directories are defined in the configuration file odilon.properties, see below).
Directories
app/
A self-contained Odilon server.
bin/
Scripts to startup, manage and interact with Odilon instances.
config/
odilon.properties, Odilon's main configuration file, and
other config files.
examples/
Sample Java classes to create buckets, upload and download files, list objects, and others.
logs/
logs directories
Configuration
odilon.properties
Odilon configuration is done in file ./config/odilon.properties
This is where you can set up server port and credentials (port, accessKey, SecretKey),
and data storage (RAID level, data storage directories), and other parameters
Sample properties file:
odilon.properties
A bare minimum odilon.properties file could look something like this:
server.port=9234
accessKey=odilon
secretKey=odilon
redundancyLevel=RAID 0
dataStorage=c:\odilon-data\drive0
Java parameters
Optionally you can also edit standard JVM parameters in file .\bin\setvars.bat
Startup and Shutdown
cd bin
.\start.bat to startup the server
.\check.bat check if the server is running
.\stop.bat to shutdown the server
Checking the info page
Odilon Server comes with an embedded web server.
Point your web browser to http://127.0.0.1:9234/info to ensure your server has started successfully.
See sample info page
You can also check the server metrics at http://127.0.0.1:9234/metricsinformal
See sample metrics page