From fc3ee0e9cb746bdd001fcb148ec88b9047a71d67 Mon Sep 17 00:00:00 2001 From: "Alexey A. Leonov" Date: Fri, 20 Sep 2024 10:52:55 +0700 Subject: [PATCH] added warning to apply execution permissions for `bin` subfolder (#436) https://forum.storj.io/t/storagenode-docker-update-changes-to-binaries-location-for-persistence-between-restarts/27937 --- .../cli/storage-node/page.md | 20 +++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/app/(docs)/node/get-started/install-node-software/cli/storage-node/page.md b/app/(docs)/node/get-started/install-node-software/cli/storage-node/page.md index 5949cfbb8..39725e854 100644 --- a/app/(docs)/node/get-started/install-node-software/cli/storage-node/page.md +++ b/app/(docs)/node/get-started/install-node-software/cli/storage-node/page.md @@ -37,6 +37,16 @@ The writeability and readability checks are performed on the storage location, n **Linux Users:** You **must** static mount via /etc/fstab. Failure to do so will put you in high risk of failing audits and getting disqualified. Here's how to do that: [](docId:nZeFxmawYPdgkwUPy6f9s) {% /callout %} +{% callout type="info" %} +You need to allow an execution for the `bin` subfolder in your storage location +Replace the `` with your parameter. + +```shell +mkdir -p /bin +chmod +x /bin +``` +{% /callout %} + 1. Copy the command into a plain text editor like a `nano`: ```shell @@ -51,6 +61,16 @@ docker run --rm -e SETUP="true" \ {% tab label="macOS" %} +{% callout type="info" %} +You need to allow an execution for the `bin` subfolder in your storage location. +Replace the `` with your parameter. + +```shell +mkdir -p /bin +chmod +x /bin +``` +{% /callout %} + 1. Copy the command into a plain text editor (do not use any word processors include Notes): ```shell