Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

  1. again, make sure you are in the root of ronak_lb_projects

  2. cd ronak_lb_projects/informix

  3. Make sure you install the jdbc driver for informix in the ronak_lb_projects/drivers folder

  4. verify liquibase.properties file has URL and passwords correct, mine looked like this:

    1. Code Block
      changeLogFile=infromixlog.xml
      
      #### Primary Database Information ####
      # The primary database is the database you want to use when doing an update, or for performing comparisons.
      
      # Enter the URL of the source database
      url=jdbc:informix-sqli://localhost:9088/testdb:INFORMIXSERVER=dbserver
      
      # Enter the username for your source database.
      username: informix
      
      # Enter the password for your source database.
      password: in4mix
      classpath: ../drivers/jdbc-4.50.4.1.jar
      logLevel: ERROR

  5. test by running liquibase updateSQL, I used the following command:

    1. liquibase updateSQL

    2. note because of https://datical.atlassian.net/browse/LB-525 I am having issues updateding the database.

Destroying the Docker Image

...