linux hosting training course level 1-(3-4)

13

Click here to load reader

Upload: ramy-allam

Post on 23-Aug-2014

417 views

Category:

Internet


5 download

DESCRIPTION

Linux Hosting Training Course Level 1-(3-4)

TRANSCRIPT

Page 1: Linux Hosting Training Course Level 1-(3-4)

BESM ALLAH

Page 2: Linux Hosting Training Course Level 1-(3-4)

Linux Hosting Training Course

[Level 1-(3-4)]Ramy Allam

Page 3: Linux Hosting Training Course Level 1-(3-4)

OUTLINE● WebHosting Types● Linux Basic Administration

Page 4: Linux Hosting Training Course Level 1-(3-4)

WebHosting Types● Dedicated Server● Shared Hosting● Reseller Hosting● Virtual Private Server “VPS”● Cloud Computing

Page 5: Linux Hosting Training Course Level 1-(3-4)

Dedicated Server● Renting a Dedicated Server from datacenter.● Choose the required Hardware● Choose the required OS● Full Operating System Access● Remote Access

Page 6: Linux Hosting Training Course Level 1-(3-4)

Softlayer CaseStudy● http://www.softlayer.com/bare-metal-servers● Number of Processors● Processor Model● DataCenter Location● RAM● Operating System● HDD● Network● Control Panels

Page 7: Linux Hosting Training Course Level 1-(3-4)

Leasweb CaseStudy● http://www.leaseweb.com/en/bare-metal-servers● Number of Processors● Processor Model● DataCenter Location● RAM● Operating System● HDD● Network● Control Panels

Page 8: Linux Hosting Training Course Level 1-(3-4)

What's Next ?● Server IP● Root Password● SSH● Putty / Terminal Client

Page 9: Linux Hosting Training Course Level 1-(3-4)

Kernel

● A kernel connects the application software to the hardware of a computer

Page 10: Linux Hosting Training Course Level 1-(3-4)

Linux Directory Structure

Page 11: Linux Hosting Training Course Level 1-(3-4)

Basic Linux Administration

● Basic Linux Commands

● Add multiple Linux users

● Yum Package Manager

● System Resources

usradd usernamepasswd username

cd – ls – mkdir – rm – touch – cat

yum updateyum install packagename

yum remove packagenameyum remove packagename

cat /proc/cpuinfocat /proc/meminfo

fdisk -luptime

Page 12: Linux Hosting Training Course Level 1-(3-4)

Basic Linux Administration

● Change Hostname

● Text Editor “Nano”● Download File

hostname nano /etc/sysconfig/networknano /proc/sys/kernel/hostname

wget $Link

Page 13: Linux Hosting Training Course Level 1-(3-4)

Basic Linux Administration

● Install Web Server “Apache”

● Install PHP Engine

● Install FTP Server “VSFTP”

yum install httpd

yum install php

yum install vsftpd