Difference between revisions of "OPS335 Installation Lab draft"

From CDOT Wiki
Jump to: navigation, search
(Redirected page to OPS335 Installation Lab)
 
(16 intermediate revisions by 3 users not shown)
Line 1: Line 1:
'''DRAFT COPIED FROM SOURCE 8 JAN2016 14:00'''
+
#REDIRECT [[OPS335_Installation_Lab]]
 
 
[[Category:OPS335]][[Category:OPS335 Labs]]
 
 
 
== Objectives ==
 
 
 
This lab is basically a repeat of portions of labs that you already performed in OPS235. You are expected to be able to complete all this using your existing skills and knowledge or refer back to your OPS235 lab-book or OPS235 WIKI notes.
 
 
 
<u>'''Main Topics'''</u>
 
 
 
*Install your host machine (Centos 7)
 
*Install 3 virtual machines (VMs) (Fedora 22 - Server)
 
*Prepare for Lab Exercises / Exploration Questions
 
 
 
 
 
== Required materials ==
 
*Centos 7 Full Installation DVD.
 
*One SATA hard disk in a removable drive tray (minimum 250GB). It is strongly advised you dedicate a drive for this course only.
 
*USB drive (8 GB+) for creating and storing backups (Virtual Machines, configuration files).
 
*OPS335 Lab Log-book
 
 
 
 
 
==INVESTIGATION 1: HOST INSTALLATION==
 
 
 
=== Installation instructions for Centos 7 ===
 
# It may be advisable to obtain a <u>newer version</u> of the Centos 7 Full Installation DVD since there may be improvements since the last version from when you took OPS235.
 
# Download and burn on a DVD a copy of the Centos 7 installation DVD (64 bit edition) from the Centos web site or the Belmont server. '''Note:''' we'll be using the 64 bit version of Centos because all of our lab computers are equiped with Intel 64 bit mainboards and CPUs, and any computer you bought in the last few years for yourself will be 64bit as well.
 
#* '''Seneca's mirror of Centos:''' http://belmont.senecacollege.ca/pub/centos/7/isos/x86_64/CentOS-7-x86_64-DVD-1511.iso<br />(This is very fast, but is only accessible from within Seneca's network  - you can't access this from home. You can burn this disc on the machines in the Open Lab.)<br />
 
#* '''Centos mirror list (available from any Internet connection):''' https://www.centos.org/download/mirrors/ (version: '''7 (1511)''')<br />
 
# Insert your removable harddrive into the machine and boot from the DVD.
 
{{Admon/tip |Boot order|Some of our machines' boot order is configured to be Harddrive first, DVD second. Which means you won't be able to boot from the DVD if you already have an operating system installed on your drive.}}
 
<ol>
 
<li value=4>Customize your installation following these guidelines:
 
<ul>
 
<li>'''Turn on networking''' and use '''c7host''' as the '''hostname'''.
 
<li>Under software selection, choose '''Gnome desktop'''.
 
<li>The partition setup is similar to what you had in OPS235:
 
<ul>
 
<li>Delete any old partitions.
 
<li>Click the link to '''create partitions automatically''' (this will give a typical layout with /, /boot, /boot/efi, /home, etc).
 
<li>Free up at least 100GB of disk space by shrinking the '''/home''' partition.  Since your machine will have far fewer users and more virtual machines than a typical installation, we will need that space elsewhere.
 
<li>Create a new logical volume for '''/var/lib/libvirt/images''' and give it the space made available by shrinking /home (You will need enough space for 10 virtual machines at 8GB each plus room to compress/extract images).
 
<li>Make certain that the existing partitions have the file system type '''ext4''' (not xfs).
 
</ul>
 
</ul>
 
<li>After the installation starts you will also have the opportunity to create users.
 
<ul>
 
<li>Set the root password
 
<li>Create a '''user account''' named with '''your Seneca ID'''
 
</ul>
 
</ol>
 
 
 
=== First boot ===
 
 
 
# In the current version of CentOS the first time you boot your system a licence prompt comes up. To save you some stress, here are the keys you need to press to get past it:
 
:: '''1'''  ''ENTER''
 
:: '''2'''  ''ENTER''
 
:: '''c'''  ''ENTER''
 
:: '''c'''  ''ENTER''
 
<ol><li value="2">Log in and check that you have access to the internet. If you don't - you need to get the network interface to come up on boot. Edit '''/etc/sysconfig/network-scripts/ifcfg-eno1''' (the name of the interface may be different) and make change '''onboot''' to '''yes'''.<ul><li>You can then use the '''ifup'''/'''ifdown''' commands to reset your network configuration or you can just reboot.</li></ul></li><li>'''Disable SELinux''' or else you may run into unnecessary problems during the course. SELinux is an important technology but we won't have time to cover it in this course. To disable it edit the '''/etc/selinux/config''' file and follow the instructions inside.</li><li>Install all the security updates using the '''yum update''' command.</li></ol>
 
 
 
===Using iptables===
 
The most recent variants of Centos and Fedora are using a service called '''firewalld''' that is intended to replace '''iptables''', however the ''iptables'' service is still in relatively common usage.  In this course we will concentrate on ''iptables''.
 
<ol><li>Disable firewalld:
 
<source lang="bash">
 
systemctl disable firewalld
 
systemctl stop firewalld
 
</source>
 
</ol>
 
<ol><li value="2">Install and enable the IPTables services:
 
<source lang="bash">
 
yum install iptables-services
 
systemctl enable iptables
 
systemctl start iptables
 
</source>
 
</ol>
 
At this point you have a basic Centos system installed and updated.  This will serve as a host for the virtual machines where you will do the majority of the work in this course.  All the rest of our labs will assume you have this basic system running. If, for any reason, your system becomes corrupted during the semester, you'll have to redo this lab to be able to continue with the remaining uncompleted labs. You are responsible for YOUR system. If you do not perform back-ups you have taken this risk on yourself. Poor planning on your part does not constitute an emergency for anyone else.
 
 
 
'''Record steps, commands, and your observations in INVESTIGATION 1 in your OPS335 lab log-book'''
 
 
 
 
 
==Part B: Virtual Machine Installation ==
 
 
 
===Configuring a VM host===
 
 
 
# You will need to install some software to allow your machine to act as a host for virtual machines. We'll be using the same libvirt and virt-manager you used in OPS235. You may find it helpful to refer back to the OPS235 notes if you don't remember the commands you need for these steps.
 
#* Install the software you need
 
#* Start and enable the virtualization service
 
#* Reboot
 
# Start the graphical virtual machine manager (''virt-manager''). Do this as you regular user, don't run virt-manager from a terminal where you're logged in as root.
 
# We will be creating our own virtual network. A default virtual network has been created for you, but you will be using a <u>custom</u> one in this course.
 
#* Right click '''localhost (QEMU)''' and select '''Details'''.
 
#* Click on the '''Virtual Networks''' tab.
 
#* Stop and delete the '''default''' network.
 
#* Use the '''plus sign''' to add a new virtual network using the following options:
 
#** Name your virtual network '''ops335'''
 
#** Use the '''last two digits of your student number for the third octet of network IP address''' (for example, if your student number is 000-000-0<b>90</b>, the network address would be 192.168.<b>90</b>.0/24.
 
#** Ensure the DHCP range will allow you to assign '''at least 10 static IP addresses outside it'''.
 
#** Choose '''Forwarding to physical network''' radio button, '''Destination: Any physical device''' and '''Mode: NAT'''
 
#** Ensure the network is '''started at boot'''.
 
 
 
=== VM Installation===
 
 
 
With the virtualization software installed and your personal network created, you are now ready to create your first virtual machine. To do that you'll need the ISO file for CentOS (the same one you burned your DVD from. You should keep one somewhere on your host for the rest of this course.
 
 
 
# Create a new virtual machine named '''c7-vm1'''
 
# Use the default memory and CPU options for use with lab computers
 
# Set the disk image size set to '''8GB'''
 
# The VM will be connected to your new ops335 virtual network
 
# You don't need to modify the disk layout, in fact leave most of the installation settings at defaults. Specifically - don't install a GUI on the virtual machine, none of your VMs in this course will have a GUI.
 
# The one option you should change is your hostname - make it '''vm1.localdomain'''
 
# During installation you will be prompted to set the root password and an initial user account. For the initial user, enter the same information you entered on your host machine.
 
 
 
{{Admon/tip|First user created|For successful completion of the labs, please ensure the first user created is named using your Seneca username.}}
 
 
 
===First Boot===
 
#You will notice that the server installation defaults to a command-line interface.  This is normal, and we will only be using this interface during this course.
 
#Ensure your machine has a network connection by running the command
 
'''host cbc.ca'''
 
<ol><li value="3">If that did not work - make sure your network interface is started automatically on boot.</li></ol>
 
{{Admon/tip|Default for network config for onboot|If you've turned on your networking interface during installation - it will be turned on by default. If you've left the network interface off during the installation - it will be off by default.}}
 
<ol><li value="4">Once you have a working connection - update your machine.</li></ol>
 
  '''yum update'''
 
<ol>
 
<li value="5">Reboot the virtual machine once it is updated.</li>
 
<li>If your virtual machine hangs on boot, you will need to change a graphics option:
 
<ul>
 
<li>While the VM is off, click on '''View''' (from the menu at the top of the VM window), and select '''Details'''.</li>
 
<li>From the menu on the left side, select '''Display'''.</li>
 
<li>Change the drop-down list for Type from '''VNC''' to '''Spice''', and click apply.</li>
 
<li>Switch the view back to '''Console''' and start the machine again.</li>
 
</ul>
 
</ol>
 
 
 
===Cloning a Virtual Machine===
 
# Now that you have one virtual machine working, you will create two more.  If you struggled with the previous steps, repeat them to create two more virtual machines (naming them '''c7-vm2''' and '''c7-vm3''', with hostnames '''vm2.localdomain''' and '''vm3.localdomain''' respectively).
 
<ol>
 
<li value="2">If you are confident with what you have done so far, you may clone your existing machine to create the others by following there steps:
 
<ul>
 
<li>To quickly create additional VMs shutdown ''c7-vm1'', '''right click''' and select '''Clone...'''.</li>
 
<li>Set the Name to be: '''c7-vm2'''</li>
 
<li>Once successfully created, boot the new VM and correct the host name. This can be done using the hostnamectl command-line tool.</li>
 
<li>Record in your notes how each is done.</li>
 
<li>Use the host command to check for connectivity</li>
 
<li>After creating c7-vm2 repeat the above steps to create c7-vm3 and correct the host name.</li>
 
</ul>
 
</ol>
 
 
 
'''Record steps, commands, and your observations in Part B in your OPS335 lab log-book'''
 
 
 
== Completing the Lab ==
 
[[Image:lab1_signoff.png|thumb|right|500px|Students should be prepared with '''all required commands (system information) displayed in a terminal (or multiple terminals) prior to calling the instructor for signoff'''.]]
 
'''Arrange evidence (command output) for each of these items on your screen, then ask your instructor to review them and sign off on the lab's completion:'''
 
 
 
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Host Machine installed
 
::<span style="color:green;font-size:1.5em;">&#x2713;</span> 3 virtual machines installed
 
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Each machine (host and VM) has access to the network
 
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Lab logbook completed
 
::<span style="color:green;font-size:1.5em;">&#x2713;</span> Run a shell script to submit your lab:<br> &nbsp; &nbsp; '''Steps:'''
 
 
 
::*Issue the following command to download the bash shell script:<br>'''wget http://scs.senecacollege.ca/~andrew.smith/ops335/labcheck_install.sh'''
 
::*Run the script (don't forget to give it execute permissions):<br>
 
'''labcheck_install.sh'''
 
 
 
== Exploration questions ==
 
 
 
#What kernel release is your host system running?
 
#What kernel release are your virtual machines running?
 
#What is the UUID (Universally Unique Identifier) of your root file system? What command was used to obtain this information?
 
#What is the size and type of the /boot file system on your host?
 
#What file was edited to change the host name on your VM's?
 

Latest revision as of 14:35, 12 January 2016