To allow the newly created MySQL user full access to the Jamf Pro database, type the following at the MySQL command prompt followed by pressing the Return key:
GRANT ALL ON jamfsoftware.* TO 'uniquename'@'localhost';Or, in the case of MySQL and Jamf Pro installed on different servers, type something similar to:
GRANT ALL ON jamfsoftware.* TO 'uniquename'@192.168.22.22;This will grant ALL access to every table (*) of the database named jamfsoftware. Adjust jamfsoftware as needed, if you named the database something else.