Learn about Ethereum blockchain development
If you are new to the blockchain technology, taking our Introduction to Blockchain Technology self-paced course is highly recommended. Also, for a comprehensive coverage of blockchain development in Ethereum or mastering Solidity programming, taking our below self paced courses is highly recommended:
In our previous article (How Ethereum IPFS Storage Works), we discussed Ethereum IPFS distributed storage.
In this article, we learn how to install and start Ethereum IPFS storage.
To start using IPFS, we need to install it. We will use a Unix environment for our IPFS example. The tools will allow us to upload and view the content on the IPFS network:
1. First, we will install go. Afterward, we get the latest security updates. Then, we will extract the files after downloading them. Finally, we will move the package to the /usr/local directory:
apt-get update
apt-get install build-essential
wget https://dl.google.com/go/go1.12.6.linux-amd64.tar.gz sudo tar -xvf go1.12.6.linux-amd64.tar.gz
sudo mv go /usr/local
2. For IPFS to work properly, we need to set up the Go software environment variables. Create a file called /etc/profile.d/go.sh. Add the following Go software environment variables to the file:
#/bin/bash
export GOROOT=/usr/local/go export GOPATH=$GOROOT/work
export PATH=$PATH:$GOROOT/bin:$GOPATH/bin3. Reboot Ubuntu using the following command and verify whether go has installed successfully:
reboot
go version
You should see the go version output in the console.
4. To install ipfs, you may need to log in as an admin user by running sudo -i. Then, run the following command to install IPFS:
go get -u -d github.com/ipfs/go-ipfs cd $GOPATH/src/github.com/ipfs/go-ipfs make install
Here is a screenshot that shows the output of the preceding command:
Once IPFS has been successfully installed, the output will show the version of go-ipfs- blockstore. In our installation, this is v0.0.1.
Once installed successfully, enter the ipfs init command to start your IPFS node. You will see your IPFS node ID:
Run the following command and the welcome page will be displayed:
ipfs cat /ipfs/<nodeID>, the IPFS
This is what the welcome page will look like:
We now have the initial IPFS node. To start the IPFS service, run the following command:
ipfs daemon
Here is the result of the preceding command:
ipfs swarm peers
Here is the resulting screen:
We have installed IPFS in our machine. Next, we will run a simple example so that you can see how we can use IPFS.
Next Article
In our next article (How to Run Ethereum IPFS Storage), we discuss how to run Ethereum IPFS storage.
This article is written in collaboration with Brian Wu who is a leading author of “Learn Ethereum: Build your own decentralized applications with Ethereum and smart contracts” book. He has written 7 books on blockchain development.
Here is the list of our free webinars that are highly recommended:
Here is the list of our 10 free self-paced courses that are highly recommended:
If you like to learn more about Hyperledger Fabric, Hyperledger Sawtooth, Ethereum or Corda, taking the following self-paced classes is highly recommended:
If you want to master Hyperledger Fabric, Ethereum or Corda, taking the following live classes is highly recommended:
If you like to learn more about blockchain technology and how it works, reading the following articles is highly recommended:
If you like to learn more about blockchain development in Ethereum with Solidity, reading the following articles and tutorials is highly recommended:
If you like to learn more about blockchain development with Hyperledger, reading the following articles and tutorials is highly recommended:
If you like to learn more about blockchain development on Corda , reading the following articles and tutorials is highly recommended:
If you like to learn more about blockchain development in other platforms, reading the following articles and tutorials is highly recommended:
We offer private custom tutoring classes both online and in DC, MD and VA for almost all of our courses or bootcamps. Give us a call or email us to discuss your needs.
$90 Regular
$50 Limited Offer
REGISTER NOW