-
Notifications
You must be signed in to change notification settings - Fork 392
Command line parameters
dbeaver-devops edited this page Dec 4, 2024
·
5 revisions
CloudBeaver support the same system parameters as DBeaver.
There are two ways to pass command line parameters to CloudBeaver server
- Modify
run-server.sh
script, add extra parameters afterjava
command in last line. For example, add parameter-Xmx2048
in server start:
java -Xmx2048M -jar ${launcherJar} -product io.cloudbeaver.product.ce.product -web-config conf/cloudbeaver.conf -nl en -registryMultiLanguage
Note: to be able to modify run script you must build CloudBeaver from sources. It doesn't make sense to modify the script in docker container because all changes will be reset after container restart.
Set variable JAVA_OPTS
to appropriate parameters value. It works for manual server start and for docker container start.
export JAVA_OPTS=-Xmx2048
./run-server.sh
You can pass JAVA_OPTS variable to docker container by using -e
docker parameter:
sudo docker run -d --restart unless-stopped -p 80:8978 \
-e JAVA_OPTS=-Xmx2048 \
-v /var/cloudbeaver/workspace:/opt/cloudbeaver/workspace dbeaver/cloudbeaver:latest`}
- Application overview
- Demo Server
- Administration
- Server configuration
- Create Connection
- Connection Templates Management
- Access Management
-
Authentication methods
- Local Access Authentication
- Anonymous Access Configuration
- Reverse proxy header authentication
- LDAP
- Single Sign On
- SAML
- OpenID
- AWS OpenID
- AWS SAML
- AWS IAM
- AWS OpenId via Okta
- Snowflake SSO
- Okta OpenId
- Cognito OpenId
- JWT authentication
- Kerberos authentication
- NTLM
- Microsoft Entra ID authentication
- Google authentication
- User credentials storage
- Cloud Explorer
- Cloud storage
- Query Manager
- Drivers Management
- Supported databases
- Accessibility
- Keyboard shortcuts
- Features
- Server configuration
- CloudBeaver and Nginx
- Domain manager
- Configuring HTTPS for Jetty server
- Product configuration parameters
- Command line parameters
- Local Preferences
- API
-
CloudBeaver Community
-
CloudBeaver AWS
-
CloudBeaver Enterprise
-
Deployment options
-
Development