{"id":28401901,"url":"https://github.com/griddb/cli","last_synced_at":"2025-06-28T21:31:18.421Z","repository":{"id":49876115,"uuid":"336931616","full_name":"griddb/cli","owner":"griddb","description":"GridDB CLI(command line interface)","archived":false,"fork":false,"pushed_at":"2024-11-27T05:28:15.000Z","size":10481,"stargazers_count":1,"open_issues_count":0,"forks_count":1,"subscribers_count":5,"default_branch":"main","last_synced_at":"2025-06-01T22:09:59.855Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Java","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/griddb.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2021-02-08T01:42:51.000Z","updated_at":"2024-11-25T04:35:08.000Z","dependencies_parsed_at":"2024-02-14T09:25:08.427Z","dependency_job_id":"1dfc6e78-613f-4716-b264-3efd05e00092","html_url":"https://github.com/griddb/cli","commit_stats":null,"previous_names":[],"tags_count":6,"template":false,"template_full_name":null,"purl":"pkg:github/griddb/cli","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/griddb%2Fcli","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/griddb%2Fcli/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/griddb%2Fcli/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/griddb%2Fcli/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/griddb","download_url":"https://codeload.github.com/griddb/cli/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/griddb%2Fcli/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":262502095,"owners_count":23321087,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2025-06-01T14:06:38.586Z","updated_at":"2025-06-28T21:31:18.409Z","avatar_url":"https://github.com/griddb.png","language":"Java","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cimg src=\"https://griddb.org/brand-resources/griddb-logo/png/color.png\" align=\"center\" height=\"240\" alt=\"GridDB\"/\u003e\n\n# GridDB CLI\n\n## Overview\n\nThe GridDB CLI provides command line interface tool to manage GridDB cluster operations and data operations.\n\n## Operating environment\n\nBuilding and program execution are checked in the environment below.\n\n    OS: Ubuntu 22.04 (x64)\n    GridDB Server: V5.8 CE(Community Edition)\n    Java: OpenJDK 1.8.0\n\n## Quick start from CLI Source Code\n\n### Preparations\n\nInstall GridDB Server with RPM or DEB package.\n\nWhen you build with ant, please take the following steps.\n\n    Install GridDB Java Client library and JDBC Driver.  \n    And place gridstore.jar(GridDB Java Client library) and gridstore-jdbc.jar(GridDB JDBC Driver) under common/lib directory on project directory.\n\n### Build\n\nRun the make command like the following:\n    \n    $ ant\n\nOr build with gradle:\n\n    $ ./gradlew build\n\nand the following file is created under `release/` folder. \n    \n    griddb-cli.jar\n\n### Start GridDB CLI\n\n  Run GridDB CLI after build with ant:\n\n    $ CP=.\n    $ CP=$CP:common/lib/commons-io-2.15.1.jar:release/griddb-cli.jar:common/lib/gridstore.jar:common/lib/gridstore-jdbc.jar:common/lib/jackson-annotations-2.16.1.jar:common/lib/jackson-core-2.16.1.jar:common/lib/jackson-databind-2.16.1.jar:common/lib/javax.json-1.0.jar:common/lib/jersey-client-1.17.1.jar:common/lib/jersey-core-1.17.1.jar:common/lib/orion-ssh2-214.jar:lib/commons-beanutils-1.9.4.jar:lib/commons-cli-1.6.0.jar:lib/commons-collections-3.2.2.jar:lib/commons-lang3-3.14.0.jar:lib/commons-logging-1.3.0.jar:lib/jline-3.21.0.jar:lib/logback-classic-1.2.13.jar:lib/logback-core-1.0.13.jar:lib/opencsv-3.9.jar:lib/slf4j-api-1.7.36.jar\n    $ java -Xmx1024m -Dlogback.configurationFile=gs_sh_logback.xml -classpath \"$CP:$CLASSPATH\"  com.toshiba.mwcloud.gs.tools.shell.GridStoreShell $*\n    gs\u003e version\n    gs_sh-ce version 5.8.0\n\n  Run GridDB CLI after build with gradle:\n\n    $ CP=.\n    $ CP=$CP:release/griddb-cli.jar\n    $ java -Xmx1024m -Dlogback.configurationFile=gs_sh_logback.xml -classpath \"$CP:$CLASSPATH\"  com.toshiba.mwcloud.gs.tools.shell.GridStoreShell $*\n    gs\u003e version\n    gs_sh-ce version 5.8.0\n\n## Quick start from CLI Package\n\n\n```\n(Rocky Linux)\n$ rpm -ivh griddb-X.X.X-linux.x86_64.rpm\n$ rpm -ivh griddb-ce-cli-X.X.X-linux.x86_64.rpm\n$ gs_sh\n\n(Ubuntu)\n$ dpkg -i griddb_x.x.x_amd64.deb\n$ dpkg -i griddb-cli_X.X.X_amd64.deb\n$ gs_sh\n\nNote: - X.X.X is the GridDB version.\n      - {release} is the GridDB release version.\n```\n\n- Note: \n  - We can download the last version of `griddb-X.X.X-linux.x86_64.rpm`, `griddb_x.x.x_amd64.deb` at https://github.com/griddb/griddb/releases/ .\n\n## Document\n\n  Refer to the file below for more detailed information.  \n  - [Specification_en.md](Specification_en.md)\n  - [Specification_ja.md](Specification_ja.md)\n\n## Community\n  * Issues  \n    Use the GitHub issue function if you have any requests, questions, or bug reports. \n  * PullRequest  \n    Use the GitHub pull request function if you want to contribute code.\n    You'll need to agree GridDB Contributor License Agreement(CLA_rev1.1.pdf).\n    By using the GitHub pull request function, you shall be deemed to have agreed to GridDB Contributor License Agreement.\n\n## License\n  The GridDB CLI source license is Apache License, version 2.0.  \n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgriddb%2Fcli","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgriddb%2Fcli","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgriddb%2Fcli/lists"}