It appears that the firebird user had permission to open the database
file. However, I can't get it to open with firebird.
[me@5900X Database]$ sudo -u firebird ls -al
total 2768
drwxr-xr-x. 1 me me 24 Oct 21 11:21 .
drwx------. 1 me me 470 Oct 25 10:34 ..
-rw-rw----. 1 firebird firebird 2834432 Oct 21 15:33 employee.fdb
[me@5900X Database]$ sudo -u firebird cat employee.fdb
<spits out database.fdb, as best it can>
$ id me
uid=1000(me) gid=1000(me) groups=1000(me),10(wheel),974(firebird)
$ id firebird
uid=978(firebird) gid=974(firebird) groups=974(firebird),1000(me)
[me@5900X Database]$ isql-fb
Use CONNECT or CREATE DATABASE to specify a database
SQL> connect localhost:/home/me/Database/employee.fdb
CON> user SYSDBA password xxxx ;
Statement failed, SQLSTATE = 08001
I/O error during "open" operation for file "/home/me/Database/employee.fdb"
-Error while trying to open file
-Permission denied
Is this an operating system permission message or a user permission
issue on the database itself ?