Jump to content

How to setup a public IPFS gateway with Denarius Domain Resolving


Ghost
 Share

Recommended Posts

sudo apt install wget curl git build-essential 

wget https://golang.org/dl/go1.15.7.linux-amd64.tar.gz 
tar -C /usr/local -xzf go1.15.7.linux-amd64.tar.gz 
export PATH=$PATH:/usr/local/go/bin 
go version 
git clone https://github.com/carsenk/go-ipfs 
cd go-ipfs 
make build 
cp /cmd/ipfs/ipfs /usr/bin/ipfs 
ipfs init 
sudo nano /etc/systemd/system/ipfs.service

Goes inside ipfs.service ~

[Unit]

Description=IPFS Daemon

[Service]

ExecStart=/usr/bin/ipfs daemon --enable-namesys-pubsub

User=root

Restart=always

LimitNOFILE=10240

[Install]

WantedBy=multi-user.target

Then just reload and enable ipfs

sudo systemctl daemon-reload

sudo systemctl enable ipfs

sudo systemctl start ipfs

 

  • Denarius 1

Founder of BlockForums.org - PM me for any help - Join our Discord Server: https://discord.gg/UPpQy3n

100703395-b1ee6600-3360-11eb-82bc-96818c

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...