verify by running in terminal/PowerShell:
docker --version
docker load -i tigergraph-4.2.0-community-docker-image.tar.gz
# NOTE: verify file location before running. eg: docker load -i D:\downloads\tigergraph-4.2.0-community-docker-image.tar.gz
After it finishes, confirm it’s there:
docker images
docker run -d -p 14022:22 -p 9000:9000 -p 14240:14240 --name tigergraph --ulimit nofile=1000000:1000000 -v tg-data:/home/tigergraph tigergraph/community:4.2.0
Explanation of ports:
- 14022 → SSH access to the container
- 9000 → REST++ API (query endpoint)
- 14240 → GraphStudio (web UI for TigerGraph)
NOTE: To reuse the existing container instead of creating a new one:
docker start tigergraph
After running, check container status:
docker ps
- Inside container:
docker exec -it tigergraph bash
start the tiger graph services
gadmin start all
verify services are running
gadmin status
GSQL shell:
gsql
-
GraphStudio (GUI): Open http://localhost:14240 in your browser.
- Default login:
- Username:
tigergraph - Password:
tigergraph
- Username:
- Default login:
-
REST API test: http://localhost:9000/echo
curl http://localhost:9000/echo
-
Design Schema based on given data. 01_Schema_Design
-
Access GraphStudio (GUI) at: 👉 http://localhost:14240