Table of Contents |
---|
...
Add Datical DB CLI to the path
Code Block vi ~/.bash_profile export DATICAL_DB_HOME=/opt/datical/DaticalDB export PATH=${PATH}:${ DATICAL_DB_HOME }/repl
Source the updated .bash_profile
Code Block . ~/.bash_profile
...
Code Block |
---|
cp /opt/datical/license/*.lic<license_filename> /opt/datical/DaticalDB/repl hammer installLicense /opt/pathdatical/tolicense/<license_filename> |
10. Install the Database Drivers for the CLI
Online Installation
If your Linux machine has access to the internet, at the command line run the following command:
Code Block |
---|
<datical_install_dir>/repl/hammer installDrivers http://update.datical.com/latest/thirdparty |
Offline Installation
Or, if your Linux machine does not have access to the internet you will need to download Composite Repo zip file corresponding to your version of Datical DB (from http://software.datical.com). Then, at the command line, run the following command:
Code Block |
---|
<datical_install_dir>/repl/hammer installDrivers jar:file:/<path_to_repo>/DaticalDBCompositeRepo-<version>.zip\!/ |
...
Code Block |
---|
\!/ |
11. Verify the Install
Run the following commands to verify the install.
Code Block |
---|
hammer checkdrivers hammer show version hammer show license |
...