SlideShare ist ein Scribd-Unternehmen logo
1 von 41
A
SEMINAR
ON
“REDHAT LINUX & NIS
SERVER”
PRESENTED TO :
HEAD, DEPTT. OF MCA
 PRESENTED BY :
 Priyanka bhadoriya
ABOUT LINUX
Linux was originally built by Linus
Torvalds at the University of Helsinki in
1991.
Linux is a Unix-like, Kernel-based, fully
memory-protected, multitasking operating
system
It runs on a wide range of hardware from
PCs to Macs.
FEATURES OF LINUX
 Linux is “OPEN SOURCE".
 Security
 Multi-user facility
 Free of Cost
 Virus-proof
 Choice of user-decided GUI
 Supports multiple copies of the Kernel
KERNEL OVERVIEW
 Kernel is the core of the Linux Operating
System. Kernel controls all hardware, enforce
security, and allocate memory.
 Kernel Duties:
Process Management:- scheduling, memory,
security, system
calls.
Hardware:- drivers, networking, file systems,
buffers, cache.
LINUX FILE SYSTEM
 /bin :- It contains all binary and executable
files.
 /sbin:- It contains all system executable and
binary files.
 /etc :- It contains all configuration files.
 /lib :- It contains the location for library
files.
 /boot:- It contains linux boot file and linux
kernel.
 /dev :- It contents all device files. eg.
CDROM, Harddisk.
 /var :- It contents login files and mails.
 /opt :- It contents typical location of
optional packages.
 /home:- It contents typical location for all users.
 /mnt :- It is a mount directory used to mount
CDROM , Floppy.
 /user/local:-It shows default location for
administrators.
Contd…
LINUX SHELL
 SHELL:- Shell is an interface between
the user and the kernel.
 TYPES OF SHELL
 bash
 sh
 nologin
 tcsh
 csh
 ksh
USERS,GROUPS AND
PERMISSIONS
 USERS
The concept of user accounts was created to
allow many individuals to share these precious
computing resources.
 TYPES OF USERS
Primary :- root (administrator)
Secondary :- other users
Contd….
 GROUPS
Sometimes users need to collaborate. This can
be accomplished by having users assigned to
groups and setting appropriate group
permissions for files or directories.
TYPES
User private group :- For private grouping.
Primary group :- By default.
Contd..
 PERMISSIONS
Permissions are used to restrict the files
user, files group and everyone else.
r: permission to read a file.
w: permission to write a file.
x: permission to execute a program or
change into a directory.
-: no permission
RAID DEVICE
 RAID (Redundant area of independent disks)
Raid Device are used to store the data in multiple storage
device simultaneously.
 TYPES OF RAID
RAID 0
RAID 1
RAID 5
RAID 6
LVM CONCEPT
 LVM (Logical Volume Manager)
It is a concept used by Linux to obtain the
maximum use of memory storage.
L.V.M. collects all the memory unallocated and
combines to form a volume group.
This volume group is Dynamic in size.
SNAPSHOT CONCEPT
 It is a new feature added in RHEL5 & RHEL5.2
 Snapshot provides the facility to save the
memory by reducing a big amount of data into a
very smaller memory space making a snap.
 We can only read the data.
LINUX
SERVER
CONFIGURATION
TYPES OF SERVERS
 NIS SERVER
 NFS SERVER
 DNS SERVER
 FTP SERVER
 DHCP SERVER
 SSH SERVER
 TELNET & XINETD SERVER
 SMTP SERVER
 SAMBA SERVER
 WEB SERVER
NIS SERVER
Network Information System(NIS)
NIS Server is Used to manage account &
system information on multiple system from a
central Server.
Software Required :- rpm –q portmap
rpm –q ypserv
Configuration File :- vim /etc/sysconfig/Network
vim /var/yp/Makefile
Service :- service portmap restart
service ypserv restart
service yppasswdd restart
SCREENSHOTS
NFS SERVER
 Network File Sharing (NFS)
NFS Server is used to share the directories on
the network locally or globally.
Software Required :- rpm –q portmap
rpm –q nfs-utils
Configuration File :- vi /etc/exports
Service :- service portmap start
service nfs start
DNS SERVER
DNS(Domain Name System)
 Resolves hostnames into IP addresses
(Forward Lookup).
 Resolves IP addresses into hostnames
(Reverse Lookup).
 Allow machines to be logically grouped by
name domains.
 Provides E-Mail routing information.
Contd..
 Software Required :- rpm –q bind
rpm –q bind-
utils

Configuration File :- vi /etc/named.conf
vi /var/named/*
vi /etc/rndc.*
vi /etc/resolv.conf
 Script : named
 Ports : 53(domain), 953(rndc)
DHCP SERVER
 DHCP : Dynamic Host Configuring Protocol,
implemented via dhcpd
 It assigns IP address for its clients.
 In a Network , A computer needs information
like
I.P. address , dns server ,gate way,
subnetmask to
communicate to other computers.
 DHCP automatically give all client computers
on
Contd..
Obtaining an initial address
 Client broadcasts DISCOVER to locate theClient broadcasts DISCOVER to locate the
server.server.
 Server reply with its IP.Server reply with its IP.
 Client sends REQUEST for address on theClient sends REQUEST for address on the
received IP.received IP.
 Server commits allocation & returns ACKServer commits allocation & returns ACK
containing IP, Subnet Mask, DNS, Gateway etc.containing IP, Subnet Mask, DNS, Gateway etc.
FTP SERVER
 File transfer protocol (FTP) is a common method of
copying files between computer systems.
 TYPES OF FTP
Regular FTP:- This is used primarily to allow specific users
to download files to their systems.
Anonymous FTP:- This is used primarily to allow any
remote user to download files to their systems.
Contd..
Software Required :- rpm –q vsftpd
Configuration File :- vi /etc/vsftpd/vsftpd.conf
Service :- service vsftpd start
SSH SERVER
 SSH (Secure shell server) is used to access the full
control on the remote machine on network.
Software Required :- rpm –q openssh
rpm –q openssl
rpm –q openssh-server
rpm –q openssh-clients
Configuration File :- vi /etc/ssh/sshd-config
Service :- service sshd start
TELNET & XINETD SERVER
 XINETD
Xinetd is a program used to start and stop a variety of
Linux data communication applications. Some of these
applications, such as TELNET, are installed by default in
Red Hat Linux.
Software Required :- rpm –q telnet
rpm –q telnet-server
Configuration File :- vi /etc/xinetd.d/telnet
vi /etc/securetty
Service :- service xinetd start
SMTP SERVER

Simple Mail Transfer Protocol(SMTP) is used to send or
retrieve the received mails on the network.
Based on two Services
Pop:- Post Office Protocol
imap:- Internet message acess protocol
Software Required :- rpm –q sendmail
rpm –q sendmail-cf
rpm –q m4
rpm –q make
rpm –q procmail
Configuration File :- vi /etc/mail/sendmail.cf
vi /etc/mail/access
Service :- service sendmail restart
SAMBA SERVER
 To share the files and directories of linux with
window or other operating system then we use
samba server.
Software Required :- rpm –q samba
rpm –q samba-common
rpm –q samba-client
Configuration File :- vi /etc/samba/smb.conf
Apache Web Server
 Apache is Redhat Standard Web Server
 According to Net craft Web server survey
Apache is the most widely used Web
server.
 More than 50% Web sites are hosted on Apache
Web Server
 Apache is Free.
 Apache is extremely powerful and extendable.
 Easily available with any Linux distribution.
Configuration Of Apache
 Packages : httpd
 Default Port Number : 80
 Configuration Directory : /etc/httpd/
 Main Configuration File :
etc/httpd/conf/httpd.conf
 Service Daemon : httpd
THANKS FOR KIND
ATTENTION….
QUERIES
???......?

Weitere ähnliche Inhalte

Was ist angesagt?

Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
aaj_sarkar06
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
Kavya Sri
 

Was ist angesagt? (20)

Linux beginner's Workshop
Linux beginner's WorkshopLinux beginner's Workshop
Linux beginner's Workshop
 
UNIX/Linux training
UNIX/Linux trainingUNIX/Linux training
UNIX/Linux training
 
Network File System
Network File SystemNetwork File System
Network File System
 
The basic concept of Linux FIleSystem
The basic concept of Linux FIleSystemThe basic concept of Linux FIleSystem
The basic concept of Linux FIleSystem
 
Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7Red Hat Enterprise Linux 7
Red Hat Enterprise Linux 7
 
Linux training
Linux trainingLinux training
Linux training
 
5. centos security
5. centos security5. centos security
5. centos security
 
Linux week 2
Linux week 2Linux week 2
Linux week 2
 
Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)Red hat enterprise linux 7 (rhel 7)
Red hat enterprise linux 7 (rhel 7)
 
Some basic unix commands
Some basic unix commandsSome basic unix commands
Some basic unix commands
 
Ch18 system administration
Ch18 system administration Ch18 system administration
Ch18 system administration
 
basic linux command (questions)
basic linux command (questions)basic linux command (questions)
basic linux command (questions)
 
Linux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbaiLinux-training-for-beginners-in-mumbai
Linux-training-for-beginners-in-mumbai
 
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
Linux Tutorial For Beginners | Linux Administration Tutorial | Linux Commands...
 
AFS case study
AFS case studyAFS case study
AFS case study
 
Linux Training Workshop
Linux Training WorkshopLinux Training Workshop
Linux Training Workshop
 
Linux admin interview questions
Linux admin interview questionsLinux admin interview questions
Linux admin interview questions
 
Install and configure linux
Install and configure linuxInstall and configure linux
Install and configure linux
 
Sitaram_Chalasani_CV
Sitaram_Chalasani_CVSitaram_Chalasani_CV
Sitaram_Chalasani_CV
 
NFS(Network File System)
NFS(Network File System)NFS(Network File System)
NFS(Network File System)
 

Ähnlich wie linux

lamp technology
lamp technologylamp technology
lamp technology
Deepa
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
Deepa
 
Lamp technology
Lamp technologyLamp technology
Lamp technology
2tharan21
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lamp
Nadhi ya
 

Ähnlich wie linux (20)

lamp technology
lamp technologylamp technology
lamp technology
 
Deepa ppt about lamp technology
Deepa ppt about lamp technologyDeepa ppt about lamp technology
Deepa ppt about lamp technology
 
Lamp technology
Lamp technologyLamp technology
Lamp technology
 
Linux Security
Linux SecurityLinux Security
Linux Security
 
Nadhiya lamp
Nadhiya lampNadhiya lamp
Nadhiya lamp
 
Linux basic
Linux basicLinux basic
Linux basic
 
Linux: An Unbeaten Empire
Linux: An Unbeaten EmpireLinux: An Unbeaten Empire
Linux: An Unbeaten Empire
 
Linux
LinuxLinux
Linux
 
Linux Presentation
Linux PresentationLinux Presentation
Linux Presentation
 
3. intro
3. intro3. intro
3. intro
 
Basic orientation to Linux
Basic orientation to LinuxBasic orientation to Linux
Basic orientation to Linux
 
Linuxppt
LinuxpptLinuxppt
Linuxppt
 
Lamp ppt
Lamp pptLamp ppt
Lamp ppt
 
Linux Based Network Proposal
Linux Based Network ProposalLinux Based Network Proposal
Linux Based Network Proposal
 
cisco
ciscocisco
cisco
 
Intro to linux
Intro to linuxIntro to linux
Intro to linux
 
Ceh v5 module 18 linux hacking
Ceh v5 module 18 linux hackingCeh v5 module 18 linux hacking
Ceh v5 module 18 linux hacking
 
Linux
Linux Linux
Linux
 
linux installation.pdf
linux installation.pdflinux installation.pdf
linux installation.pdf
 
Linux introduction (eng)
Linux introduction (eng)Linux introduction (eng)
Linux introduction (eng)
 

Mehr von Ajay Chawda (6)

Mastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journeyMastering the art of visual storytelling the graphic designers journey
Mastering the art of visual storytelling the graphic designers journey
 
Android technlogy
Android technlogyAndroid technlogy
Android technlogy
 
Wi fi technology
Wi fi technologyWi fi technology
Wi fi technology
 
Virtualization
VirtualizationVirtualization
Virtualization
 
Sonu seminar ppt
Sonu seminar pptSonu seminar ppt
Sonu seminar ppt
 
4g technology
4g technology4g technology
4g technology
 

Kürzlich hochgeladen

Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
UXDXConf
 

Kürzlich hochgeladen (20)

Oauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoftOauth 2.0 Introduction and Flows with MuleSoft
Oauth 2.0 Introduction and Flows with MuleSoft
 
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdfHow Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
How Red Hat Uses FDO in Device Lifecycle _ Costin and Vitaliy at Red Hat.pdf
 
Portal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russePortal Kombat : extension du réseau de propagande russe
Portal Kombat : extension du réseau de propagande russe
 
IESVE for Early Stage Design and Planning
IESVE for Early Stage Design and PlanningIESVE for Early Stage Design and Planning
IESVE for Early Stage Design and Planning
 
Enterprise Knowledge Graphs - Data Summit 2024
Enterprise Knowledge Graphs - Data Summit 2024Enterprise Knowledge Graphs - Data Summit 2024
Enterprise Knowledge Graphs - Data Summit 2024
 
Structuring Teams and Portfolios for Success
Structuring Teams and Portfolios for SuccessStructuring Teams and Portfolios for Success
Structuring Teams and Portfolios for Success
 
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone KomSalesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
Salesforce Adoption – Metrics, Methods, and Motivation, Antone Kom
 
ECS 2024 Teams Premium - Pretty Secure
ECS 2024   Teams Premium - Pretty SecureECS 2024   Teams Premium - Pretty Secure
ECS 2024 Teams Premium - Pretty Secure
 
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdfSimplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
Simplified FDO Manufacturing Flow with TPMs _ Liam at Infineon.pdf
 
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptxUnpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
Unpacking Value Delivery - Agile Oxford Meetup - May 2024.pptx
 
AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101AI presentation and introduction - Retrieval Augmented Generation RAG 101
AI presentation and introduction - Retrieval Augmented Generation RAG 101
 
Designing for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at ComcastDesigning for Hardware Accessibility at Comcast
Designing for Hardware Accessibility at Comcast
 
Optimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through ObservabilityOptimizing NoSQL Performance Through Observability
Optimizing NoSQL Performance Through Observability
 
Powerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara LaskowskaPowerful Start- the Key to Project Success, Barbara Laskowska
Powerful Start- the Key to Project Success, Barbara Laskowska
 
Intro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджераIntro in Product Management - Коротко про професію продакт менеджера
Intro in Product Management - Коротко про професію продакт менеджера
 
Free and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
Free and Effective: Making Flows Publicly Accessible, Yumi IbrahimzadeFree and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
Free and Effective: Making Flows Publicly Accessible, Yumi Ibrahimzade
 
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdfIntroduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
Introduction to FDO and How It works Applications _ Richard at FIDO Alliance.pdf
 
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptxWSO2CONMay2024OpenSourceConferenceDebrief.pptx
WSO2CONMay2024OpenSourceConferenceDebrief.pptx
 
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
Behind the Scenes From the Manager's Chair: Decoding the Secrets of Successfu...
 
How we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdfHow we scaled to 80K users by doing nothing!.pdf
How we scaled to 80K users by doing nothing!.pdf
 

linux

  • 1. A SEMINAR ON “REDHAT LINUX & NIS SERVER” PRESENTED TO : HEAD, DEPTT. OF MCA  PRESENTED BY :  Priyanka bhadoriya
  • 2. ABOUT LINUX Linux was originally built by Linus Torvalds at the University of Helsinki in 1991. Linux is a Unix-like, Kernel-based, fully memory-protected, multitasking operating system It runs on a wide range of hardware from PCs to Macs.
  • 3. FEATURES OF LINUX  Linux is “OPEN SOURCE".  Security  Multi-user facility  Free of Cost  Virus-proof  Choice of user-decided GUI  Supports multiple copies of the Kernel
  • 4. KERNEL OVERVIEW  Kernel is the core of the Linux Operating System. Kernel controls all hardware, enforce security, and allocate memory.  Kernel Duties: Process Management:- scheduling, memory, security, system calls. Hardware:- drivers, networking, file systems, buffers, cache.
  • 5. LINUX FILE SYSTEM  /bin :- It contains all binary and executable files.  /sbin:- It contains all system executable and binary files.  /etc :- It contains all configuration files.  /lib :- It contains the location for library files.  /boot:- It contains linux boot file and linux kernel.
  • 6.  /dev :- It contents all device files. eg. CDROM, Harddisk.  /var :- It contents login files and mails.  /opt :- It contents typical location of optional packages.  /home:- It contents typical location for all users.  /mnt :- It is a mount directory used to mount CDROM , Floppy.  /user/local:-It shows default location for administrators. Contd…
  • 7. LINUX SHELL  SHELL:- Shell is an interface between the user and the kernel.  TYPES OF SHELL  bash  sh  nologin  tcsh  csh  ksh
  • 8. USERS,GROUPS AND PERMISSIONS  USERS The concept of user accounts was created to allow many individuals to share these precious computing resources.  TYPES OF USERS Primary :- root (administrator) Secondary :- other users
  • 9. Contd….  GROUPS Sometimes users need to collaborate. This can be accomplished by having users assigned to groups and setting appropriate group permissions for files or directories. TYPES User private group :- For private grouping. Primary group :- By default.
  • 10. Contd..  PERMISSIONS Permissions are used to restrict the files user, files group and everyone else. r: permission to read a file. w: permission to write a file. x: permission to execute a program or change into a directory. -: no permission
  • 11. RAID DEVICE  RAID (Redundant area of independent disks) Raid Device are used to store the data in multiple storage device simultaneously.  TYPES OF RAID RAID 0 RAID 1 RAID 5 RAID 6
  • 12. LVM CONCEPT  LVM (Logical Volume Manager) It is a concept used by Linux to obtain the maximum use of memory storage. L.V.M. collects all the memory unallocated and combines to form a volume group. This volume group is Dynamic in size.
  • 13. SNAPSHOT CONCEPT  It is a new feature added in RHEL5 & RHEL5.2  Snapshot provides the facility to save the memory by reducing a big amount of data into a very smaller memory space making a snap.  We can only read the data.
  • 15. TYPES OF SERVERS  NIS SERVER  NFS SERVER  DNS SERVER  FTP SERVER  DHCP SERVER  SSH SERVER  TELNET & XINETD SERVER  SMTP SERVER  SAMBA SERVER  WEB SERVER
  • 16. NIS SERVER Network Information System(NIS) NIS Server is Used to manage account & system information on multiple system from a central Server. Software Required :- rpm –q portmap rpm –q ypserv Configuration File :- vim /etc/sysconfig/Network vim /var/yp/Makefile Service :- service portmap restart service ypserv restart service yppasswdd restart
  • 18.
  • 19.
  • 20.
  • 21.
  • 22.
  • 23.
  • 24.
  • 25.
  • 26. NFS SERVER  Network File Sharing (NFS) NFS Server is used to share the directories on the network locally or globally. Software Required :- rpm –q portmap rpm –q nfs-utils Configuration File :- vi /etc/exports Service :- service portmap start service nfs start
  • 27. DNS SERVER DNS(Domain Name System)  Resolves hostnames into IP addresses (Forward Lookup).  Resolves IP addresses into hostnames (Reverse Lookup).  Allow machines to be logically grouped by name domains.  Provides E-Mail routing information.
  • 28. Contd..  Software Required :- rpm –q bind rpm –q bind- utils  Configuration File :- vi /etc/named.conf vi /var/named/* vi /etc/rndc.* vi /etc/resolv.conf  Script : named  Ports : 53(domain), 953(rndc)
  • 29. DHCP SERVER  DHCP : Dynamic Host Configuring Protocol, implemented via dhcpd  It assigns IP address for its clients.  In a Network , A computer needs information like I.P. address , dns server ,gate way, subnetmask to communicate to other computers.  DHCP automatically give all client computers on
  • 30. Contd.. Obtaining an initial address  Client broadcasts DISCOVER to locate theClient broadcasts DISCOVER to locate the server.server.  Server reply with its IP.Server reply with its IP.  Client sends REQUEST for address on theClient sends REQUEST for address on the received IP.received IP.  Server commits allocation & returns ACKServer commits allocation & returns ACK containing IP, Subnet Mask, DNS, Gateway etc.containing IP, Subnet Mask, DNS, Gateway etc.
  • 31.
  • 32. FTP SERVER  File transfer protocol (FTP) is a common method of copying files between computer systems.  TYPES OF FTP Regular FTP:- This is used primarily to allow specific users to download files to their systems. Anonymous FTP:- This is used primarily to allow any remote user to download files to their systems.
  • 33. Contd.. Software Required :- rpm –q vsftpd Configuration File :- vi /etc/vsftpd/vsftpd.conf Service :- service vsftpd start
  • 34. SSH SERVER  SSH (Secure shell server) is used to access the full control on the remote machine on network. Software Required :- rpm –q openssh rpm –q openssl rpm –q openssh-server rpm –q openssh-clients Configuration File :- vi /etc/ssh/sshd-config Service :- service sshd start
  • 35. TELNET & XINETD SERVER  XINETD Xinetd is a program used to start and stop a variety of Linux data communication applications. Some of these applications, such as TELNET, are installed by default in Red Hat Linux. Software Required :- rpm –q telnet rpm –q telnet-server Configuration File :- vi /etc/xinetd.d/telnet vi /etc/securetty Service :- service xinetd start
  • 36. SMTP SERVER  Simple Mail Transfer Protocol(SMTP) is used to send or retrieve the received mails on the network. Based on two Services Pop:- Post Office Protocol imap:- Internet message acess protocol Software Required :- rpm –q sendmail rpm –q sendmail-cf rpm –q m4 rpm –q make rpm –q procmail Configuration File :- vi /etc/mail/sendmail.cf vi /etc/mail/access Service :- service sendmail restart
  • 37. SAMBA SERVER  To share the files and directories of linux with window or other operating system then we use samba server. Software Required :- rpm –q samba rpm –q samba-common rpm –q samba-client Configuration File :- vi /etc/samba/smb.conf
  • 38. Apache Web Server  Apache is Redhat Standard Web Server  According to Net craft Web server survey Apache is the most widely used Web server.  More than 50% Web sites are hosted on Apache Web Server  Apache is Free.  Apache is extremely powerful and extendable.  Easily available with any Linux distribution.
  • 39. Configuration Of Apache  Packages : httpd  Default Port Number : 80  Configuration Directory : /etc/httpd/  Main Configuration File : etc/httpd/conf/httpd.conf  Service Daemon : httpd