More happenings...
It seems a lot of sites, all from the restored server from what I've seen so far, are having issues with their backups now, creating full backups each time stuck as WIPs. Not able to complete the database portion of their backup run. When I check on one of the server and run a manual backup, it shows up in the appcd status:
appcd[2068265]: mysqldump: Got error: 1045: Access denied for user 'sitename1'@'localhost' (using password: YES) when trying to connect
So I checked permissions on that user:
Grants for sitename1@localhost
GRANT USAGE ON . TO sitename1
@localhost
Welp, that's not gonna work... Not sure why it doesn't have the correct privileges, so I updated privileges:
GRANT USAGE ON . TO sitename1
@localhost
GRANT ALL PRIVILEGES ON sitename1_wp1
.* TO sitename1
@localhost
Its privileges now match privileges on other servers that are working correctly for backups... So I ran a manual backup... It bugs out as well.
Ugh, I'm so tired.
I'll submit a support ticket, guessing there's something else I need to do to give access somewhere.