Skip to content

Instantly share code, notes, and snippets.

@angelortiz-io
Last active May 25, 2021 21:48
Show Gist options
  • Save angelortiz-io/a340b3bb9db67ba78141 to your computer and use it in GitHub Desktop.
Save angelortiz-io/a340b3bb9db67ba78141 to your computer and use it in GitHub Desktop.
How to setup firebird super server on archlinux
# install with yaourt
yaourt -S firebird-superserver
# create symlink for firebird isql due to a conflict with unixODBC isql
# check with this command:
whereis isql (ENTER)
isql: /usr/bin/isql /opt/firebird/bin/isql /usr/share/man/man1/isql.1.gz
# creating symlink:
sudo ln -s /opt/firebird/bin/isql /usr/bin/isql-fb
# enabling and starting service
sudo systemctl enable firebird.service
sudo systemctl start firebird.service
@shawe
Copy link

shawe commented Apr 20, 2018

Only to have for the future here, is also needed do:

sudo chown firebird.firebird *.fdb

or in my case, moved to default firebird place:

sudo chown -R firebird.firebird /var/lib/firebird/

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment