You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the user specifies a custom config that enabled binary logging, and the mysql user has full write access to the folder, the --verbose --help command used to extract datadir will write an index file to it, causing the following initialize step to fail because there are files in datadir.
To reproduce:
...
docker run -e MYSQL_ROOT_PASSWORD=rot -v /tmp/data:/var/lib/mysql mysql:latest --log-bin=somename --server-id=1
...
where /tmp/data is writeable.
A possible workaround is to add --log-bin-index=/tmp/junk.index to the --verbose --help command.
This is a bug in the server, similar to #69
The text was updated successfully, but these errors were encountered:
If the user specifies a custom config that enabled binary logging, and the mysql user has full write access to the folder, the --verbose --help command used to extract datadir will write an index file to it, causing the following initialize step to fail because there are files in datadir.
To reproduce:
...
docker run -e MYSQL_ROOT_PASSWORD=rot -v /tmp/data:/var/lib/mysql mysql:latest --log-bin=somename --server-id=1
...
where /tmp/data is writeable.
A possible workaround is to add --log-bin-index=/tmp/junk.index to the --verbose --help command.
This is a bug in the server, similar to #69
The text was updated successfully, but these errors were encountered: