In this video, I walk you through the following topics with hands-on examples:
- Installing and configuring Liquibase.
- Running basic Liquibase commands.
- Deploying database changes using Liquibase.
- Identifying schema differences and syncing them using Liquibase.
Please share your thoughts and drop any questions in the comments section — I’d love to hear from you! 🙌 If you find my videos helpful, don’t forget to like, share, and subscribe to support the channel!
Commands:
Install Open Java Development Kit
- apt install -y openjdk-17-jre gpg
Installing Liquibase:
- curl -fsSL https://repo.liquibase.com/liquibase.asc | sudo gpg --dearmor -o /usr/share/keyrings/liquibase.gpg
- echo "deb [signed-by=/usr/share/keyrings/liquibase.gpg] https://repo.liquibase.com stable main" | \
sudo tee /etc/apt/sources.list.d/liquibase.list
- apt update
- apt install -y liquibase
- liquibase --version
Configuring the JDBC connector:
- https://repo1.maven.org/maven2/com/mysql/mysql-connector-j/8.0.31/?utm_source=chatgpt.com
Download
0 formats
No download links available.
Liquibase + MySQL | Installation | Configuration | Schema comparision & Sync | Tutorial | MySQL DBA | NatokHD