Change Password

Please enter the password.
Please enter the password. Between 8-64 characters. Not identical to your email address. Contain at least 3 of: uppercase, lowercase, numbers, and special characters.
Please enter the password.
Submit

Change Nickname

Current Nickname:
Submit

Apply New License

License Detail

Please complete this required field.

  • Ultipa Blaze (v4)
  • Ultipa Powerhouse (v5)

Standalone

learn more about the four main severs in the architecture of Ultipa Powerhouse (v5) , click

here

Please complete this required field.

Please complete this required field.

Please complete this required field.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Leave it blank if an HDC service is not required.

Please complete this required field.

Please complete this required field.

Mac addresses of all servers, separated by line break or comma.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Maximum Shard Services
Maximum Total Cores for Shard Service
Maximum HDC Services
Maximum Total Cores for HDC Service
Applied Validity Period(days)
Effective Date
Expired Date
Mac Address
Reason for Application
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
Change Password
Apply

You have no license application record.

Apply
Certificate Issued at Valid until Serial No. File
Serial No. Valid until File

Not having one? Apply now! >>>

Product Created On ID Amount (USD) Invoice
Product Created On ID Amount (USD) Invoice

No Invoice

v5.2
Search
    English
    v5.2

      Connect to Database

      Once you have installed the driver and set up an Ultipa instance, you can connect your application to the database.

      Create a Connection

      Creates a connection by instantiating UltipaDriver() with an ULTIPA.UltipaConfig object, which holds the configuration details required to connect to the database.

      See more connection configuration options →

      import { UltipaDriver } from "@ultipa-graph/ultipa-driver";
      import type { ULTIPA } from "@ultipa-graph/ultipa-driver/dist/types/index.js";
      
      let sdkUsage = async () => {
        const ultipaConfig: ULTIPA.UltipaConfig = {
          // URI example: hosts: ["xxxx.us-east-1.cloud.ultipa.com:60010"]
          hosts: ["10.xx.xx.xx:60010"],
          username: "<username>",
          password: "<password>"
        };
      
        const driver = new UltipaDriver(ultipaConfig);
        
        // Tests the connection
        const isSuccess = await driver.test();
        console.log(`Connection succeeds: ${isSuccess}`);
      };
      
      sdkUsage().catch(console.error);
      

      Connection succeeds: true
      

      Use Configuration File

      This example demonstrates how to use the configuration file .env to establish a connection:

      import { UltipaDriver } from "@ultipa-graph/ultipa-driver";
      import type { ULTIPA } from "@ultipa-graph/ultipa-driver/dist/types/index.js";
      import * as dotenv from "dotenv";
      
      // Loads the .env file and overrides system environment variables
      dotenv.config({override:true});
      
      const hosts = process.env.hosts?.split(',') || [];
      const username = process.env.username!;
      const password = process.env.password!;
      
      const sdkUsage = async () => {
        const ultipaConfig: ULTIPA.UltipaConfig = {
          hosts: hosts,
          username: username,
          password: password,
        };
      
        const conn = new UltipaDriver(ultipaConfig);
      
        // Tests the connection
        const isSuccess = await conn.test();
        console.log(`Connection succeeds: ${isSuccess}`);
      };
      
      sdkUsage().catch(console.error);
      

      Connection succeeds: true
      

      Example of the .env file:

      // hosts=xxxx.us-east-1.cloud.ultipa.com:60010
      hosts=10.xx.xx.xx:60010
      username=<username>
      password=<password>
      passwordEncrypt=MD5
      defaultGraph=miniCircle
      // crt=F:\\ultipa.crt
      // maxRecvSize=10240
      

      See more connection configuration options →

      Connection Configuration

      UltipaConfig or a configuration file can include the following fields:

      Field
      Type
      Default
      Description
      hosts string[] / Required. A comma-separated list of database server IPs or URLs. The protocol is automatically identified, do not include https:// or http:// as a prefix in the URL.
      username string / Required. Username of the host authentication.
      password string / Required. Password of the host authentication.
      defaultGraph string / Name of the graph to use by default in the database.
      crt string / The file path of the SSL certificate used for secure connections.
      passwordEncrypt string MD5 Password encryption method of the driver. Supports MD5, LDAP and NOTHING.
      timeout number Maximum Request timeout threshold (in seconds).
      heartbeat number 0 The heartbeat interval (in milliseconds), used to keep the connection alive. Set to 0 to disable.
      maxRecvSize number 32 The maximum size (in MB) of the received data.
      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写
      Privacy Policy
      Please agree to continue.

      Copyright © 2019-2025 Ultipa Inc. – All Rights Reserved   |  Security   |  Legal Notices   |  Web Use Notices