diff options
author | Marius Bakke <marius@gnu.org> | 2020-11-28 01:46:22 +0100 |
---|---|---|
committer | Marius Bakke <marius@gnu.org> | 2020-11-28 19:51:40 +0100 |
commit | 27d7cdbf87e7a4520f93ee3914139215abf94e68 (patch) | |
tree | f2a7fae93463749cdd5c4bd25a37bc4f8aedafaf /doc | |
parent | 89b704a456ef1cdef855a6c483832a05e1117f24 (diff) | |
download | guix-27d7cdbf87e7a4520f93ee3914139215abf94e68.tar.gz |
services: MySQL: Bind to localhost only by default.
* gnu/services/databases.scm (<mysql-configuration>): Add BIND-ADDRESS field. (mysql-configuration-file): Adjust accordingly. * doc/guix.texi (Database Services): Document it.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/guix.texi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/doc/guix.texi b/doc/guix.texi index f0c95f586c..ae43fb6965 100644 --- a/doc/guix.texi +++ b/doc/guix.texi @@ -19138,6 +19138,10 @@ or @var{mysql}. For MySQL, a temporary root password will be displayed at activation time. For MariaDB, the root password is empty. +@item @code{bind-address} (default: @code{"127.0.0.1"}) +The IP on which to listen for network connections. Use @code{"0.0.0.0"} +to bind to all available network interfaces. + @item @code{port} (default: @code{3306}) TCP port on which the database server listens for incoming connections. |