You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

преди 1 година
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. # Ansible Role: MariaDB
  2. Installs MariaDB
  3. ## Supported platforms
  4. ```
  5. CentOS 6 & 7
  6. Ubuntu 14.04
  7. Ubuntu 16.04
  8. Debain 9
  9. ```
  10. ## Post install
  11. Run `mariadb-secure-installation`
  12. ## Requirements
  13. None
  14. ## Role Variables
  15. MariaDB version:
  16. ```
  17. mariadb_version: 10.2
  18. ```
  19. Configuration template:
  20. ```
  21. mysql_conf_tpl: change_me
  22. ```
  23. Configuration filename:
  24. ```
  25. mysql_conf_file: settings.cnf
  26. ```
  27. ### Experimental unattended mariadb-secure-installation
  28. ```
  29. ansible-playbook release.yml --extra-vars "mysql_secure_installation=true mysql_root_password=your_very_secret_password"
  30. ```
  31. ## Dependencies
  32. None
  33. ## Example Playbook
  34. ```
  35. - hosts: servers
  36. roles:
  37. - { role: mariadb }
  38. ```
  39. ## Credits
  40. - [Attila van der Velde](https://github.com/vdvm)