Skip to content

Latest commit

 

History

History
126 lines (83 loc) · 3.15 KB

RELEASE.md

File metadata and controls

126 lines (83 loc) · 3.15 KB

streaming-file-server

4.3.40 release notes

  • Update spring-boot up to 2.3.0.RELEASE version
  • Update other latest versions

Java file server

Java file server based on spring-boot with no memory, upload or download files size limitations

incompatible (not upgradeable) versions

logback version -> 1.3.0-alpha4 is incompatible, use 1.2.3 instead

Installation

with postgres database

manual

# docker compose file for postgres database
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/docker-compose.yml
docker-compose up -d

# file-items data service
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
java -jar file-items-service-4.3.40.jar --spring.profiles.active=db-pg

# file server
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar
java -jar file-server-4.3.40.jar --app.upload.path=./path/to/file-storage

# cleanup
docker-compose down -v

or for simplicity use automation shell-script (*nix)

# bash script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application.bash

# start
bash application.bash start ./path/to/file-storage

# stop
bash application.bash stop

# cleanup
bash application.bash clean ./path/to/file-storage

note: tested on osx with docker installed locally

binaries: wget, docker-compose, bash and of course java are required

same automation on windows

@rem batch shell-script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application.cmd

@rem start
application.cmd start path\to\file-storage

@rem stop
application.cmd stop

@rem cleanup
application.cmd clean path\to\file-storage

note: tested on windows 10 with docker installed locally

binaries: which, wget, docker-compose, taskkill, mkdir and of course java (binaries: java and jps) are required

with h2 in-memory database

manual setup

wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-items-service-4.3.40.jar
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/file-server-4.3.40.jar

bash file-items-service-4.3.40.jar --spring.profiles.active=db-h2
bash file-server-4.3.40.jar --app.upload.path=./path/to/file-storage

or for simplicity use special h2 automation shell-script

# bash shell script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application-h2.bash

# start
bash application-h2.bash start ./path/to/file-storage

# stop
bash application-h2.bash stop

# cleanup
bash application-h2.bash clean ./path/to/file-storage

h2 automation for windows

@rem cmd script
wget https://github.com/daggerok/streaming-file-server/releases/download/4.3.40/application-h2.cmd

@rem start
application-h2.cmd start path\to\file-storage

@rem stop
application-h2.cmd stop

@rem cleanup
application-h2.cmd clean path\to\file-storage

note: tested on windows 10

binaries: which, del, wget, taskkill, mkdir and of course java, jps are required

enjoy :)