Guide – How To Start – Firebird 3.0.7 on Ubuntu 18.04 LTS

Firebird is a powerful and lightweight SQL relational database management. It offers many ANSI SQL standard features that run on both OS. It offers excellent concurrency, high performance, and powerful language support for stored procedures and triggers.

This is a quick deployment and ready-to-run image.
Simple and rapid installation. Easy to maintain.

Connection to FireBird 3.0.7 on Ubuntu Server 18.04 LTS using DBeaver through SSH Tunnel

  1. For the connection to the server, you should know the IP address of the VM. You can find it in the personal account of Azure. Select the virtual machine from the list. By clicking the item “Overview”, your IP is displayed in the line of “Public IP Address”.
  1. Go to the page for downloading DBeaver – Download
  1. Download the software distribution convenient for you, Windows 64 bit installer for example. 
  1. Run the downloaded file and finish the installation process
  1. Start the DBeaver
  1. Click on the button to establish the new connection
  1. In the list that appeared, find and select “Firebird”, then click the “Next” button
  1. In the “Path” field, specify the path to the database located on the VM. For example: /opt/firebird/examples/empbuild/employee.fdb 

In the “User Name” field, enter the username sysdba and the password masterkey to connect to DB. The other fields in the tab leave with no changes. It is strongly recommended to change the password, after connecting to the database.

  1. Go to the “SSH” tab and tick the “Use SSH tunnel” checkbox

In the “Host/IP” field enter the address of the virtual machine

In the “Username” field enter the username to connect to the VM

In the “Password” field type the password, which was used to connect to the virtual machine before

Click “Finish” to save and establish the connection 

  1. While connecting, the window with the driver files installation may appear. Click  “Download”, after that the connection to the database will be continued.
  1. Your Firebird is ready
  1. To start and stop the Firebird server manually, you should connect to a VM. 
  2. With OpenSSH

In the Windows 10 operating system (starting with version 1809), an OpenSSH client is available, with which you can connect to Linux servers via SSH. If Windows 10 is suitable and the OpenSSH client is installed, you can start connecting via SSH. To do this, launch a standard Windows command prompt and enter the command “ssh user@*vm_ip*” (1), where “user” is the username that was specified while creating the virtual machine and “*vm_ip*” is the VM IP address.

Then type “Yes” (2) and enter a password (3) that was specified while creating the virtual machine.

  1. With the PuTTy application 

To do this you need the PuTTy application to connect via ssh. You can download it at the following link – Download

Run Putty, enter the VM address in the “Host” field (1), and click “Open” (2) to connect.

In the opened console you will need to enter a username (1) and password (2) that were specified while the VM was being created (you’ll not see the password in the console while entering it). 

  1. To stop the server enter the command:

$ sudo systemctl stop firebird-superserver

  1. To start the server enter the command:

$ sudo systemctl start firebird-superserver

Website Built with WordPress.com.

Up ↑