Changing the SYSDBA password
One Firebird account is created automatically as part of the installation process: SYSDBA.This account has all the privileges on the server and cannot be deleted.Depending on version, OS, and architecture, the installation program will either
- 
install the SYSDBAuser with the passwordmasterkey, or
- 
ask you to enter a password during installation, or 
- 
generate a random password and store that in the file SYSDBA.passwordwithin your Firebird installation directory.
If the password is masterkey and your server is exposed to the Internet at all — or even to a local network, unless you trust every user with the SYSDBA password — you should change it immediately.Fire up isql or another Firebird client and connect to a database.In this example, the “employee” example database is used, because its alias is always present in a freshly installed Firebird setup:
connect localhost:employee user sysdba password masterkey;
If you do this in isql, it should respond with:
Database: localhost:employee, User: SYSDBA
Now alter the sysdba password:
alter user sysdba set password 'Zis4_viZuna83YoYo';
| Tip | Instead of  | 
If the command succeeds, you won’t get any feedback.Instead, isql will just print the next “SQL>”-prompt, thus indicating that all is well and your further input is awaited.
Please notice that unlike “regular” usernames, Firebird passwords are always case-sensitive.
| Warning | Depending on the  If you have enabled legacy authentication, you may want to delete the legacy  |