https://github.com/dgapitts/vagrant-dbdeployer
Centos 7 VM Running dbdeployer
https://github.com/dgapitts/vagrant-dbdeployer
Last synced: over 1 year ago
JSON representation
Centos 7 VM Running dbdeployer
- Host: GitHub
- URL: https://github.com/dgapitts/vagrant-dbdeployer
- Owner: dgapitts
- License: gpl-3.0
- Created: 2019-02-02T16:07:09.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2019-02-05T23:11:48.000Z (over 7 years ago)
- Last Synced: 2025-01-08T22:38:52.893Z (over 1 year ago)
- Language: Shell
- Size: 20.5 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## vagrant-dbdeployer
Centos 7 VM Running dbdeployer
## Basic Tests
After running `vagrant up` (takes a while to download 600Mb mysql binary)
I can test basic setup
```
[root@dbdeploy-cent7 ~]# cd $HOME/sandboxes/msb_8_0_11
[root@dbdeploy-cent7 msb_8_0_11]# ./use
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 9
Server version: 8.0.11 MySQL Community Server - GPL
Copyright (c) 2000, 2018, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
mysql [localhost:8011] {msandbox} ((none)) > select @@version, @@port;
+-----------+--------+
| @@version | @@port |
+-----------+--------+
| 8.0.11 | 8011 |
+-----------+--------+
1 row in set (0.02 sec)
mysql [localhost:8011] {msandbox} ((none)) >
```
I'm keen to try group replication next:
```
dbdeployer deploy --topology=group replication 8.0 --single-primary
http://www.dbdeployer.com/
```