Appointing co-administrators
Tip
|
What follows here is not essential knowledge for beginners.You can skip it if you like and go on to the [qsg5-config-security] section. |
In Firebird 2.5 and up, SYSDBA
(and others with administrator rights) can appoint co-administrators.This is done with the GRANT ADMIN ROLE
directive:
create user bigbill password 'bigsekrit7foryou' grant admin role;
alter user littlejohn grant admin role;
The first command creates user bigbill
as a Firebird administrator, who can add, alter and drop users.The second command grants administrator privileges to the existing user littlejohn
.
To revoke administrator privileges from an account, use ALTER USER … REVOKE ADMIN ROLE
.
Note
|
|