Adding database users and permissions
Databases
Updated Jan 15, 2026
Database User Management
Control who can access your databases and what they can do.
Creating Users
- Go to cPanel → MySQL Databases
- Under MySQL Users, enter username
- Generate a strong password
- Click Create User
Assigning Permissions
- Under "Add User To Database"
- Select user and database
- Click Add
- Choose privileges
- Click Make Changes
Permission Types
| Permission | Description |
| SELECT | Read data |
| INSERT | Add new records |
| UPDATE | Modify existing records |
| DELETE | Remove records |
| ALL PRIVILEGES | Full control (recommended for apps) |
Best Practices
- Use a unique user per application
- Grant only necessary permissions
- Use strong, unique passwords
- Never share database credentials
Was this article helpful?