mysqlconfigurer icon indicating copy to clipboard operation
mysqlconfigurer copied to clipboard

Automatic installation doens't work in some cases

Open drupaladmin opened this issue 1 year ago • 1 comments

-If the root password for MySQL contains an ' (apostrophe) the automatic setup script will fail because it encloses the password in apostrophes. Using the advanced manual setup is then needed. -If the admin of the server has enabled skip-name-resolve then a connection to localhost will fail because the root user won't be allowed from a hostname. The IP loopback address 127.0.0.1 must be used instead. Again using the advanced manual setup is needed.

drupaladmin avatar Jul 11 '23 10:07 drupaladmin

  • MySQL is allowed special characters: ‘ ~ ! @ # $ % ^ & * ( ) _ - + = { } [ ] / < > , . ; ? ' : | (space) Changed to double quotes in the agent setup command for the RELEEM_MYSQL_ROOT_PASSWORD variable, since single quotes are allowed for use in the password.

  • When the agent is installed, a socket connection is made to the root user. Therefore, the skip-name-resolve setting does not affect the installation script.

kochetovd avatar Jun 24 '24 09:06 kochetovd