mariadb-vagrant

(★ 20)

A simple vagrant box with MariaDB 10.1 and CentOS 7.2

File Explorer

  • .gitignore
  • install.sh
  • LICENSE
  • mariadb.repo
  • README.md
  • Vagrantfile

# Use via CDN

jsDelivr

jsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.

Command Glossary

Commands referenced in this DOCs, explained below.

🔍

vagrant plugin

View Details ▼

Manage Vagrant plugins.
See also: `vagrant`.

vagrant plugin list

List all the plugins currently installed:

vagrant plugin install {{vagrant_vbguest}}

Install a plugin from remote repositories, usually RubyGems:

vagrant plugin install {{path/to/my_plugin.gem}}

Install a plugin from a local file source:

🔍

vagrant reload

View Details ▼

Equivalent of running `halt` followed by `up`.
A reload is usually required for changes in a Vagrantfile to take effect.
See also: `vagrant`.

vagrant reload

Reload the currently running machine:

vagrant reload {{name|id}}

Target a machine by name or ID:

vagrant reload --provision

Force the provisioners to run:

🔍

vagrant

View Details ▼

Manage lightweight, reproducible, and portable development environments.
Some subcommands such as `box`, `snapshot`, `halt`, etc. have their own usage documentation.

vagrant init

Create a `Vagrantfile` in the current directory with the base Vagrant box:

vagrant init {{ubuntu/focal64}}

Create a `Vagrantfile` with a box from the Vagrant Public Registry:

vagrant up

Start and provision the Vagrant environment:

// repository documentation