• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • We are looking for U.S.-based freelancer or agency working with SEO or WordPress for a quick 30-min interviews to gather feedback on XOVI, a successful German SEO tool we’re looking to launch in the U.S.
    If you qualify and participate, you’ll receive a $30 Amazon gift card as a thank-you. Please apply here. Thanks for helping shape a better SEO product for agencies!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Resolved MariaDB Backup issue

Quinten

Regular Pleskian
Server operating system version
Ubuntu 22.04.1 LTS
Plesk version and microupdate number
Plesk Obsidian Version 18.0.49 Update #2
Hello,

Since a week ago there seems to be an issue with my backups on one of my servers
1675779859938.png
The backup is incomplete with a bunch of these same message.
I looked up the error and found some topics on ehre but none of the solutions seem to work for me.
I attached my 50-server.cnf and the my.cnf are there any other relevant files to look at?

Help would be much appriciated
 

Attachments

  • cnf.zip
    2.6 KB · Views: 4
It seems that skip-name-resolve = 1 has been added to your my.cnf lately? In that case, name resolution that is required to resolve "localhost" does not work. If there is no specific reason for that line, please remove it or comment it, then restart the database server, then try the backup again. It should then work as before without errors.
 
It seems that skip-name-resolve = 1 has been added to your my.cnf lately? In that case, name resolution that is required to resolve "localhost" does not work. If there is no specific reason for that line, please remove it or comment it, then restart the database server, then try the backup again. It should then work as before without errors.
Hi Peter thank you for your reply.
I have removed the skip-name-resolve = 1 from my.cnf

However i now seem to have a different error:
1675782819392.png
 
Anyone have any idea? because the user does exist but im not fully sure what the error means
 
Maybe some misunderstanding here. You'll need to check users in the database itself, not in the frontend. A user record that looks similar might exist, but is it really exactly the same with the global % wildcard permissions as the error says? There could be an entry for localhost or 127.0.0.1 or another specific IP, too. You need the exactly right entry. You could add such an entry to your users table in the database.

Another option could be to remove the view from the database that the definer is associated with and re-add it later.
1. First get the exact view definition (for later restore). Doing something wrong in this however could result in loss of the view, so please handle with care.
> SELECT VIEW_DEFINITION FROM INFORMATION_SCHEMA.VIEWS WHERE TABLE_SCHEMA = 'dbname' AND TABLE_NAME = 'viewname';
This will output a "select" statement that is the view definition. Store all that information.
2. Drop the view
> DROP VIEW dbname.viewname;
3. Recreate the view using the output you got from above ("select ..."):
> CREATE VIEW dbname.viewname AS select ...
 
How can i check for the entry on localhost or 127.0.0.1 or not?

Also for the view i really dont want to do anything wrong here.
What is the viewname i put there in the query?
 
I seem to have solved the problem by just unchecking the global privileges on the user...
 
Back
Top