Tezosノードをセットアップしてalphanet.shを実行するときにMacでパーミッション拒否エラーを解決する方法
-
-
mainnetまたはalphanetを実行しようとしていますか?Are you trying to run mainnet or alphanet ?
- 1
- 2019-02-23
- Ezy
-
alphanet.shの現在の権限は何ですか?更新後にchmod + xを実行しましたか?What is the permissions of alphanet.sh now ? Did you chmod +x after the update ?
- 1
- 2019-02-23
- Ezy
-
スクリプトの更新後に `chmod + x alphanet.sh`を実行する必要があります.スクリプトを上書きすると、実行可能権限が失われます.ちなみに、興味深いことに、 `alphanet.sh`と`mainnet.sh`は同じファイルであり、コードはファイルの名前を読み取って異なることを行います.you need to do `chmod +x alphanet.sh` after the script was updated, it lost its executable permission when overwrittened. By the way, interestingly, `alphanet.sh` and `mainnet.sh` are the same file, the code reads what the name of the file to do different things.
- 1
- 2019-02-23
- Frank
-
@Frankに感謝します.更新後にchmodを再度実行します.Thanks @Frank, running chmod again after the update
- 1
- 2019-02-23
- user435
-
@フランクちょっとフランクこれは正しい答えなので、答えとしてこれを投稿していただけますか?Tx!@Frank hey Frank can you please post this as answer since this is the right answer ? Tx!
- 2
- 2019-02-23
- Ezy
-
1 回答
- 投票
-
- 2019-02-23
スクリプトが
chmod +x alphanet.sh
から更新された後、.alphanet.sh update_script
を再度実行する必要があります.基本的に、ファイルは上書きされた後、実行可能権限を失いました(まったく新しいファイルであるためです!).ちなみに、興味深いことに、alphanet.sh
とmainnet.sh
は同じファイルであり、スクリプトはファイルの名前を読み取って、別のファイルを取得するなど、別のことを行います.Dockerコンテナ.You'll need to do
chmod +x alphanet.sh
again after the script was updated from.alphanet.sh update_script
. Basically, the file lost its executable permission after being overwrittened (since it's a whole new file!). By the way, interestingly,alphanet.sh
andmainnet.sh
are the same file, the script reads what the name of the file to do different things such as grabbing a different docker containers.
MacOSでTezosノードを起動しようとしています.
作成したTezosディレクトリで次の項目を順番に実行しました:
次の出力が得られました:
だから私は走った:
そして得た:
元のURLでcurlを試し、startを実行しましたが、権限が拒否されました.