Accessing the Lab. Putty Available via links on course page Creates secure (SSH) command line session between your machine and SCS network Uses tunnelling.

Slides:



Advertisements
Similar presentations
LIS651 lecture 5 direct use of wotan Thomas Krichel
Advertisements

Customizing Putty to work with Consuls. Step 1Get Putty Go to the website –
Connecting to GMT machine via Windows 7. Windows PuTTy GMT on Mac server int-038.geosci.usyd.edu.au To use GMT, you will connect to a Mac server via PuTTy.
PlanetLab What is PlanetLab? A group of computers available as a testbed for computer networking and distributed systems research.
Jun-15 1 Management Information Systems Class Web Server Usage Instructions.
Introducing the Command Line CMSC 121 Introduction to UNIX Much of the material in these slides was taken from Dan Hood’s CMSC 121 Lecture Notes.
George Blank University Lecturer. Creating A Web Site at NJIT Professor Blank.
CGIWrap CGIWrap is a gateway program that allows general users to use CGI scripts and HTML forms without compromising the security of the http server.
File Security. Viewing Permissions ls –l Permission Values.
Chapter 10 File System Security. Security Policies security policies are doors maintain a balance between total access and total security UNIX has two.
Web Pages Publishing your page on ASUWlink. Unix Directory Commands ls –la –will show all directories and files –will show directory and file permissions.
CS 202 Computer Science II Lab Fall 2009 September 3.
Computers in Principle and Practice Servers and Operating Systems.
APACHE SERVER By Innovationframes.com »
A crash course in njit’s Afs
Learning basic Unix command IT 325 operating system.
Introduction to UNIX/Linux Exercises Dan Stanzione.
Eucalyptus Virtual Machines Running Maven, Tomcat, and Mysql.
File Systems Sources and Resources: 1. A Students Guide to UNIX, by Hahn 2. Paula Davidson’s Handout on UNIXHandout on UNIX.
Help session: Unix basics Keith 9/9/2011. Login in Unix lab  User name: ug0xx Password: ece321 (initial)  The password will not be displayed on the.
CNIT 132 Intermediate HTML and CSS Publish Web Page.
Linux environment ● Graphical interface – X-window + window manager ● Text interface – terminal + shell.
Connecting to USF Network for Web Site SSH Secure Shell is the FTP program you will use to download your http files onto the USF server. To get the SSH.
CPSC203 Introduction to Computers Lab 69 By Jie Gao.
1 INE 1020 Introduction to Internet Engineering Tutorial 3 Discussion on Homework 1.
UNIX command line. In this module you will learn: What is the computer shell What is the command line interface What is the directory tree Some UNIX commands.
Perl Web Page – Just Enough Pepper. Web site Set up the top of your script to indicate perl and plain text #!/usr/bin/perl print "Content-type:text/plain\n\n";
CPSC 203 Introduction to Computers Lab 23 By Jie Gao.
HTML Hyper Text Markup Language A simple introduction.
CPSC203 Introduction to Computers Lab 33 By Jie Gao.
Creating a Folder/Directory for Your Webpage files & folders on “frank” (MTSU’s Server) If you already have a webpage setup on “frank”, then omit Step.
PROGRAMMING PROJECT POLICIES AND UNIX INTRO Sal LaMarca CSCI 1302, Fall 2009.
My published PowerPoint presentation What is required. When it is due (by Friday noon of finals week) is the deadline. How to do it. How to publish it.
NUS.SOC.CS Roger Zimmermann Project Create a DASH-compliant (Dynamic Adaptive Streaming over HTTP) streaming system Logistics: Week 8.
CPSC 233 Run graphical Java programs remotely on Mac and Windows.
UNIX Introduction CSCE 221H Texas A&M University.
Creating a Web Site Using 000webhost.com The 000webhost.com Site You will be required to create an account in order to use their host computer 000webhost.com.
Next Unix Topics Tuesday, 2/11 & 18/2014. Change Password (by 2/14/14) ssh to account on – faclinux.cse.ohio-state.edu – stdlinux.cse.ohio-state.edu passwd.
EMT 2390L Lecture 5 Dr. Reyes Reference: The Linux Command Line, W.E. Shotts.
Nat Type Change Speed Touch and Thomson Modems. Steps Disable uPNP Static Ip on Console Putty Download Telnet Procedure.
The home page of United States Department of Justice Was hacked on August 17, 1996.
Internet FTP to network. Preliminary Steps a FTP program is used and executed such as WS_FTP LE Information needed –host name –user id –password.
Setup Environment: Instructions for CS1520 Server Setup Nils Murrugarra
CSCI 530 Lab Authorization. Review Authentication: proving the identity of someone Passwords Smart Cards DNA, fingerprint, retina, etc. Authorization:
Unix Environment Basics CSCI-1302 Lakshmish Ramaswamy.
1 Introduction to Unix. 2 What is UNIX?  UNIX is an Operating System (OS).  An operating system is a control program that helps the user communicate.
ICE UNIX TUTORIAL. File System Commands cd – change directory cd – change directory ls – list contents ls – list contents rm – remove/delete rm – remove/delete.
Your EC2 Instance. How to Connect to your EC2 Instance?
This is the software we will use to load our html page up to the server. You can download a copy for home if you want to.
CS 283Computer Networks Spring 2013 Instructor: Yuan Xue.
PuTTY Introduction to Web Programming Kirkwood Continuing Education by Fred McClurg © Copyright 2016, All Rights Reserved ssh client.
1 How to Publish Your HTML Page on the Web. Every USF Student has a website 2 Your Net ID You have a directory on the server.
University of Kansas Department of Electrical Engineering and Computer Science Dr. Susan Gauch April 21, 2005 I T T C Introduction to Web Technologies.
Making the website. Get your folders sorted first Create a new folder in “N” called “My hockey website” Create folders inside called “Documents”, “images”
Linux Workshop Session 2 By Amol and Prem. Overview of Presentation Brief Review Useful tools Remote Access Troubleshooting.
Interacting with the cluster ssh, sftp, & slurm batch scripts
GRID COMPUTING.
UNIX To do work for the class, you will be using the Unix operating system. Once connected to the system, you will be presented with a login screen. Once.
Department of Computer Engineering
Web Programming Essentials:
Example of a table. Note that I looked at an example under CIS44.
How to create and run CGI programs using the CS web server.
Lab 1 introduction, debrief
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
Crawling with Heritrix
Web Programming Essentials:
PuTTY Download Putty from:
Introduction Paul Flynn
Brinkster.
WinSCP4)..
Presentation transcript:

Accessing the Lab

Putty Available via links on course page Creates secure (SSH) command line session between your machine and SCS network Uses tunnelling

SCS Network

Configuring Putty apex.scs.carleton.ca Click ssh

Tunnels Put: 8000 Put: sigma10:8000

Authentication Should be at the top

Saving Session Type in name, Press “Save”

Launching Putty Click on saved session and press “Load”, then press “Open”

Putty Login You should now see the screen below:

Directories Home directory –Directory must have: rwx--x--x permissions Create public_html in home directory –Contains html files –Directory must have: rwx--x--x permissions Create course_html in home directory –Contains cgi scripts –Directory must have: rwx--x--x permissions Can check permissions using: –ls –la. –ls –la *

Setting permissions Use chmod command: –chmod 0711 public_html –chmod 0711 course_html –chmod (home directory) Need read access for html files: –chmod 0644 hello.html Need execute permission for cgi scripts: –chmod 755 myscript.cgi

Accessing Content Outside SCS environment: –Use –Use –Files should be in course_html directory Inside SCS environment –Use –Files should be in public_html directory