Quote:
|
Originally Posted by volksman
Personally I would. That way if someone gets in they don't get access to everything (depending on the privileges you grant to each additional user).
|
OK, so I will create a specific user for ISPConfig. Does this syntax look right:
Code:
mysql -u root -p
create database db_ispconfig;
GRANT ALL PRIVILEGES ON db_ispconfig.* TO 'ispconfig_user'@'localhost'
IDENTIFIED BY 'ispconfig_user_password' WITH GRANT OPTION;
quit;