This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
Table of contents
- Prerequisites
- Deployment in Google Cloud Console
- Deployment with Google Cloud CLI
- CloudBeaver public image URIs
This guide covers how to deploy CloudBeaver Community Edition on Google Cloud Platform (GCP) using both the Google Cloud Console and the Google Cloud CLI.
Prerequisites
Before you begin, make sure you have:
- A Google Cloud account for accessing GCP services.
- Compute Engine set up in your project.
If you don’t have a GCP account, sign up on the Google Cloud signup page.
Permissions
To deploy CloudBeaver Community Edition in Google Cloud, you need certain permissions to create and manage resources like virtual machines, disks, and networks. Ensure you have the necessary permissions for your project.
Tip: For a full list of permissions and more information on how to manage them, see the official Google Cloud Permissions documentation.If you don’t have the required permissions, contact your system administrator.
Deployment in Google Cloud Console
Import the CloudBeaver Community Edition custom image
-
Log in to the Google Cloud Console, then go to Compute Engine -> Images. Click [+] Create image.
-
Complete the Create an image form:
- Enter the image name in the format
cloudbeaver-ce-server-ubuntu-%version%orcloudbeaver-ce-server-rhel-%version%, depending on the operating system. - Select Virtual disk (VMDK, VHD) as the source and enter the following URI:
cloudbeaver-ce-server/in the Virtual disk file field. Click BROWSE to select your version.
Tip: Replace
%version%with the desired version number, such as24-2-0. - Enter the image name in the format
-
Click Create. The image import process can take up to 15 minutes.
Create a Compute Engine instance from the imported image
-
After the image is imported, navigate to the Images tab, find your imported image, and click [+] Create instance.
-
Name your instance and set up the following:
- Under Machine configuration, choose a machine type with at least 1 CPU and 4GB RAM for optimal CloudBeaver performance.
- Click Change, select your custom image, and set the disk size to at least 100GB.
-
In the Firewall section, check Allow HTTP traffic and Allow HTTPS traffic to make the instance accessible online.
-
Click Create. Your instance will be ready in a few minutes. Verify by pasting its External IP into your browser.
-
Begin the initial configuration of the CloudBeaver server in your browser.
Deployment with Google Cloud CLI
Activate Cloud Shell
-
In the Google Cloud Console, go to Compute Engine and click Activate Cloud Shell to launch the CLI within GCP.
-
Authorize any prompts if needed.
Run the deployment command
Run this gcloud command to create a new instance:
gcloud beta compute instances create cloudbeaver-ce-server \
--zone=us-central1-a \
--machine-type=e2-medium \
--tags=http-server,https-server \
--image=https://www.googleapis.com/compute/v1/projects/dbeaver-public/global/images/cloudbeaver-ce-ubuntu-24-2-0 \
--create-disk=auto-delete=yes \
--boot-disk-size=100GB --boot-disk-device-name=cloudbeaver-ce-server
You can customize the command as needed. For more details on using the Google Cloud CLI, see the official documentation.
Tip: Replace the
--imageURL with a different version if needed.
Start with CloudBeaver server setup
-
After the instance is created, retrieve its external IP (needed for accessing the CloudBeaver server):
gcloud compute instances list --filter="name:cloudbeaver-ce-server" --format="get(networkInterfaces[0].accessConfigs[0].natIP)"This command will return the
external-ip, which you’ll need to begin the initial setup. -
Use the
external-ipto start configuring and accessing the CloudBeaver interface. -
In your browser, go to
http://<external-ip>/, where<external-ip>is the public IP address of your GCP instance. -
You’ll be redirected to CloudBeaver’s initial configuration wizard to complete the setup.
Tip: For guidance on locating your instance's public IP address, see GCP: Viewing IP Addresses.
CloudBeaver public image URIs
https://www.googleapis.com/compute/v1/projects/dbeaver-public/global/images/cloudbeaver-ce-ubuntu-%version%https://www.googleapis.com/compute/v1/projects/dbeaver-public/global/images/cloudbeaver-ce-rhel-%version%
Tip: Replace
%version%with the desired version number, such as24-2-0. For more information on tags, see CloudBeaver release cycles.
CloudBeaver Documentation
- Getting started
- Create connection
- Connection network options
- Supported databases
- Drivers management

- Database authentication methods
- Database navigator
- Properties editor
- Data editor
- SQL editor
- Entity relation diagrams

- Cloud services
- AI Smart assistance
- Data transfer
- General user guide
- Administration
- Server configuration
- Server security and access configuration
- Authentication methods
- Access management
- Proxy configuration
- Secret management

- Logs
- Query manager
- Workspace location
- Command line parameters
- Session manager

- Deployment options
- CloudBeaver Editions
- FAQ
- Development