...
Make sure that java 1.8 is installed.
Run these commands:
Code Block |
---|
cd {app_home} |
...
sudo screen -dmSL masking java -Duser.timezone=GMT -jar data-masking-1.0-SNAPSHOT.jar -Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8 |
If screen
is not installed, it is also possible to use nohup
:
Code Block |
---|
cd {app_home} sudo nohup java -Duser.timezone=GMT -jar data-masking-1.0-SNAPSHOT.jar |
...
In case of special locale of the shell, add these parameters:
-Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8 & |
Start on Windows
Make sure that java 1.8 64bit is installed.
Run these commands:
Code Block |
---|
cd {app_home} service_install.cmd |
It creates a Windows service named Accelario Masking acc_masking
Once created, start the service.
...
In some cases, the application process may be started in a non-background way - usually it is done as part of debugging session.
In that case, run these commands:
Code Block |
---|
cd {app_home} java -Duser.timezone=GMT -jar data-masking-1.0-SNAPSHOT.jar |
...
In case of special locale of the shell, add these parameters:
-Dfile.encoding=UTF-8 -Dconsole.encoding=UTF-8 |
Accessing the application
...