​​In this lab you’ll set up your own Hyperledger Fabric development environment and install the course software from the textbook. - Programming
Please find an attachment for Lab In this lab you’ll set up your own Hyperledger Fabric development environment and install the course software from the textbook.. When you finish this lab, you’ll have a working development environment and will be ready to start running and modifying blockchain applications. blcn532_lab01_setupdevenvironment_1_.docx Unformatted Attachment Preview BLCN532 Lab 1 Set up your development environment Introduction This course introduces students to blockchain development for enterprise environments. Before you can develop software applications, you need to ensue your development environment is in place. That means you’ll need all the tools and infrastructure installed and configured to support enterprise blockchain software development projects. In this lab you’ll set up your own Hyperledger Fabric development environment and install the course software from the textbook. When you finish this lab, you’ll have a working development environment and will be ready to start running and modifying blockchain applications. The instructions in your textbook are for Mac and Linux computers. However, there is no guarantee that your installation of MacOS or Linux is completely compatible with the environment in which the commands from the textbook work properly. For that reason, I STRONGLY SUGGEST that you acquire an Ubuntu 16.04 Virtual Machine (VM) for your labs. Using an Ubuntu 16.04 VM will make the labs far easier to complete. The instructions in this course’s labs assume that your computer runs the Windows operating system. If you run MacOS or Linux, you can get Vagrant and VirtualBox for those operating systems and follow the gist of the “Initial setup for Windows computers”. The only real difference is that you won’t have PuTTY in non-Windows operating systems. That’s OK – just use any terminal emulation software to connect to your Ubuntu VM. Lab Deliverables: To complete this lab, you must create a Lab Report file and submit the file in iLearn. The Lab Report file must be a Microsoft Word format (.docx), and have the filename with the following format: BLCN532_SECTION_STUDENTID_LASTNAME_FIRSTNAME_Lab01.docx • • • SECTION is the section number of your current course (2 digits) STUDENTID is your student ID number (with leading zeros) LASTNAME is your last name, FIRSTNAME is your first name To get started, create a Microsoft Word document (.docx) with the correct filename for this lab. You’ll be asked to enter text and paste screenshots into the lab report file. NOTE: All screenshots MUST be readable. A screenshot that I cannot read (i.e. cannot read the text you are capturing) will not count for any points. SECTION 1: Initial setup for Windows computers (Chapter 3) Step 1.1: Install Oracle Virtualbox (Windows, Linux, MacOS) Oracle Virtualbox is an open source virtualization environment that allows you to run multiple virtual machines and containers on a single personal computer. Virtualbox is free and it is easy to install. In your favorite web browser, navigate to: https://www.virtualbox.org/ and click the “Download Virtualbox” button. Click the “Windows hosts” link to download the main installation executable. You should also click the “All supported platforms” under the “Extension Pack” heading to download extra software support for devices. After you download the two files, double click each one to run the install procedure. Step 1.2: Install Vagrant (Windows, Linux, MacOS) Vagrant is a free virtual environment management utility. It makes the process of starting, stopping, and managing virtual machines easier. In your web browser, navigate to https://www.vagrantup.com/ then click the “Download” button, and click the version of the Windows executable you’d like to install. (Most of you should select the “64-bit” version.) Once you download the install program, double-click the file you just downloaded to install Vagrant. If you want more information on Vagrant and tips on getting the most out of the software, navigate to: https://www.sitepoint.com/getting-started-vagrant-windows/ . Step 1.3: Install PuTTY (Windows only) Later in this lab you’ll launch several Linux virtual machines. These VMs won’t have a graphical user interface, so you’ll need a way to log in and use the VM’s command line. You’ll use a terminal emulator program, called PuTTY to do that. PuTTY is a free and is one of the most popular terminal emulator programs. To download and install PuTTY, navigate to https://www.chiark.greenend.org.uk/~sgtatham/putty/, then download and install the PuTTY program. Step 1.4: Set up your Vagrant project After installing all the pre-requisite pieces, you need to set up your Vagrant project. A Vagrant project defines your virtual machine environment and helps you organize your collection of VMs into a group that is easy to manage. We’ll use the Windows PowerShell as our Windows command prompt environment. PowerShell is a very powerful command line interface that is available on all Windows computers. To launch PowerShell, click the Windows key, type PowerShell, then click the Windows PowerShell menu entry. The figure below shows a portion of the Windows PowerShell command prompt window. Note that PowerShell uses your user’s home directory as its starting directory. In my case, C:\Users\micha is my home directory. For the rest of the lab, I’ll refer to this a \%HOME\%. Your \%HOME\% directory will be different. 1.4.1: Remove existing Vagrant projects Follow these steps ONLY if you already have a previous Vagrant project you want to remove: (Assume the project you want to remove is located in the \%HOME\%\vagrant\Hyperledger directory.) If you DO NOT have an existing Vagrant project that you need to remove, skip to the next paragraph. 1. PS \%HOME\%\vagrant\Hyperledger> vagrant global-status Note the id of the listed VM(s). You’ll use this id in the next command, in place of xxxxxxx. 2. PS \%HOME\%\vagrant\\Hyperledger> vagrant destroy xxxxxxx 3. PS \%HOME\%\vagrant\\Hyperledger> vagrant box remove ubuntu/xenial64 1.4.2: Create a new Vagrant project for Hyperledger Launch PowerShell and enter the following commands: (Don’t type ‘PS \%HOME\%>’, that’s just the PowerShell prompt. Just type the characters in bold.) 1. 2. 3. 4. 5. PS \%HOME\%> mkdir vagrant PS \%HOME\%> cd vagrant PS \%HOME\%\vagrant> mkdir Hyperledger PS \%HOME\%\vagrant> cd Hyperledger PS \%HOME\%\vagrant\Hyperledger> vagrant init ubuntu/xenial64 6. PS \%HOME\%\vagrant\Hyperledger> vagrant up NOTE: To stop your VM, exit from PuTTY shell, then type vagrant halt in PowerShell 1.4.3: Set up PuTTY SSH connection Now that you have a working VM, you need to set up PuTTY to be able to easily log into your VM. That’s how you’ll access your VM’s command line to enter commands for the rest of the class. In this lab step you’ll set up PuTTY to allow you to login using a private key, instead of having to enter a userid and password every time you connect. You’ll use a PuTTY utility, PuTTYGen, to generate your public/private key pair, and then load your key into PuTTY’s configuration. 1. 2. 3. 4. Ensure that your VM is started (PS \%HOME\%\vagrant\Hyperledger> vagrant up) PS \%HOME\%\vagrant\Hyperledger> vagrant ssh-config Launch PuTTYGen (type puttygen at the PowerShell prompt) Click Load, then navigate to \%HOME\%\vagrant\hyperledger\.vagrant\machines\default\virtualbox\private_key Make sure to select All Files (*.*) to the right of the filename input 5. Select OK -> Save Private Key -> Yes -> private_key_putty -> Save -> File -> Exit 6. Launch PuTTY 7. Type the following information, then click Save: Host Name (or IP address): Port: 127.0.0.1 2222 Saved Sessions: Vagrant Hyperledger 8. Click Connection -> SSH -> Auth -> Browse -> \%HOME\%\vagrant\hyperledger\.vagrant\machines\default\virtualbox\private_key_putty 9. Click Connection -> Data -> Auto-login username: vagrant 10. Open connection You should see a command prompt like this: (I’ve changed my font and colors, so yours will look appear different, but the contents should be the same.) Section 2: Install Pre-requisites (Chapter 3) Once you have an operating Linux VM, you can start to install the Hyperledger Fabric pre-requisites. In this section you’ll install all the software and configuration pieces necessary to run the class enterprise blockchain application in Hyperledger Fabric. Step 2.1: Install pre-reqs 2.1.1: Install dev tools You type all the following commands in your Linux VM (at the command prompt using PuTTY.) 1. $ sudo apt-get update 2. $ sudo apt-get install make 3. $ sudo apt-get install libltdl-dev 2.1.2: Install Docker-CE You can find complete Docker-CE instructions/docs at: https://docs.docker.com/install/linux/dockerce/ubuntu/ 1. $ sudo apt-get remove docker docker-engine docker.io containerd runc 2. $ sudo apt-get install apt-transport-https ca-certificates curl gnupg-agent software-propertiescommon Make sure that you enter the line above as ONE LINE in Linux (copy-paste will not work here) 3. $ curl -fsSL https://download.docker.com/linux/ubuntu/gpg | sudo apt-key add 4. $ sudo add-apt-repository deb [arch=amd64] https://download.docker.com/linux/ubuntu $(lsb_release -cs) stable Make sure that you enter the line above as ONE LINE in Linux (copy-paste will not work here) 5. $ sudo apt-get update 6. $ sudo apt-get install docker-ce docker-ce-cli containerd.io 2.1.3: Install Docker compose 1. $ sudo curl -L https://github.com/docker/compose/releases/download/1.23.2/dockercompose-$(uname -s)-$(uname -m) -o /usr/local/bin/docker-compose 2. $ sudo chmod +x /usr/local/bin/docker-compose 3. $ docker-compose version 4. Create a screenshot of the results of steps 1, 2, and 3, and paste that screenshot into your Lab Report File. 2.1.4: Install business network pre-reqs 1. 2. 3. 4. $ curl -O https://hyperledger.github.io/composer/latest/prereqs-ubuntu.sh $ chmod u+x prereqs-ubuntu.sh $ ./prereqs-ubuntu.sh Create a screenshot of the results of steps 1, 2, and 3, and paste that screenshot into your Lab Report File. >>> Logout and log back in after completing the previous step 2.1.5: Install GO language The next step is to install the GO programming language. You’ll use GO to write and modify source code files for the class blockchain application. 1. 2. 3. 4. 5. $ sudo apt-get update $ wget https://dl.google.com/go/go1.12.1.linux-amd64.tar.gz $ tar xvf go1.12.1.linux-amd64.tar.gz $ nano ~/.profile In the nano editor, add the following 2 lines after the last line in the file: export GOPATH=$HOME/go export PATH=$PATH:$GOPATH/bin 6. 7. 8. 9. Save your file and exit nano $ source .profile $ go version Create a screenshot of the results of steps 1-8, and paste that screenshot into your Lab Report File. Step 2.2: Install source code and set up business network In this step you’ll download and install the class application source code and set up the class business network. 2.2.1: Forking and Cloning the trade-finance-logistics repository 1. In a browser (in Windows) go to: https://github.com/HyperledgerHandsOn/trade-financelogistics 2. Sign up or log in 3. Click Fork You type all the following commands in your Linux VM (at the command prompt using PuTTY.) 4. 5. 6. 7. 8. 9. 10. 11. 12. 13. 14. 15. 16. $ cd $GOPATH/src $ git clone https://github.com/YOUR_GIT_ID/trade-finance-logistics.git $ cd $GOPATH/src $ mkdir -p github.com/hyperledger $ cd github.com/hyperledger $ git clone https://github.com/hyperledger/fabric.git -b release-1.1 $ cd fabric $ make docker $ make configtxgen cryptogen $ git clone https://github.com/hyperledger/fabric-ca.git $ cd fabric-ca $ make docker Create a screenshot of the results of steps 1-15, and paste that screenshot into your Lab Report File. 2.2.2: Generate network cryptographic material 1. $ cd $GOPATH/src/trade-finance-logistics/network 2. $ nano ~/.profile change last line to this (all on 1 line, not 2): export PATH=$PATH:$GOPATH/bin:$GOPATH/src/github.com/hyperledger/fabric/build/bin:$GOPATH/ src/github.com/hyperledger/fabric/build/docker/bin 3. 4. 5. 6. Save file and exit nano $ source ~/.profile $ cryptogen generate --config=./crypto-config.yaml Create a screenshot of the results of steps 1-5, and paste that screenshot into your Lab Report File. 2.2.3: Generate channel artifacts 1. 2. 3. 4. 5. 6. 7. 8. 9. $ cd $GOPATH/src/trade-finance-logistics/network Execute the follow commands OR run the trade.sh script (AFTER step 9) $ mkdir -p channel-artifacts $ configtxgen -profile FourOrgsTradeOrdererGenesis -outputBlock ./channelartifacts/genesis.block $ configtxgen -profile FourOrgsTradeChannel -outputCreateChannelTx ./channelartifacts/channel.tx -channelID tradechannel $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channelartifacts/ExporterOrgMSPanchors.tx -channelID tradechannel -asOrg ExporterOrgMSP $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channelartifacts/ImporterOrgMSPanchors.tx -channelID tradechannel -asOrg ImporterOrgMSP $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channelartifacts/CarrierOrgMSPanchors.tx -channelID tradechannel -asOrg CarrierOrgMSP $ configtxgen -profile FourOrgsTradeChannel -outputAnchorPeersUpdate ./channelartifacts/RegulatorOrgMSPanchors.tx -channelID tradechannel -asOrg RegulatorOrgMSP OR (Instead of typing the commands above, the author provides a script to do it all) 1. $ ./trade.sh generate -c tradechannel Troubleshooting help: • If you encounter problems with your blockchain network in this lab or future labs, the ./trade.sh script may help you resolve them. If you are getting errors when trying to launch or interact with your network, try these commands at the Ubuntu command prompt: o ./trade.sh down # If your network is up and running o ./trade.sh clean o ./trade.sh generate -c tradechannel o ./trade.sh up 2.2.4: Launch the sample trade network There are two ways to launch the sample trade network, using the docker-compose command directly, or by using the author-supplied trade.sh shell script. We’ll use the shell script in most of our activities. 1. $ cd $GOPATH/src/trade-finance-logistics/network 2. $ ./trade.sh up 3. Create a screenshot of the results of steps 1 and 2, and paste that screenshot into your Lab Report File. Step 2.3: Verifying your business network The last step in this lab is to verify that your business network is up and running. 1. Open a new PuTTY session for your Vagrant Hyperledger VM. (Right-click on the PuTTY icon in the task bar and click PuTTY.) 2. Enter the following command: 3. $ docker ps -a 4. Create a screenshot of the results of step 3 and paste that screenshot into your Lab Report File. 5. The first column in the previous output is the “container-ID”. Find the container-ID for the orderer process, and use it for the following command: (Don’t type the “<” or “>” characters) 6. $ docker logs 7. Create a screenshot of the results of step 6 and paste that screenshot into your Lab Report File. Section 3: Wrapping up Once you have your network up and running, the only step to complete is to learn how to properly shutdown your business network. 1. 2. 3. 4. 5. 7. 8. Shut down the business network in Linux: $ ./trade.sh down Exit from your Linux session $ exit In Windows PowerShell, shut down your Hyperledger virtual machine: PS \%HOME\%\vagrant\Hyperledger> vagrant halt Create a snapshot of your Ubuntu VM in VirtualBox. This allows you to easily restore to this point if you ever need to “undo” subsequent steps and return to a known point. You should have 8 screenshots in your Lab Report File. Save your file and submit it in iLearn as a file attachment for the Lab 1 assignment. Congratulations! You have complete lab 1. ... Purchase answer to see full attachment
CATEGORIES
Economics Nursing Applied Sciences Psychology Science Management Computer Science Human Resource Management Accounting Information Systems English Anatomy Operations Management Sociology Literature Education Business & Finance Marketing Engineering Statistics Biology Political Science Reading History Financial markets Philosophy Mathematics Law Criminal Architecture and Design Government Social Science World history Chemistry Humanities Business Finance Writing Programming Telecommunications Engineering Geography Physics Spanish ach e. Embedded Entrepreneurship f. Three Social Entrepreneurship Models g. Social-Founder Identity h. Micros-enterprise Development Outcomes Subset 2. Indigenous Entrepreneurship Approaches (Outside of Canada) a. Indigenous Australian Entrepreneurs Exami Calculus (people influence of  others) processes that you perceived occurs in this specific Institution Select one of the forms of stratification highlighted (focus on inter the intersectionalities  of these three) to reflect and analyze the potential ways these ( American history Pharmacology Ancient history . Also Numerical analysis Environmental science Electrical Engineering Precalculus Physiology Civil Engineering Electronic Engineering ness Horizons Algebra Geology Physical chemistry nt When considering both O lassrooms Civil Probability ions Identify a specific consumer product that you or your family have used for quite some time. This might be a branded smartphone (if you have used several versions over the years) or the court to consider in its deliberations. Locard’s exchange principle argues that during the commission of a crime Chemical Engineering Ecology aragraphs (meaning 25 sentences or more). Your assignment may be more than 5 paragraphs but not less. INSTRUCTIONS:  To access the FNU Online Library for journals and articles you can go the FNU library link here:  https://www.fnu.edu/library/ In order to n that draws upon the theoretical reading to explain and contextualize the design choices. Be sure to directly quote or paraphrase the reading ce to the vaccine. Your campaign must educate and inform the audience on the benefits but also create for safe and open dialogue. A key metric of your campaign will be the direct increase in numbers.  Key outcomes: The approach that you take must be clear Mechanical Engineering Organic chemistry Geometry nment Topic You will need to pick one topic for your project (5 pts) Literature search You will need to perform a literature search for your topic Geophysics you been involved with a company doing a redesign of business processes Communication on Customer Relations. Discuss how two-way communication on social media channels impacts businesses both positively and negatively. Provide any personal examples from your experience od pressure and hypertension via a community-wide intervention that targets the problem across the lifespan (i.e. includes all ages). Develop a community-wide intervention to reduce elevated blood pressure and hypertension in the State of Alabama that in in body of the report Conclusions References (8 References Minimum) *** Words count = 2000 words. *** In-Text Citations and References using Harvard style. *** In Task section I’ve chose (Economic issues in overseas contracting)" Electromagnetism w or quality improvement; it was just all part of good nursing care.  The goal for quality improvement is to monitor patient outcomes using statistics for comparison to standards of care for different diseases e a 1 to 2 slide Microsoft PowerPoint presentation on the different models of case management.  Include speaker notes... .....Describe three different models of case management. visual representations of information. They can include numbers SSAY ame workbook for all 3 milestones. You do not need to download a new copy for Milestones 2 or 3. When you submit Milestone 3 pages): Provide a description of an existing intervention in Canada making the appropriate buying decisions in an ethical and professional manner. Topic: Purchasing and Technology You read about blockchain ledger technology. Now do some additional research out on the Internet and share your URL with the rest of the class be aware of which features their competitors are opting to include so the product development teams can design similar or enhanced features to attract more of the market. The more unique low (The Top Health Industry Trends to Watch in 2015) to assist you with this discussion.         https://youtu.be/fRym_jyuBc0 Next year the $2.8 trillion U.S. healthcare industry will   finally begin to look and feel more like the rest of the business wo evidence-based primary care curriculum. Throughout your nurse practitioner program Vignette Understanding Gender Fluidity Providing Inclusive Quality Care Affirming Clinical Encounters Conclusion References Nurse Practitioner Knowledge Mechanics and word limit is unit as a guide only. The assessment may be re-attempted on two further occasions (maximum three attempts in total). All assessments must be resubmitted 3 days within receiving your unsatisfactory grade. You must clearly indicate “Re-su Trigonometry Article writing Other 5. June 29 After the components sending to the manufacturing house 1. In 1972 the Furman v. Georgia case resulted in a decision that would put action into motion. Furman was originally sentenced to death because of a murder he committed in Georgia but the court debated whether or not this was a violation of his 8th amend One of the first conflicts that would need to be investigated would be whether the human service professional followed the responsibility to client ethical standard.  While developing a relationship with client it is important to clarify that if danger or Ethical behavior is a critical topic in the workplace because the impact of it can make or break a business No matter which type of health care organization With a direct sale During the pandemic Computers are being used to monitor the spread of outbreaks in different areas of the world and with this record 3. Furman v. Georgia is a U.S Supreme Court case that resolves around the Eighth Amendments ban on cruel and unsual punishment in death penalty cases. The Furman v. Georgia case was based on Furman being convicted of murder in Georgia. Furman was caught i One major ethical conflict that may arise in my investigation is the Responsibility to Client in both Standard 3 and Standard 4 of the Ethical Standards for Human Service Professionals (2015).  Making sure we do not disclose information without consent ev 4. Identify two examples of real world problems that you have observed in your personal Summary & Evaluation: Reference & 188. Academic Search Ultimate Ethics We can mention at least one example of how the violation of ethical standards can be prevented. Many organizations promote ethical self-regulation by creating moral codes to help direct their business activities *DDB is used for the first three years For example The inbound logistics for William Instrument refer to purchase components from various electronic firms. During the purchase process William need to consider the quality and price of the components. In this case 4. A U.S. Supreme Court case known as Furman v. Georgia (1972) is a landmark case that involved Eighth Amendment’s ban of unusual and cruel punishment in death penalty cases (Furman v. Georgia (1972) With covid coming into place In my opinion with Not necessarily all home buyers are the same! When you choose to work with we buy ugly houses Baltimore & nationwide USA The ability to view ourselves from an unbiased perspective allows us to critically assess our personal strengths and weaknesses. This is an important step in the process of finding the right resources for our personal learning style. Ego and pride can be · By Day 1 of this week While you must form your answers to the questions below from our assigned reading material CliftonLarsonAllen LLP (2013) 5 The family dynamic is awkward at first since the most outgoing and straight forward person in the family in Linda Urien The most important benefit of my statistical analysis would be the accuracy with which I interpret the data. The greatest obstacle From a similar but larger point of view 4 In order to get the entire family to come back for another session I would suggest coming in on a day the restaurant is not open When seeking to identify a patient’s health condition After viewing the you tube videos on prayer Your paper must be at least two pages in length (not counting the title and reference pages) The word assimilate is negative to me. I believe everyone should learn about a country that they are going to live in. It doesnt mean that they have to believe that everything in America is better than where they came from. It means that they care enough Data collection Single Subject Chris is a social worker in a geriatric case management program located in a midsize Northeastern town. She has an MSW and is part of a team of case managers that likes to continuously improve on its practice. The team is currently using an I would start off with Linda on repeating her options for the child and going over what she is feeling with each option.  I would want to find out what she is afraid of.  I would avoid asking her any “why” questions because I want her to be in the here an Summarize the advantages and disadvantages of using an Internet site as means of collecting data for psychological research (Comp 2.1) 25.0\% Summarization of the advantages and disadvantages of using an Internet site as means of collecting data for psych Identify the type of research used in a chosen study Compose a 1 Optics effect relationship becomes more difficult—as the researcher cannot enact total control of another person even in an experimental environment. Social workers serve clients in highly complex real-world environments. Clients often implement recommended inte I think knowing more about you will allow you to be able to choose the right resources Be 4 pages in length soft MB-920 dumps review and documentation and high-quality listing pdf MB-920 braindumps also recommended and approved by Microsoft experts. The practical test g One thing you will need to do in college is learn how to find and use references. References support your ideas. College-level work must be supported by research. You are expected to do that for this paper. You will research Elaborate on any potential confounds or ethical concerns while participating in the psychological study 20.0\% Elaboration on any potential confounds or ethical concerns while participating in the psychological study is missing. Elaboration on any potenti 3 The first thing I would do in the family’s first session is develop a genogram of the family to get an idea of all the individuals who play a major role in Linda’s life. After establishing where each member is in relation to the family A Health in All Policies approach Note: The requirements outlined below correspond to the grading criteria in the scoring guide. At a minimum Chen Read Connecting Communities and Complexity: A Case Study in Creating the Conditions for Transformational Change Read Reflections on Cultural Humility Read A Basic Guide to ABCD Community Organizing Use the bolded black section and sub-section titles below to organize your paper. For each section Losinski forwarded the article on a priority basis to Mary Scott Losinksi wanted details on use of the ED at CGH. He asked the administrative resident