Skip to content

Commit 28bddab

Browse files
author
carabasdaniel
authored
Merge pull request #1359 from pmcmaw/IAC-1278/main/documenting_managing_root_password
(IAC-1278) Documenting root password management
2 parents 300b677 + 7b513a5 commit 28bddab

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

README.md

+18
Original file line numberDiff line numberDiff line change
@@ -154,6 +154,24 @@ mysql::db { 'mydb':
154154

155155
To add custom MySQL configuration, place additional files into `includedir`. This allows you to override settings or add additional ones, which is helpful if you don't use `override_options` in `mysql::server`. The `includedir` location is by default set to `/etc/mysql/conf.d`.
156156

157+
### Managing Root Passwords
158+
159+
If you want the password managed by puppet for `127.0.0.1` and `::1` as an end user you would need to explicitly manage them with additional manifest entries. For example:
160+
161+
```puppet
162+
mysql_user{ '[[email protected]]':
163+
ensure => present,
164+
password_hash => mysql::password($mysql::server::root_password),
165+
}
166+
167+
mysql_user{ 'root@::1':
168+
ensure => present,
169+
password_hash => mysql::password($mysql::server::root_password),
170+
}
171+
```
172+
173+
**Note:** This module is not designed to carry out additional DNS and aliasing.
174+
157175
### Work with an existing server
158176

159177
To instantiate databases and users on an existing MySQL server, you need a `.my.cnf` file in `root`'s home directory. This file must specify the remote server address and credentials. For example:

0 commit comments

Comments
 (0)