Week 3 lecture Flashcards

1
Q

what is hosted within an IT environment?

A
  1. data
  2. services
    3.applications
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

what is a data centre?

A

a facility that centralizes organisation/ department IT operations and hardware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

what is the cloud?

A

an abstract concept referring to computer resources that:
1. is on a network in a remote location
2. provides services to other computers over the network
3. is managed by a 3rd party

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

what is the cloud made up of?

A

a network of servers where each server has a different function

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

what is a cloud provider?

A

a company that offers remote computing resources e.g. AWS, Azure, Oracle cloud

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

what are the characteristics of the cloud?

A

-on-demand self service
-broad network access
-resource pooling
-rapid elasticity
-measured service

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

what are the benefits of the cloud?

A

-cost
-flexibility
-secure backup
-reliability
-mobility

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

what are the disadvantages of the cloud

A

-downtime
-cost
-security
-data transfer costs
-customer support

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

what are the 3 cloud service models?

A
  1. infrastructure as a service
  2. platform as a service
  3. software as a service
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

what is a server?

A

a piece of computer hardware or software (computer program) that provides functionality for other programs or devices

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

what is a web client?

A

A Web client typically refers to the Web browser in the user’s machine or mobile device

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

how does a web browser make requests?

A

using TCP/IP, requests are made using HTTP (hypertext transfer protocol)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

what is a web server?

A

a network computer with the primary role of serving web pages to clients on request

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

what is a HTTP session

A

a sequence of request-response transactions

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

what is a HTTP request?

A

An HTTP request is made by a client, to a named host, which is located on a server. The aim of the request is to access a resource on the server.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

what is a HTTP response?

A

An HTTP response is made by a server to a client. The aim of the response is to provide the client with the resource it requested

17
Q

what is Apache Web Server?

A

the worlds most used web server which is open source and free

18
Q

what is a virtual host?

A

-a method for hosting multiple domain names on a single server.
-This allows one server to share its resources, such as memory and processor cycles, without requiring all services provided to use the same hostname.

19
Q

what is a name-based virtual host?

A

Name-based virtual hosting uses the host name presented by the client. This saves IP addresses and the associated administrative overhead but the protocol being served must supply the host name at an appropriate point.

20
Q

what is an IP-based virtual host?

A

IP-based virtual hosting is a method to apply different directives based on the IP address and port a request is received on. Most commonly, this is used to serve different websites on different ports or interfaces.

21
Q

what is remote access?

A

Remote access is the ability for an authorized person to access a computer or network from a geographical distance through a network connection.

22
Q

what is Telnet?

A

Telnet is a client/server application protocol that provides access to virtual terminals of remote systems on local area networks or the Internet.

23
Q

what components does telnet consist of?

A

-A connection is established, and session details and options are negotiated between the client and server.
-The application launches. From that point forward, generated traffic is user-driven.

24
Q

what is SSH?

A

The Secure Shell Protocol is a cryptographic network protocol for operating network services securely over an unsecured network.

25
Q

what is a SSH tunnel?

A

SSH tunneling, or SSH port forwarding, is a method of transporting arbitrary data over an encrypted SSH connection. SSH tunnels allow connections made to a local port (that is, to a port on your own desktop) to be forwarded to a remote machine via a secure channel.

26
Q

what is a container?

A

a unit of software that packages up code and all dependencies so the application runs from one computing environment to another

27
Q

what is docker?

A

Docker is a set of platform-as-a-service products that use OS-level virtualization to deliver software in packages called containers.