
Problem
When verifying a (remote) server running MySQL 8.0 (default on Ubuntu 20.04), we get:
Unable to grant privileges to database users.
This appears to be due to no longer being able to implicitly create a user using GRANT
. The supported syntax now requires two statements:
CREATE USER 'username' IDENTIFIED BY 'password';
GRANT alter,create,delete,[...] ON database.* TO 'username';
This is handled in Provision_Service_db_mysql::grant()
, where we call:
$this->query("GRANT ALL PRIVILEGES ON `%s`.* TO `%s`@`%s` IDENTIFIED BY '%s'", $name, $username, $host, $password)
The 2-statement syntax (CREATE USER
,then GRANT
) appears to be backwards compatible to MySQL 5, so we could:
- update the syntax in
grant()
; - add a new
create_user()
method (called fromgrant()
?); - determine the version of MySQL and switch syntax based on that; or
- subclass
Provision_Service_db_mysql
and overridegrant()
with the new syntax.
Remaining tasks
Issue fork provision-3145881
Show commands
Start within a Git clone of the project using the version control instructions.
Or, if you do not have SSH keys set up on git.drupalcode.org:
Comments
Comment #2
colanAdded tag.
Comment #3
spidermanOption 1. seems like the correct answer, assuming the BC in mysql goes as far back as we (D7) support. If the two are equivalent even in older versions, there should be no problem with just switching the syntax for everyone, right?
Comment #4
ergonlogicComment #5
ergonlogicYeah, I'm leaning towards #1 also.
Comment #6
helmo CreditAttribution: helmo commentedOption 1 seems to be the best ... I'm assuming that it's also MariaDB 10.3 compatible.
Comment #7
ergonlogicThis patch adds a
create_user()
method. Server 'verify' tasks continue to succeed for a MySQL 5.x server. So, at least it hasn't broken anything. I also factored out the GRANT statement, since it was duplicated.However, while a user is created on the MySQL 8.0 server, the GRANT statement still fails. I have been able to run a working GRANT statement (
GRANT ALL PRIVILEGES ON `test`.* TO `site__user`@`%`
) directly on the mysql CLI, while connected remotely from the master server. But altering the statement ingrant()
fails.Comment #8
ergonlogicIt turns out that newer versions of MySQL don't support grants on non-existent databases. So our check also has to create itself a test database, and then clean it up. Also, I had omitted the host from the user creation method, and so no user was being found when the
GRANT
statement (which did include a host) ran.It took awhile to get there, though, since the
pdo::query()
method didn't provide any feedback when queries failed. So, this patch also adds some notices to give a better idea what's happening if a database query fails.I've tested this on both MySQL 5.7 and 8.0.
Comment #9
helmo CreditAttribution: helmo commentedThanks, I've committed your patch now to a 'test-focal-fossa-runalltests' branch on gitlab to see what the CI test does ... but it still fails very early during install with an sql related error.
See https://gitlab.com/aegir/provision/-/jobs/601841502
If someone has time to dig into this ... a good place to start would be in a test vm to run the ci-aegir-dev-install-apt-ubuntu-focal.sh script from that branch(the one on the main repo uses mariaDB for 20.04).
Comment #10
wsafley CreditAttribution: wsafley commentedThe error being thrown upon install from
https://gitlab.com/aegir/provision/-/jobs/601841502
appears to be coming from line 166 of aegir3-hostmaster.postinst. In my test environment, I broke it into CREATE USER and GRANT lines, but I didn't get something correct. I no longer get that error.
Now I get
Caught drush error, ending drush_provision_hostmaster_install [error]
Array [error]
(
[PROVISION_GRANT_DB_USER_FAILED] => Array
(
[0] => Unable to grant privileges to database users.
)
)
so it still looks to me like I didn't get the GRANT permissions right.
Comment #11
heneryh CreditAttribution: heneryh commentedI'm getting this too. Commenting here to hopefully subscribe and share my full command history for reference.
Starting with a clean 20.04 server build:
Comment #12
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedIt actually changed in 5.7, but wasn't strictly enforced. But it looks like despite MySQL saying otherwise, you can't set password while creating the user or adding grants. There will be warning reported (this was tested with Percona 5.7):
You actually have to split this into
CREATE/GRANT/ALTER
chain like this to het it actually done:Comment #13
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedThese two patches should fix the problem, tested with MariaDB and Percona, which is MySQL equivalent, but more testing is welcome.
Comment #14
colanWhy two patches? Is one for Provision and one for Hostmaster? The filenames don't help here at all.
Also, do you have an interdiff for #8?
Comment #15
memtkmcc CreditAttribution: memtkmcc at Omega8.cc commentedI have split this into two patches, because I'm not sure about the Debian scripts, so left it in the second patch.
I don't have interdiff because I couldn't use/test the proposed previous patch with my Provision copy (we have a lot more there for mydumper support), so had to make all changes manually anyway.
Comment #16
doka CreditAttribution: doka commentedPatch #13 is not working with MariaDB 10.1, since "ALTER USER" was introduced in MariaDB 10.2. As a consequence, aegir install won't work on Ubuntu Bionic, unless the user upgrades MariaDB before Aegir install.
Comment #17
llamechI've tested the first patch in #13 successfully (on Ubuntu 20, using MySQL 8 with Drupal 7.78 and 9.1.4) but not the second.
Is there a way for me to RTBC just the first patch but not the second one?
@helmo How would you like this to be handled? Just commit the Provision fix here and move the deb postinst script fix to a separate ticket?
Also: should the MariaDB issue be broken out as a separate ticket? This one is ostensibly about Mysql 8, for which I am confirming the patch above works.
Comment #18
colanAfter reviewing:
Comment #19
colanI created a new issue fork using the new GitLab integration (see the top of the issue for details) so far pushing only the first patch in #13. I didn't use @helmo's
test-focal-fossa-runalltests
branch (#9) because I couldn't find it.Comment #20
ergonlogic+1 to committing the first patch from #13.
Comment #23
colanAs there were no objections, I merged the first patch, and updated the IS with remaining tasks.
Comment #25
Chris MaissanIs the workaround for Ubuntu 20.04 to manually install? Anything I can do to help get this fix in production?
Comment #26
Chris MaissanIf anyone lands here after trying to install Aegir on Ubuntu 20.04, I recommend using Ubuntu 18.04 instead. I had no issues installing on 18.04 and it still has a few years before end-of-life.
Comment #27
colanFor what it's worth, we're got it working on 20.04 with our Ansible role using dev branches.
Once there's a new official release, the Debian package should work on 20.04.
Comment #28
kienan CreditAttribution: kienan commented@colan, we could set the debian package requirements for mariadb >= 10.2 in addition to the documentation notice. it will make it clear that the installation won't work unless it is updated.
Comment #29
colan👍
Comment #30
agaq CreditAttribution: agaq as a volunteer commentedDo we have an idea of when a debian package working on 20.04 may be available?
Comment #31
kienan CreditAttribution: kienan commentedHere's a patch that sets minimum versions on the mysql-server and mariadb-server recommends. This won't stop someone from upgrading the package when using a database (especially if the database is not local).
Comment #32
colan#30: You may want to track #3246691: Create an Aegir 3.20 release for recent stable Debian & Ubuntu LTS.
Comment #33
doka CreditAttribution: doka commentedOne missing piece to get Aegir package install running on MySQL (and to get it running on Ubuntu 20.04 as well) is to change user creation in debian/aegir3-hostmaster.postinst.
Even the #3145881-13: User creation has changed in MySQL 8.0 patch has had this code earlier, but has not been committed. This patch changes the method of aegir database user creation the same way as implemented in database service.
Beyond this patch, the debian/aegir3-hostmaster.postinst file needs also a more general rework.
This patch contributes to #3145927: [META] Support Ubuntu 20.04 LTS as well.
Comment #35
steven jones CreditAttribution: steven jones at ComputerMinds commentedLooks like this got committed to 7.x-3.x already.