diff --git a/docs/quickstart.mdx b/docs/quickstart.mdx index a688be9..5c581b5 100644 --- a/docs/quickstart.mdx +++ b/docs/quickstart.mdx @@ -75,10 +75,12 @@ Run Parca and access the Web UI on port 7070 **Agent** Run Parca Agent (requires privileged mode) and access the Web UI on port 7071 (assumes Parca is running as a container on the same host. Replace IP for "--remote-store-address") + +__NOTE:__ If using `podman` to manage containers as a non-root user, you may need to use `sudo` and run the container as the root user to properly access `/proc/kallsyms`. { versions => - docker run --rm -it --privileged --pid host -p 7071:7071 -v /run:/run -v /boot:/boot -v /lib/modules:/lib/modules -v /sys/kernel/debug:/sys/kernel/debug -v /sys/fs/cgroup:/sys/fs/cgroup -v /sys/fs/bpf:/sys/fs/bpf -v /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket ghcr.io/parca-dev/parca-agent:{versions.agent} /bin/parca-agent --remote-store-address=parca-container-ip:7070 --remote-store-insecure + docker run --rm -it --privileged --pid host -p 7071:7071 -v /run:/run -v /boot:/boot -v /lib/modules:/lib/modules -v /sys/kernel/debug:/sys/kernel/debug -v /sys/fs/cgroup:/sys/fs/cgroup -v /sys/fs/bpf:/sys/fs/bpf -v /var/run/dbus/system_bus_socket:/var/run/dbus/system_bus_socket ghcr.io/parca-dev/parca-agent:{versions.agent} --remote-store-address=parca-container-ip:7070 --remote-store-insecure }