Note: You may want to add this folder to your system PATH environment so that you can execute liquibase from any directory.
For this tutorial, we will refer to that directory as LB_HOME
, and when executing the liquibase shell script will use LB_HOME/liquibase
or LB_HOME\liquibase.bat
as the example command.
Note: You can download and use either the Oracle JDK or OpenJDK. Be sure to configure your PATH and environment variable properly.
java -version
Ensure that it runs successfully and displays your installed Java version.
The license JAR file is required when connecting to a mainframe DB2 database, which is not a free JAR file. You must purchase the DB2 Connect product. The license file is contained within the activation package for it.More information regarding the license file can be found here.
db2jcc.jar
and db2jcc_license_cisuz.jar
files into the lib
subdirectory of the LB_HOME
directory where you extracted the Liquibase archive.While it is possible to pass all required parameters, such as the JDBC driver and database URL on the command line, it is much easier to configure a liquibase.properties file.
Pro Tip: Create multiple liquibase.properties files for your DEV, QA, and PROD environments. You can pass the specific properties file as a liquibase command line argument.
Create a new directory for your first liquibase project, and change into that directory. For this example, we named the directory db2_zos
Create a plain text file named liquibase.properties in the project directory you just created and add the following content to the file.
Note: Be sure to replace the
with the actual values for your system.
Ensure that you can execute liquibase. At the command prompt, run one of the following commands, depending on your platform:
Linux
<LB_HOME>/liquibase --help
Windows
<LB_HOME>\liquibase.bat --help
You should now see some help output, and you are ready to begin using Liquibase. That is the completion of this Setup Tutorial. You are now ready to continue with deployment.