====== Create MySQL user ====== First create user: CREATE USER ''@'' IDENTIFIED BY 'clear text password>'; or CREATE USER ''@'' IDENTIFIED BY PASSWORD ''; Grant some rights to the user (here all as * is used): GRANT * ON .* TO ''@''; Put privileges into action: FLUSH PRIVILEGES; Check MySQL documentation for more details.