デーモンサービスで IPFS リポジトリの場所を変更する

デーモンサービスで IPFS リポジトリの場所を変更する

私は、プライベート IPFS ネットワークの一部として、IPFS デーモンを維持するサービスを作成しようとしています。

IPFS をすべてのユーザーが簡単に利用できるようにするために、IPFS リポジトリを /opt フォルダーに初期化することにしました。/etc/bash.bashrcすべてのユーザーのデフォルトの場所がこの /opt フォルダーになるように IPFS_PATH を設定しました。

18:53:02 [foo@server ~]
$ echo $IPFS_PATH
/opt/ipfsNode/.ipfs

これが完了すると、IPFS リポジトリが正常に初期化され、期待どおりにデーモンを起動できるようになりました。

$ ipfs daemon
Initializing daemon...
go-ipfs version: 0.12.2
Repo version: 12
System version: amd64/linux
Golang version: go1.16.15
Swarm is limited to private network of peers with the swarm key
Swarm key fingerprint: [redacted]
Swarm listening on /ip4/<ip>/tcp/4001
Swarm listening on /ip4/127.0.0.1/tcp/4001
Swarm listening on /ip6/::1/tcp/4001
Swarm listening on /p2p-circuit
Swarm announcing /ip4/<ip>/tcp/4001
Swarm announcing /ip4/127.0.0.1/tcp/4001
Swarm announcing /ip6/::1/tcp/4001
API server listening on /ip4/<ip>/tcp/5001
WebUI: http://<ip>:5001/webui
Gateway (readonly) server listening on /ip4/<ip>/tcp/8080
Daemon is ready

これをサービスに移行するために、私は/etc/systemd/system/ipfs.serviceの例を使用して、でこのサービス定義を作成しました。エレックスラボ:

[Unit]
 Description=IPFS Daemon
 After=syslog.target network.target remote-fs.target nss-lookup.target
 [Service]
 Type=simple
 ExecStart=/usr/local/bin/ipfs daemon --enable-namesys-pubsub
 User=foo
 [Install]
 WantedBy=multi-user.target

~/.ipfsただし、サービスが開始されたときではなく、ホーム ディレクトリの上に初期化されたリポジトリを使用しようとしているようです${IPFS_PATH}/.ipfs。これを変更して、すでに初期化したリポジトリを見つけるにはどうすればよいですか?

● ipfs.service - IPFS Daemon
     Loaded: loaded (/etc/systemd/system/ipfs.service; enabled; vendor preset: enabled)
     Active: failed (Result: exit-code) since Wed 2022-06-01 18:43:03 UTC; 17min ago
    Process: 227966 ExecStart=/usr/local/bin/ipfs daemon --enable-namesys-pubsub (code=exited, status=1/FAILURE)
   Main PID: 227966 (code=exited, status=1/FAILURE)

Jun 01 18:43:03 <server> systemd[1]: Started IPFS Daemon.
Jun 01 18:43:03 <server> ipfs[227966]: Initializing daemon...
Jun 01 18:43:03 <server> ipfs[227966]: go-ipfs version: 0.12.2
Jun 01 18:43:03 <server> ipfs[227966]: Repo version: 12
Jun 01 18:43:03 <server> ipfs[227966]: System version: amd64/linux
Jun 01 18:43:03 <server> ipfs[227966]: Golang version: go1.16.15
Jun 01 18:43:03 <server> ipfs[227966]: Error: no IPFS repo found in /home/foo/.ipfs.
Jun 01 18:43:03 <server> ipfs[227966]: please run: 'ipfs init'
Jun 01 18:43:03 <server> systemd[1]: ipfs.service: Main process exited, code=exited, status=1/FAILURE
Jun 01 18:43:03 <server> systemd[1]: ipfs.service: Failed with result 'exit-code'.

答え1

[サービス]の下にこの行を追加してみてください

Environment="IPFS_PATH=/path/to/ipfs"

関連情報