Install & Bootstrap
To install locally and bootstrap Permguard, you need to run the AuthZ server and install the Permguard CLI. This guide provides step-by-step instructions to help you get started.
For deployment, refer to the DevOps section.
Start up the AuthZ Server
To startup the AuthZ server, you just need to run the Docker container.
docker pull permguard/all-in-one:latest
docker run --rm -it -p 9091:9091 -p 9092:9092 -p 9094:9094 permguard/all-in-one:latest
Install the Command Line Interface
To install the Permguard CLI, the first step is to build it.
make build-cli
Then it is required to copy the binary to the desired location which has to be in the system path.
cp dist/permguard-cli /usr/local/bin/permguard-cli
Prev
Zero Trust ReadyNext
Hands-on Example