MySQL Forums
Forum List  »  MySQL Administrator

Re: How to create a backup-only user
Posted by: zahid akram
Date: November 27, 2012 02:03AM

Please create user with the following command and grant privileges.
for backup user have only select privileges and lock tables privileges.

GRANT LOCK TABLES, SELECT ON mydatabase.* TO 'backup'@'localhost' IDENTIFIED BY 'newpassword';

Options: ReplyQuote


Subject
Written By
Posted
Re: How to create a backup-only user
November 27, 2012 02:03AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.