Remote hosts and web servers

Slides:



Advertisements
Similar presentations
PHP SQL. Connection code:- mysql_connect("server", "username", "password"); Connect to the Database Server with the authorised user and password. Eg $connect.
Advertisements

CPSC 203 Introduction to Computers Tutorial 59 & 64 By Jie (Jeff) Gao.
OpenNebula VM ICOM5016 DATABASE SYSTEMS PROFESSOR: DR. AMIR CHINAEI PREPARED BY: PAUL BARTUS.
CIS 240 Introduction to UNIX Instructor: Sue Sampson.
雲端計算 Cloud Computing Lab - EyeOS. Agenda Installation Programming.
INTRANET SECURITY Catherine Alexis CMPT 585 Computer and Data Security Dr Stefan Robila.
Ubuntu Workstations Western Oregon University CS\IS Jesse Greene
Intro to Computer Networks DNS (Domain Name System) Bob Bradley The University of Tennessee at Martin.
How to use Clickview for your school digital video needsClickview.
Remote Accessing Your Home Computer Using VNC and a Dynamic DNS Name.
A crash course in njit’s Afs
Using BioSlax and the BioSlax Server Tin Wee Tan National University of Singapore.
Accessing the Internet with Anonymous FTP Transferring Files from Remote Computers.
Raspberry Pi Training Truman College Goals of our Training Today Unbox and boot up the Raspberry Pi (RPi) Learn how to access the desktop graphical.
V Avon High School Tech Crew Agenda Old Business –Delete Files New Business –Week 10 Topics: Coming up: –Yearbook Picture: Feb 7 12:20PM.
1 Network Statistic and Monitoring System Wayne State University Division of Computing and Information Technology Information Technology.
Virtual Private Networking Allows any internet enabled computer to connect to STI network. Runs at your local connection speed. Must have username and.
N ETWORKED & D ISTRIBUTED COMPUTING S YSTEMS L AB Programming Assignments EE323 Computer Networks.
Hands-On Virtual Computing
Week 1 – Seneca Networking Environment. Agenda Overview of Seneca Server names How to access servers Terminal Emulation (Putty) Browser – IE, Netscape,
System Administration and Basic Functionality Version 4.0 – September 2007 Q-Advisor Quick Start.
Otasuke GP-EX! Chapter 11 GP-Viewer EX
Linux in a Virtual Environment Nagarajan Prabakar School of Computing and Information Sciences Florida International University.
Copyright (c) by CNAPTICS Corporation. All rights reserved.1 INFO Oracle Database 11g: Administration II Presented By: Marc S. Paller,
Client – Server Application Can you create a client server application: The server will be running as a service: does not have a GUI The server will run.
Chapter Two Exploring the UNIX File System and File Security.
Present :Arezoo Mollahasani. Step 1  Define your server connection Open MySQL WorkBench and click New Server Instance on the right of the window.
Engineering on Display: Back-End Development for Sensor Instrumentation Systems Student: Brian J Kapala Supervisor: Dr. Cavalcanti.
Lesson 1-Logging On to the System. Overview Importance of UNIX/Linux. Logging on to the system.
A Brief Documentation.  Provides basic information about connection, server, and client.
Upload Project to Courseweb By C. Candace Chou Feb. 3, 2011.
General rules 1. Rule: 2. Rule: 3. Rule: 10. Rule: Ask questions ……………………. 11. Rule: I do not know your skill. If I tell you things you know, please stop.
Experiment Management System CSE 423 Aaron Kloc Jordan Harstad Robert Sorensen Robert Trevino Nicolas Tjioe Status Report Presentation Industry Mentor:
NETWORKING BASICS.
RT-LAB Electrical Applications 1 Opal-RT Technologies Use of the “Store Embedded” mode Solution RT-LAB for PC-104.
Newsgroup World Wide Web (WWW) Conservation Over the Internet e.g.ICQ File Transfer Protocol (FTP) Includes 6 main services: Electronic Mail Remote.
Site Home Web Server USB Your House Copy Full address of local site including drive letter Works for Content Modifications Only Not Relationship Structure.
SQOOP INSTALLATION GUIDE Lecturer : Prof. Kyungbaek Kim Presenter : Zubair Amjad.
17 Establishing Dial-up Connection to the Internet Using Windows 9x 1.Install and configure the modem 2.Configure Dial-Up Adapter 3.Configure Dial-Up Networking.
Unix Servers Used in This Class  Two Unix servers set up in CS department will be used for some programming projects  Machine name: eustis.eecs.ucf.edu.
I WANT TO TAKE MY DATA AWAY WITH ME…. BUT HOW?? USB DATA TRANSFER IS FORBIDDEN.
Website Design:. Once you have created a website on your hard drive you need to get it up on to the Web. This is called "uploading“ or “publishing” or.
File Transfer Protocol (FTP) CIS 130. File Transfer Protocol (FTP) Copy files from one internet host (server) to your account on another host –Need domain.
 Last lesson, the Windows Operating System was discussed along with the Windows command shell  Unix is a computer operating system, that similarly manages.
Local Storage Hard Drive in Computer or USB Memory Stick Development Environment Client Computer Remote Storage GBTC Storage.
Multi-Domain Hosting CPTE 212 “Missing Slides” for 1/22/2015 John Beckett.
ITX2000 Remote hosts and web servers Prof. Xiaohong (Sharon) Gao Room: T125 Ext: Week 3 – MySQL – Statements.
ITX2000 Remote hosts and web servers Prof. Xiaohong (Sharon) Gao Room: T125 Ext: Week 14 – UNIX vi text editor.
ITX2000 Remote hosts and web servers Prof. Xiaohong (Sharon) Gao Room: T125 Ext: Week 8 – Review Reference:
Wordpress. What is Wordpress? Wordpress is a content management system. It is free and easy to use. It allows you to build dynamic websites It is built.
2Operating Systems  Program that runs on a computer  Manages hardware resources  Allows for execution of programs  Acts as an intermediary between.
Virtual Machine and VirtualBox
Remote hosts and web servers
Chapter 5 Linux Services
Technology Envioronment
Unit 5: Providing Network Services
Lab 1 introduction, debrief
Hands-On Virtualization in the Classroom
Providing Network Services
INSTALLING AND SETTING UP APACHE2 IN A LINUX ENVIRONMENT
Exploring the UNIX File System and File Security
Posting your webpage In order for other people to be able to see your webpage, you must copy the files to a web server – a computer set up to share web.
Setting Up Your Development Environment
Linux Fox Board introduction
Create New User in Database. First Connect the System.
Virtual Machine and VirtualBox
Setting Up Your Development Environment
Virtual Machine and VirtualBox
Virtual Machine and VirtualBox
XAMPP.
Presentation transcript:

Remote hosts and web servers ITX2000 Remote hosts and web servers Week 17 – Running webpage server on Ubuntu Prof. Xiaohong (Sharon) Gao Room: T125 Ext: 12252 Email: x.gao@mdx.ac.uk Reference: http://www.w3schools.com/php

Start Ubuntu Start VMware Player  Select Ubuntu 

Copy CW1 files into a USB Copy database from c:\xampp\mysql\bin: mysqldump –u root test > F: myDB.sql Drag ITX2000 folder to F drive (USB)

Login to Ubuntu from VMware Username : itx2000 Password: MDXstudent

Mount USB stick VMware  player  removable devices  USB  connect In Ubuntu $: lsusb (see your USB sticks) $: lsblk (list device mounting points) $: sudo mount /dev/sdc1 /mnt

Copying hometown database to Ubuntu Stop MySQL deamon (if there is any) $ sudo /etc/init.d/mysql stop 2. Start MySQL deamon: $ sudo /usr/sbin/mysqld --skip-grant-tables --skip-networking & 3. Start MySQL $ mysql 4. Create a database ‘TEST’ mysql> create database test; 5. mysql> exit; 6. mysql test < /mnt/xg-db.sql // copying database over to Ubuntu system.

Copying hometown WEBpage files to Ubuntu 1) cd /var/www/ //equivalent to ‘htdocs’ in PC 2) sudo mkdir ITX2000 3) cp /mnt/itx2000/* ITX2000/

Running webpage 1) Find IP address of your computer

Finding IP address of your computer $ ifconofig

Type in the IP address – 192.168.44.129

Summary - Running your CW1 at UNIX-like systems.