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 Graph V4

Standalone

Please complete this required field.

Please complete this required field.

The MAC address of the server you want to deploy.

Please complete this required field.

Please complete this required field.

Cancel
Apply
ID
Product
Status
Cores
Applied Validity Period(days)
Effective Date
Excpired Date
Mac Address
Apply Comment
Review Comment
Close
Profile
  • Full Name:
  • Phone:
  • Company:
  • Company Email:
  • Country:
  • Language:
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

Search
    English

      User

      User of Ultipa Graph system has the following features:

      • Please refer to chapter Basic Concepts for the naming conventions of user;
      • Length of password is 6~64;
      • A user can own multiple privileges and policies.

      Show User

      Returned table name: _user
      Returned table header: username | create | lastLogin | graphPrivileges | systemPrivileges | policies (username, creation time, last login time, graph privileges, system privileges, sub policies)

      Syntax:

      // To show all users in the current Ultipa instance
      show().user()
      
      // To show a certain user in the current Ultipa instance
      show().user("<name>")
      
      // To show the current logged-on user
      show().self()
      

      Create User

      Syntax:

      // To create a user in the current Ultipa instance
      create().user("<username>", "<password>", <{}graph_privileges?>, <[]system_privileges?>, <[]policies?>)
      

      Example: Create user "Ultipa" with password "ultipaABC123", grant graph privileges UPDATE, ALGO, LTE and UFE for all GraphSets, system privileges STAT, TOP and KILL, and policy "sales"

      create().user(
        "Ultipa",   
        "ultipaABC123",
        {"*": ["UPDATE","ALGO","LTE","UFE"]},  
        ["STAT","TOP","KILL"], 
        ["sales"]
      )
      

      Alter User

      Syntax:

      // To modify the a certain user in the current Ultipa instance
      alter().user("<username>")
        .set({password:"<new?>", graph_privileges:<{}new?>, system_privileges:<[]new?>, policies:<[]new?>})
      

      Example:Modify user Ultipa's password to "ultipaFast"

      alter().user("Ultipa")
        .set({password: "ultipaFast"})
      

      Example:Modify user Ultipa's privilege and policy, make it only has graph privilege UPDATE against GraphSet "default"

      alter().user("Ultipa")
        .set({graph_privileges: {"default": ["UPDATE"]}})
      

      Grant Privileges/Polices

      Syntax:

      // To grant privileges and policies from a certain user in the current Ultipa instance
      grant().user("<username>")
        .params({graph_privileges:<{}new?>, system_privileges:<[]new?>, policies:<[]new?>})
      

      Example: Grant privilege UPDATE against all GraphSets for user "Ultipa", as well as system privileges TOP and KILL

      grant().user("Ultipa")
        .params({graph_privileges: {"*": ["UPDATE"]}, system_privileges: ["TOP", "KILL"]})
      

      Revoke Privileges/Polices

      Syntax:

      // To revoke privileges and policies from a certain user in the current Ultipa instance
      revoke().user("<username>")
        .params({graph_privileges:<{}old?>, system_privileges:<[]old?>, policies:<[]old?>})
      

      Example: Remove privilege DELETE against GraphSet "default" from user "Ultipa"

      revoke().user("Ultipa")
        .params({graph_privileges: {"default": ["DELETE"]}})
      

      Drop User

      Syntax:

      // To delete a certain user from the current Ultipa instance
      drop().user("<name>")
      

      Reset Admin User

      Resetting admin user needs to be done on Ultipa Server with ultipa-reset-user tool.

      Please complete the following information to download this book
      *
      公司名称不能为空
      *
      公司邮箱必须填写
      *
      你的名字必须填写
      *
      你的电话必须填写