This is an ongoing learning project in learning about setting up a simple application, using best practices for creating enterprise software and using different types of technologies
- start mysql database
- connect to mysql database (might have to change the password in
DatabaseConnectionManagerclass) - run sql file, best be in this directory, run `source test.sql;'
- Run main and check 'localhost:8080/db/clients'
From scratch
docker run --name some-mysql -e MYSQL_ROOT_PASSWORD=password -d mysql
// docker run -it --link some-mysql:mysql --rm mysql sh -c 'exec mysql -h"172.17.0.3" -P"3306" -uroot -p'
If already pulled image
docker start <container name>
Check if working
docker ps
start bash in container
docker exec -it <container name> /bin/bash
Start mysql
mysql -u root -p
Connect to mysql
mysql -h"172.17.0.3" -P"3306" -uroot -p
Need to change the properties for port and url
netstat -tulpn | grep LISTEN