Alinuxmaterial
Alinuxmaterial
Alinuxmaterial
Ratnakar Page 1
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 2
Abhisol : RED-HAT LINUX 6/7
Type of Home
Example User ID Group ID Default Shell
User Directory
Super User Root 0 0 /root /bin/bash
Normal users
Same as Same as
Sudo User with admin /home/<user name> /bin/bash
normal users normal users
privileges
Ratnakar Page 3
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 4
Abhisol : RED-HAT LINUX 6/7
19. What are the uses of .bash_logout, .bash_profile and .bashrc files?
.bash_logout : is a user's logout ending program file. It will execute first whenever the user is logout.
.bash_profile : is user's login startup program file. It will execute first whenever the user is login. It
consists the user's environmental variables.
.bashrc : This file is used to create the user's custom commands and to specify the umask values for
that user's only.
21. What is the command to check the user belongs to how many groups?
# groups <user name>
Ratnakar Page 5
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 6
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 7
Abhisol : RED-HAT LINUX 6/7
33. How to assign the password to normal user by him whenever first login to the system?
Whenever the user is created and that user is trying to login to the system, it will ask the password. If
the root user is not assign the password to that user, then that normal user can assign the password by his own
using the following commands.
# useradd <user name> (to create the user)
# passwd -S <user name> (to see the status of the password of that user. if root user is not
assigned the password then the password status is locked)
# passwd -d <user name> (then delete the password for that user)
# chage -d 0 <user name> (it will change the password age policy)
# su - <user name> (Try to switch to that user then it will display the following
message)
Newpassword : (type new password for that user)
Retype password : (retype the password again)
The other useful commands :
# w (this command gives the login user information like how many users currently login and full
information )
# who (to see users who are currently login and on which terminal they login)
# last (see the list of users who are login and logout since the /var/log/wtmp file was
created)
# lastb (to see the list of the users who tried as bad logins)
# lastreboot (to see all reboots since the log file was created)
# uptime (to see the information from how long the system is running, how many users login
and load average)
* The load average is from 1 sec : 5 secs : 15 secs
# df (to see the mounted partitions, their mount points and amount of disk space)
# du (to see the disk usage of the each file in bytes)
# uname -r (gives the current kernel version)
# last -x (It shows last shutdown date and time)
# last -x grep shutdown (only shutdown time shows ie., grep will filter the 'last -x' command)
* grep: It is used to search a word or sentence in file (ie., inside the file)
* find : It is used to search a command or file inside the system)
# cat /etc/shells or # chsh -l (to see how many shells that are supported by Linux)
/bin/sh -----> default shell for Unix
/bin/bash -----> default shell for Linux
/sbin/nologin -----> users cannot login shell
/bin/tcsh -----> c shell to write 'C++' language programs
/bin/csh -----> c shell to write 'C' language programs
# echo $SHELL (to see the current shell)
# chsh <user name> (to change the user's shell)
Changing shell for <user name> :
New shell : <type new shell for example /bin/sh to change the current shell>
New shell changed (But it will effect by restarting the server)
# date + %R (to display the time only)
# date + %x (to display the date only)
# history (to see the history of the commands)
#history -c (to clear the history)
# history -r (to recover the history)
* .bash_history is the hidden file to store the history of the user commands. By default history size is
1000.
# echo $HISTSIZE (to check the current history size)
Ratnakar Page 8
Abhisol : RED-HAT LINUX 6/7
# export HISTSIZE=500 (to change the current history size to 500 temporarily)
#export HISTTIMEFORMAT=" "%D" "%T" " (to display the date and time of each command
temporarily)
# vim /etc/bashrc (open this file go to last line and type as follows to make history i
size date & time formats permanently)
HISTSIZE=1000
HISTTIMEFORMAT=' %D %T '
(save and exit the file and to update the effects by #source /etc/bashrc command)
# ~<user name> (to go to users home directory)
# whatis <command> (to see the short description of that command)
# whereis <command> (to see the location of that command and location of the
I document of that command)
# reset (to refresh the terminal)
# whoami (to see the current user name)
# who a mi (to see the current user with full details like login time and others)
# passwd <user name> (to change the password of the user)
# id (to see the current user name, user id, group name and group id, .... etc.,)
# id <user name> (to see the specified user name, user id, group name and group id)
# su (to switch to root user without root user home directory)
# su - (to switch to root user with root user home directory)
# su <user name) (to switch to the specified user without his home directory)
# su - <user name> (to switch to the specified user with his home directory)
# lspci (to list all the PCI slots present in the system)
# du -sh /etc/ (to see the size of the /etc on the disk in KBs or MBs)
# ls -l (to see the long listing of the files and directories)
d rwx rwx rwx . 2 root root 6 Dec 17 18:00 File name
d -----> type of file
rwx -----> owner permissions
rwx -----> group permissions
rwx -----> others permissions
. -----> No ACL permissions applied
root ----> owner of the file
root ----> group ownership
6 -----> size of the file
Dec 7 18:00 -----> Date and Time of the created or modified
File name -----> File name of that file
# ls -ld <directory name> (to see the long listing of the directories)
# stat <file name/directory name> (to see the statistics of the file or directory)
35. What are permission types available in Linux and their numeric representations?
There are mainly three types of permissions available in Linux and those are,
read ----- r ----- 4 null permission ------ 0
write ----- r ----- 4
execute ----- r ----- 4
Ratnakar Page 9
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 10
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 11
Abhisol : RED-HAT LINUX 6/7
(i) In an organization the whole work is divided into departments for easy maintenance and easy
administration.
(ii) For each department is also represented as group and that group having so many users to do
different works.
(iii) So, if we create one group and assign that group to all the users in that department, then we can
easily identify which user belongs to which group.
(iv) We can share files, directories and execute some programs to that group and also give permissions
to that group. So, each user of that group can easily share those directories and also can easily
access, execute or even write in those shared files and directories.
RHEL - 7 :
(i) Restart the system.
(ii) Using arrow keys select 1st line and press 'e' to edit.
(iii) Go to Linux 16 line press End key or Ctrl + e to go to the end of the line and give one space.
(iv) Then type as rd.break console=tty1 selinux=0
(v) Then press Ctrl + x to start the computer in single user mode.
(vi) After starting we get swith_root :/# prompt appears and then type as follows.
(vii) # mount -o remount, rw /sysroot and press Enter and then type as follows.
(viii) # chroot /sysroot press Enter.
(ix) Then sh - 4.2 # prompt appears and type as
(x) sh - 4.2 #passwd root
New password : XXXXXX
Retype password : XXXXXX
(xi) sh - 4.2 # exit
(xii) switch-root :/# exit
(xiii) Then the system starts and the desktop appears.
Ratnakar Page 12
Abhisol : RED-HAT LINUX 6/7
(i) Profile is a file to enter some settings about users working environment. ie., we can set user home
directory, login shell, path, ...etc.,
Profiles are two types.
(a) Global profile
(b) Local profile
Global profile :
(1) Only root user can set and applicable to all the users.
(2) Only global parameters can entered in this profile.
(3) The location of the global profile is /etc/bashrc
Local profile :
(1) Every user has his/her own profile.
(2) The settings entered in this profile are only for that user.
(3) The location of the profile is .bash_profile (hidden file) in that particular user's home directory.
54. How to find the users who are login and how to kill them?
# fuser -cu (to see who are login)
#fuser -ck <user login name> (to kill the specified user)
Ratnakar Page 13
Abhisol : RED-HAT LINUX 6/7
59. What is the syntax to assign read and write permissions to particular user, group and other?
# setfacl -m u : <user name> : <permissions><file or directory>
# setfacl -m g : <user name> : <permissions><file or directory>
# setfacl -m o : <user name> : <permissions><file or directory>
60. What is the syntax to assign read and write permissions to particular user, group and other at a
time?
# setfacl -m u : <user name> : <permissions>, g : <user name> : <permissions>, o : <user name> :
<permissions><file or directory>
Useful commands :
# setfacl -x u : <user name><file or directory name> (to remove the ACL permissions from the user)
# setfacl -x g : <user name><file or directory name>(to remove the ACL permissions from group)
# setfacl -x o : <user name><file or directory name> (to remove the ACL permissions from other)
# setfacl -b <file or directory> (to remove all the ACL permissions on that file directory)
61. How will you lock a user, if he enters wrong password 3 times?
pam_tally.so module maintains a count of attempted accesses, can reset count on success, can deny
access if too many attempts fail. Edit /etc/pam.d/system-auth file, enter:
(i) # vi /etc/pam.d/system-auth
Modify as follows:
auth required pam_tally.so no_magic_root
account required pam_tally.so deny=3 no_magic_root lock_time=180
Where,
deny=3 : Deny access if tally for this user exceeds 3 times.
lock_time=180 : Always deny for 180 seconds after failed attempt. There is alsounlock_time=n option. It allow
access after n seconds after failed attempt. If this option is used the user will be locked out for the specified
amount of time after he exceeded his maximum allowed attempts. Otherwise the account is locked until the
lock is removed by a manual intervention of the system administrator.
magic_root : If the module is invoked by a user with uid=0 the counter is not incremented. The sys-admin
should use this for user launched services, like su, otherwise this argument should be omitted.
no_magic_root : Avoid root account locking, if the module is invoked by a user with uid=0
Save and close the file.
Ratnakar Page 14
Abhisol : RED-HAT LINUX 6/7
(i) Open the /etc/fstab file by # vim /etc/fstab command and goto the mount point entry
line and type as, /dev/sdb1 /mnt/prod ext4 defaults, usrquota 0 0
(save and exit this file)
(ii) Update the quota on mount point by # mount -o remount, usrquota <mount point>
command.
(iii) Create the user quota database by # quotacheck -cu <mount point> command (where -c
means created the quota database and -u means user quota).
(iv) Check whether the quota is applied or not by # mount command.
(v) Enable the quota by # quotaon <mount point> command.
(vi) Apply the user quota for a user by # edquota -u <user name><mount point>
command.
File system blocks soft hard inodes soft
hard
/dev/sdb1 0 0 0 0 0
0
blocks -----> No. of blocks used (already)
soft -----> Warning limit
hard -----> Maximum limit
0 -----> Unlimited usage
inodes -----> No. of files created (already)
* If soft=10 and hard=15 means after crossing the soft limit a warning message will be
displayed and if hard limit is also crosses then it won't allow to create the files for that user.
(save and exit the above quota editor)
# edquota -p <user name 1><user name 2> (to apply user name 1 quotas to user name 2, ie., no
need to edit the quota editor for user name 2)
(ii) Update the quota on mount point by # mount -o remount, usrquota, grpquota <mount point>command.
(iii) Create the user quota database by # quotacheck -cug <mount point> command (where -c means
created the quota database, -u means user quota and -g means group quota ).
(iv) Check whether the quota is applied or not by # mount command.
(v) Enable the quota by # quotaon <mount point> command.
(vi) Apply the user quota for a user by # edquota -g <group name><mount point> command.
File system blocks soft hard inodes soft
hard
/dev/sdb1 0 0 0 0 0
0
Ratnakar Page 15
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 16
Abhisol : RED-HAT LINUX 6/7
1. What is partition?
A partition is a contiguous set of blocks on a drive that are treated as independent disk.
2. What is partitioning?
Partitioning means to divide a single hard drive into many logical drives.
Ratnakar Page 17
Abhisol : RED-HAT LINUX 6/7
(p - primary) or e - extended) : p (type p for primary partition or type e for extended partition)
First cylinder : (press Enter for default first cylinder)
Last cylinder : + <size in KB/MB/GB/TB>
Command (m for help) : t (type t to change the partition id)
(for example: 8e for Linux LVM, 82 for Linux Swap and 83 for Linux normal partition)
Command (m for help) : w (type w tosave the changes into the disk)
# partprobe /partx -a/kpartx /dev/sdc1 (to update the partitioning information in partition table)
14. What are differences between the ext2, ext3, ext4 and xfs file systems?
S.No. Ext2 Ext3 Ext4
1. Stands for Second Stands for Third Extended Stands for Fourth
Extended file system. file system. Extended file system.
2. Does not having Supports Journaling Supports Journaling
Journaling feature. feature. feature.
3. Max. file size can be from Max. file size can be from Max. file size can be from
16 GB to 2 TB. 16 GB to 2 TB. 16 GB to 16 TB.
4. Max. file system size can Max. file system size can Max. file system size can
be from 2 TB to 32 TB be from 2 TB to 32 TB be from 2 TB to 1 EB
*1EB = 1024 Peta bytes.
Ratnakar Page 18
Abhisol : RED-HAT LINUX 6/7
/etc/fstab ----> is keeping information about the permanent mount points. If we want to
make our mount point permanent then make an entry about the mount point in this file.
/etc/fstab entries are:
1 2 3 4 5 6
device name mount point F/S type mount options Dump FSCK
16. The partitions are not mounting even though there are entries in /etc/fstab. How to solve this
problem?
First check any wrong entries are there in /etc/fstab file. If all are ok then unmount all the partitions by
executing the below command,
# umount -a
Then mount again mount all the partitions by executing the below command,
# mount -a
17. When trying to unmounting it is not unmounting, how to troubleshoot this one?
Some times directory reflects error while unmounting because,
(i) you are in the same directory and trying to unmount it, check with # pwdcommand.
(ii) some users are present or accessing the same directory and using the contents in it, check this with
# fuser -cu <device name> (to check the users who are accessing that partition)
# lsof <device name> (to check the files which are open in that mount point)
# fuser -ck <opened file name with path> (to kill that opened files)
Now we can unmount that partition using # umount <mount point>
Ratnakar Page 19
Abhisol : RED-HAT LINUX 6/7
27. How to check the integrity of a file system or consistency of the file system?
# fsck <device or partition name>command we can check the integrity of the file system.
But before running the fsck command first unmount that partition and then run fsck command.
28. What is fsck check or what are the phases of the fsck?
(a) First it checks blocks and sizes of the file system
(b) Second it checks file system path names
(c) Third it checks file system connectivity
(d) Fourth it checks file system reference counts (nothing but inode numbers)
(e) Finally it checks file system occupied cylindrical groups
29. Why the file system should be unmount before running the fsck command?
If we run fsck on mounted file systems, it leaves the file systems in unusable state and also deletes the
data. So, before running the fsck command the file system should be unmounted.
31. How to extend the root file system which is not on LVM?
By using # gparted command we can extend the root partition, otherwise we cannot extend
the file systems which is not on LVM.
Ratnakar Page 20
Abhisol : RED-HAT LINUX 6/7
34. How to know which file system occupy more space and top 10 file systems?
# df -h <device or partition name> | sort -r | head -10
39. How to find how many disk are attached to the system?
# fdisk -l (to see how many disk are attached to the system)
42. How to create the file systems with the user specified superblock reserve space?
# mkfs.ext4 -m <no.><partition name> (to format the partition with <no.>% of reserve space to
superblock)
Whenever we format the file system, by default it reserve the 5% partition space for Superblock.
Ratnakar Page 21
Abhisol : RED-HAT LINUX 6/7
Important Commands :
# fsck <partition name> (to check the consistency of the file system)
# e2fsck <partition name> (to check the consistency of the file system in interactive mode)
# e2fsck -p <partition name> (to check the consistency of the file system without interact mode)
# mke2fs -n <partition name> (to see the superblock information)
# mke2fs -t <file system type><partition name> (to format the partition in the specified filesys type)
# mke2fs <partition name> (to format the partition in default ext2 file system type)
# blockdev --getbs /dev/sdb1 (to check the block size of the /dev/sdb1 file system)
# fsck <device or partition name> (to check and repair the file system)
Note: Before running this command first unmount that partition then run fsck command.
# umount -a (to unmount all the file systems except ( / ) root file system)
# mount -a (to mount all the file systems which are having entries in /etc/fstab file)
# fsck -A (to run fsck on all file systems)
# fsck -AR -y (to run fsck without asking any questions)
# fsck -AR -t ext3 -y (to run fsck on all ext3 file systems)
# fsck -AR -t no ext3 -y(to run fsck on all file systems except ext3 file systems)
# fsck -n /dev/sdb1 (to see the /dev/sdb1 file system report without running fsck)
# tune2fs -l /dev/sdb1 (to check whether the journaling is there or not)
# tune2fs -j /dev/sdb1 (to convert ext2 file system to ext3 file system)
# tune2fs -l /dev/sdb1 (to check whether the journaling is added or not)
# tune2fs -O ^has_journal /dev/sdb1 (to convert ext3 file system to ext2 file system)
# tune2fs -O dir_index, has_journal, unit_bg /dev/sdb1 (to convert ext2 file system to ext4 file system)
# tune2fs -O extents, dir_index, unit_bg /dev/sdb1 (to convert ext3 file system to ext4 file system)
# mount -o remount, rw /dev/sdb1 (to mount the partition with read and write permissions)
# mount -o remount, ro /dev/sdb1 (to mount the partition with read only permissions)
# mount < directory name> (to check whether this directory is mount/ normal directory)
# dump2fs <device or partition name> (to check the metadata of the partition and repair the metadata)
# fdisk -l (to list total hard disks attached to system and their partitions)
# fuser -cu <device or partition name> (to see the users who are accessing that file system)
# fuser -cK <device or partition name> (to kill the users processes who accessing the file systems)
Note: Even though we kill those users processes sometimes we cannot unmount those partitions, so if this
situation arises then first see the process id's of the user opened files by
# lsof <mount point>
# kill -9 <process id> killthose processesforcefully
# journalctl (It tracks all the log files between two different timings and by default saved in /run/log )
* /run/log is mounted on tmpfs file system. ie., if system is rebooted, the whole information in that location
will be deleted or erased.
* We can change the location of the /run/log to another like /var/log/journal by
# mkdir -p /var/log/journal (to make a directory in /var/log location)
# chown root : systemd-journal /var/log/journal (to change the group ownership of /var/log/journal)
# chmod g+s /var/log/journal (to set the sgid on /var/log/journal)
# killall -URS1 systemd-journald (It is necessary to kill old /run/log process and the location of journal
messages is changed to /var/log/journal)
# journalctl -n 5 (to display last five lines of all the log files)
# journalctl -p err (to display all the error messages)
# journalctl -f (to watch journalctl messages continuously)
# journalctl --since<today> or <yesterday> (to see all the journalctl messages since today or yesterday)
# journalctl --since "date" --until "date" (to see the journal messages between the specified two dates)
# journalctl -pid=1 (to see the pid=1 process name)
# auditctl (to see the audit report).
2. Logical Volume Management and RAID Levels
Ratnakar Page 22
Abhisol : RED-HAT LINUX 6/7
(vi) Create a mount point to mount the above created LVM file system by,
# mkdir /mnt/<directory name>
(vii) Mount the LVM on the above created mount point temporarily by,
# mount /dev/<volume group name>/<logical volume name><mount point>or
Mount the LVM on mount point permanently by,
# vim /etc/fstab
/dev/<VG name>/<LV name> /mnt/<directory> <file system type> defaults 0
0
Esc+:+wq!
# mount -a
# df -hT (to see the mounted partitions with file system types)
4. How to see the details of the Physical Volumes?
# pvs (displays all physical volumes with less details)
# pvdisplay (displays all physical volumes with more details)
# pvdisplay <physical volume name> (displays the details of the specified physical volume)
# pvscan (to scan all the physical volumes)
Ratnakar Page 23
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 24
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 25
Abhisol : RED-HAT LINUX 6/7
# mount -a
15. How to change the volume group name and other parameters?
# vgrename <existing volume group name><new volume group name> (to rename the volume
group)
By default, unlimited logical volumes can be created per volume group. But we can control this limit by
# vgchange -l <no.><volume group> (to limit max. no. of logical volumes to the specified
number)
Example : # vgchange -l 2 <vgname> (to limit max. 2 logical volumes cab be created in this
volume group)
# vgchange -p <no.><volume group> (to limit max. no. of physical volumes to the specified
number)
Example : # vgchange -p 2 <vgname> (to limit max. 2 physical volumes can be added to this
volume group)
# vgchange -s <block size in no.><volume group> (to change the block size of the volume
group)
Example : # vgchange -s 4 <vgname> (to change the volume group block size to 4MB)
16. How to change the logical volume name and other parameters?
# lvrename <existing lvname><new lvname> (to rename the logical volume)
# lvchange -pr <logical volume> (to put the logical volume into read only mode)
# lvs (to see the logical volume permissions)
# lvchange -prw <logical volume> (to put the logical volume into read and write mode)
Ratnakar Page 26
Abhisol : RED-HAT LINUX 6/7
20. What are the locations of the logical volume and volume groups?
# cd /etc/lvm/backup (the logical volumes backup location)
# cd /etc/lvm/archive (the volume groups backup location)
23. How to extend the logical volume to max. disk space and half of the disk space?
# lvextend -l +100% FREE <logical volume> (to extend the logical volume by adding the
volume group's total available space)
# lvextend -l 50% <vgname><lvname> (to extend the logical volume by adding the 50%
free space of the volume group)
24. How to check on which physical volume the data is writing in the logical volume?
# lvdisplay -m ( to check on which physical volume the data is currently writing from all
logical volumes)
# lvdisplay -m <lvname> (to check on which physical volume the data is writing from the
Specified logical volume)
26. How to scan and detect the luns over the network?
# ls /sys/class/fc_host (to check the available fibre channels)
# echo "---" > /sys/class/scsi_host/<lun no.>/scan (to scan and detect the luns over the network)
Ratnakar Page 27
Abhisol : RED-HAT LINUX 6/7
29. How to mount the " .iso " image files in Linux?
# mount -t iso9660 /root/rhel6.iso /iso -o ro, loop (to mount the .iso image files)
# cdrecord /root/Desktop/rhel6.iso (to write the CD/DVD ROM. Before executing this
command put the empty CD/DVD into CD/DVD drive)
# eject (to eject the CD/DVD drive tray)
# eject -t (to insert and close the CD/DVD drive tray)
30. What is RAID? What is the use of the RAID and how many types of RAIDs available?
RAID stands for Redundant Array of Independent Disks.
It provides fault tolerance, load balancing using stripping, mirroring and parity concepts.
There are mainly two types of RAIDs available.
(i) Hardware RAID (Depends on vendors and also more expensive)
(ii) Software RAID (Does not depends on vendors and less expensive when compared to Hardware
RAID and also it is maintained by system administrator only.
31. How many types of sofware RAIDs available and their requirements?
(i) RAID - 0 ---- Stripping ---- Minimum 2 disks required
(ii) RAID - 1 ---- Mirroring ---- Minimum 2 disks required
(iii) RAID - (1+0) --- Mirroring + Stripping ---- Minimum 4 disks required
(iv) RAID - (0+1) --- Stripping + Mirroring ---- Minimum 4 disks required
(v) RAID - 5 ---- Stripping with parity ---- Minimum 3 disks required
Disk - 1 Disk - 2
If the Disk - 1 is /dev/sdb and the Disk - 2 is /dev/sdc then,
# mdadm -Cv /dev/md0 -n 2 /dev/sdb /dev/sdc -l 0 (to create the RAID - 0 using disk - 1 and
disk - 2)
# cat /proc/mdstat (to check the RAID - 0 is created or not)
# mkfs.ext4 /dev/md0 (to create the ext4 file system on the RAID - 0)
# mkdir /mnt/raid0 (to create the RAID - 0 mount point)
# mount /dev/md0 /mnt/raid0 (to mount RAID - 0 on the mount point)
# mdadm -D /dev/md0 (to see the details of the RAID - 0 partition)
Ratnakar Page 28
Abhisol : RED-HAT LINUX 6/7
Disk - 1 Disk - 2
If the Disk - 1 is /dev/sdb and the Disk - 2 is /dev/sdc then,
# mdadm -Cv /dev/md0 -n 2 /dev/sdb /dev/sdc -l 1 (to create the RAID - 1 using disk - 1 and
disk - 2)
# cat /proc/mdstat (to check the RAID - 1 is created or not)
# mkfs.ext4 /dev/md0 (to create the ext4 file system on the RAID - 1)
# mkdir /mnt/raid1 (to create the RAID - 1 mount point)
# mount /dev/md0 /mnt/raid1 (to mount RAID - 1 on the mount point)
# mdadm -D /dev/md0 (to see the details of the RAID - 1 partition)
# mdadm /dev/md0 -f /dev/sdb (to failed the disk manually)
# mdadm /dev/md0 -r /dev/sdb(to remove the above failed disk)
# mdadm /dev/md0 -a /dev/sdd (to add the new disk in place of failed disk)
# umount /mnt/raid1 (to unmount the raid file system)
# mdadm --stop /dev/md0 (to stop the RAID - 1 volume)
# mdadm /dev/md0 --add /dev/sde (to add third disk to the RAID - 1 volume)
# mdadm --grow /dev/md0 --raid_device=3 (to grow the RAID - 1 file system)
Ratnakar Page 29
Abhisol : RED-HAT LINUX 6/7
2
3 1
1+2
5+6 3+4
4 6
5
36. How will you troubleshoot if one of the eight disks failed in LVM?
First umount the file system and add the new disk with same size of the failed disk to the volume
group. Then move the data from failed physical volume to newly added physical volume and then
remove the failed physical volume from the volume group. And finally mount the file system.
38. How to inform the client and then troubleshoot if the disk is full?
First check which files are accessing more disk space by #du -h |sort - r command. if any temporary
and junk files are present remove them from the disk to make a room for new or updated data. Then
inform the actual situation to the client, take the permission from the client to get the lun
from storage and extend the file system by adding that lun to the LVM.
40. I have four disks each 1TB in RAID - (1+0). So, total how much disk space can I utilize in that RAID –
Ratnakar Page 30
Abhisol : RED-HAT LINUX 6/7
(1+0)? RAID - (1+0) means Mirroring + Stripping. It requires 4 disks, ie., 2 disks for mirroring and
remaining 2 disks for stripping. And 5 - 10% disk space is used for superblock information. So,
finally we can utilize 2TB - 2TB X 10% disk space in that RAID - (1+0).
41. If two disks failed in RAID - (1+0), can we recover the data?
The RAID - (1+0) requires minimum 4 disks and it uses Mirroring + Stripping. If one disk is failed we can
recover the data, but if two disks are failed we cannot recover the data.
42. How many types of disk space issues can we normally get?
(i) Disk is full.
(ii) Disk is failing or failed.
(iii) File system corrupted or crashed.
(iv) O/S is not recognizing the remote luns when scanning, ...etc.,
Ratnakar Page 31
Abhisol : RED-HAT LINUX 6/7
find command required the specific location. Without specific location we cannot find the files or
directories.
# find <location><options><file or directory> (to find the specific file or directory)
The options are,-name -----> search files and directories
-prem -----> search for permissions
-size -----> search for sizes
-user -----> search for the owner
-uid -----> search for files/directories of uid)
-gid -----> search for files/directories of gid)
-group -----> search for group owner
-empty -----> search for empty files
-amin -----> search for access time
-mmin -----> " "
-cmin -----> " "
-atime -----> search for access day (access day, minutes, hrs, ...etc)
-mtime -----> search for modify day (change the content)
-ctime -----> search for change day (permissions, .....etc)
Examples :
# find / -name <file name> (to search for file names in / directory)
# find / -name <file name> -type f (to find file names only)
# find / -name <directory name> -type d (to find directories with small letters only)
# find / -iname <file/directory name> -t d (to search for small or capital letter
files/directories)
#find / -empty (to search empty files or directories)
# find / -empty -type f (to search for empty files only)
# find / -empty -type d (to search for empty directories only)
# find / -name " *.mp3" (to search for .mp3 files only)
# find / -size 10M (to search for exact 10M size file/directories)
# find / -size -10M (to search for less than 10M size files/directories)
# find / -size +10M (to search for greater than 10M size files/directories)
# find / -user student (to search for student user files/directories)
# find / -group student (to search for student group files/directories)
# find / -user student -not -group student (to search for student user files and not student
group files)
# find / -user student -o -group student (to search for student user and student group
files/directories)
# find / -uid <uid no.> (to search for files/directories which belongs to the user
having the specified user id)
# find / -gid <gid no.> (to search for files/directories which belongs to the group
having the specified group id)
# find / -prem 755 (to search file/directories which are having the
permissions 755)
# find / -prem -755 (to search file/directories which are having the
permissions below 755 and also at least one match also)
# find / -mmin 20 (to search for files/directories which are modified within 20 minutes,
+20 ----> above 20 minutes and -20 -----> below 20 minutes)
# find / -mtime 2 (to search files/directories which are modified within 2 days)
# find / -name "*.mp3" -exec rm -rf { } \; (to search all .mp3 files and delete them)
# find / -name "*.mp3" -exec cp -a { } /ram \ ;(to search all mp3 files and copy them into /ram
directory)
# find / -user student -exec cp -a { } /ram \; (to search student user's files and directories and
copy them into /ram directory)
# find / -nouser -exec mv -a { } /home/ram \; (to search files/directories which are
not
belongs to any user and move them into /home/ram directory)
Ratnakar Page 32
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 33
Abhisol : RED-HAT LINUX 6/7
9. What is an IP address?
Every Computer will be assigned an IP address to identify each one to communicate in the network.
The IP address sub components are Classes of an IP address, Subnet masks and Gateway.
Classes of IP address :
The IP addresses are further divided into classes. The classes are A, B, C, D, E and the ranges are given
below.
Start End Default Subnet mask Classless Inter Domain Routing
Class
Class A 0.0.0.0 127.255.255.255 255.0.0.0 /8
Class B 128.0.0.0 191.255.255.255 255.255.0.0 /16
Class C 192.0.0.0 223.255.255.255 255.255.255.0 /24
Class D 224.0.0.0 239.255.255.255
Class E 240.0.0.0 255.255.255.255
Ratnakar Page 34
Abhisol : RED-HAT LINUX 6/7
It is two types.
IPV4 :(It is divided into 4 parts )
It is divided into 6 parts. --- . --- . --- . --- (each 8 bits. So, 8 X 4 = 32 bits
--- : --- : --- : --- : --- : --- (each 8 bits. So, 8 X 6 = 48 bits IPV6 : ( It is divided into 16 parts )
--- . --- . --- . --- . --- . --- . --- . --- . --- . --- . --- . --- . --- . --- .
--- . --- (each 8 bits. So, 8 X 16 = 128 bits.
ifconfig (to see the MAC address) # ifconfig (to see the IP address)
16. How many types of NIC cards available?
(a) eth0 (1st NIC card)
(b) eth1 (2nd NIC card)
(c) br0 (Bridge -----> used for communication from physical to virtual)
(d) lo (loopback device name and IP address is 127.0.0.1)
# ifconfig (to see all the NIC devices connected to the system)
17. How many types of cable connections available?
(i) Cross cable (to connect two systems directly)
(ii) Straight cable (to connect more systems with the help of switch)
# ethtool <device name> (to check the network cable is connected or not)
# miitool<device name> (It is also used to check the network cable but it will not supports
RHEL - 7 and only supports RHEL - 6 and it also works on physical system only not on
virtual system)
18. In how many ways we can configure the network?
There are two ways to configure the network.
(a) Static Network.
(b) Dynamic Network.
Static Network :
In this way we assign the IP address and hostname manually. Once we configure the IP address, it will
not change.
Dynamic Network :
In this way we assign the IP address and hostname dynamically. This means the IP address will change
at every boot.
19. How to assign the static IP address to the NIC card?
In RHEL - 6 :
# setup
(Move the cursor to Network configuration and press Enter key)
(Move the cursor to Device configuration and press Enter key)
(Select the NIC adapter ie., eth0 and press Enter key)
(Assign the above IP address and other details as per our requirements and move the cursor to "OK"
and press
Enter key)
(Move the cursor to "Save" to save the changes in device configuration and press Enter key)
(Once again move the cursor to "Save & Quit" button and press Enter key)
(Finally move the cursor to "Quit" button and press Enter key to quit the utility)
(Then restart the network service and check for the IP address by # service network restart
command)
(If the change is not reflected with the above service, then restart the network manager by
# service NetworkManager
restart command)
# ifconfig (to see the IP address of the NIC card)
# ping < IP address > (to check whether the IP is pinging or not)
In RHEL - 7 :
# nmcli connection show (to see all the network connections)
# nmcli device show (to see the network details if already configured manually or
dynamically)
Ratnakar Page 35
Abhisol : RED-HAT LINUX 6/7
# nmcli connection add con-name "System eth0" ifname eth0 type ethernet (to add the network
connection)
# nmcli connection modify "System eth0" ipv4.addresses ' < IP address >/< netmask >< gateway > '
ipv4.dns < dns server IP address > ipv4.dns-search < domain name> ipv4.method <static
or manually> (to assign IP address, gateway, dns, domain name and configure the network as
static or manually)
# nmcli connection up "System eth0" (to up the connection)
# systemctl restart network (to restart the network service)
# systemctl enable network (to enable the network service)
# ifconfig (to see the IP address of the NIC card)
# ping < IP address > (to check whether the IP is pinging or not)
20. What are the differences between RHEL - 6 and RHEL - 7 network configuration files?
RHEL - 6 RHEL - 7
/etc/sysconfig/network-scripts is the directory which /etc/sysconfig/network-scripts is the directory which
contains the NIC configuration information. contains the NIC configuration information.
/etc/sysconfig/network-scripts/ifcfg-<device name> is /etc/sysconfig/network-scripts/ifcfg-<device name> is
the file which contains the NIC configuration details. the file which contains the NIC configuration details.
/etc/resolve.conf is the file which contains DNS server IP /etc/resolve.conf is the file which contains DNS server IP
and domain name location. and domain name location.
/etc/sysconfig/network is the hostname configuration
/etc/hostname is the hostname configuration file.
file.
/etc/hosts is the file which contains the local DNS server /etc/hosts is the file which contains the local DNS server
IP address. IP address.
21. What are the differences between Dynamic and Static configuration information?
Dynamic configuration information Static configuration information
Device =<NIC device name> Device =<NIC device name>
HWADDR=02:8a:a6:30:45 HWADDR=02:8a:a6:30:45
Bootproto=DHCP Bootproto=none (means static network)
Onboot=yes (yes means whenever we restart the system
this connection will be activated and no means whenever Onboot=yes
we restart the system the connection will be deactivated)
Type=Ethernet Type=Ethernet
Userctl=yes/no ----> If it is yes all normal users can disable Userctl=yes/no ----> If it is yes all normal users can disable
the NIC card and If it is no except root user nobody can the NIC card and If it is no except root user nobody can
disable the NIC card. disable the NIC card.
RHEL - 7 :
# hostname <fully qualified domain name> (to set the hostname temporarily)
# hostnamectl set-hostname <fully qualified domain name> (to set the hostname permanently)
# systemctl restart network (to update the hostname in the
network)
# systemctl enable network (to enable the connection at
next reboot)
23. How to troubleshoot if the NIC is notworking?
(a) First check the NIC card is present or not by # ifconfig command.
Ratnakar Page 36
Abhisol : RED-HAT LINUX 6/7
(b) If present thencheck the status of the NIC card is enabled or disabledby click on System menu
on the status bar, then select Network Connections menu.
(c) Click on IPV4 settings tab, select the device eth0 or any other and select Enable button, then
Apply and OK.
(d)Open /etc/sysconfig/network-scripts/ifcfg-eth0 file check Userctl=yes or no. If it is yes make it as
no, then check Onboot= yes or no. If it is no make it as yes and save that file.
(e) If not present thencheck the status of the NIC card is enabled or disabled by click on System menu
on the status bar, then select Network Connections menu.
(f) Click on IPV4 settings tab, select the device eth0 or any other and select Enable button, then Apply
and OK.
(g) Using # setup (in RHEL - 6) or # nmcli (in RHEL - 7) commands assign the IP address to the
system and restart the network service by # service network restart (in RHEL - 6) or #
systemctl restart network (in RHEL - 7) commands and enable the service at next reboot by #
chkconfig network on (in RHEL - 6) or # systemctl enable network (in RHEL - 7) commands.
(h) Then up the connection by # ifconfig eth0 up (in RHEL - 6) or # nmcli connection up
<connection name> commands.
(i) Even though it is not working may be the fault in NIC card. If so, contact the hardware vendor by
taking the permissions from higher authorities.
24. What is bonding and how to configure bonding? (from RHEL - 6)
What is link aggregation or bridging or teaming and how to configure teaming? (from RHEL - 7)
Bonding or Teaming or Bridging:
Collection of multiple NIC cards and make them as single connection (virtual) NIC card is called
bonding.
It is nothing but backup of NIC cards.
In RHEL - 6 it is called as Bonding or Bridging.
In RHEL - 7 it is called as Teaming or Link aggregation.
There are 3 types of backup in Bonding or Teaming.
(a) Mode 0 -----> Round Robbin
(b) Mode 1 -----> Activebackup
(c) Mode 3 -----> Broadcasting
Mode 0 :
It provides load balancing and fault tolerance.
Data will be shared by both NIC cards in round robbin.
If one NIC card failed then another NIC card will be activated to communicate with the server
So, there is a load balancing and fault tolerance features.
Mode 1 :
Activebackup means only one NIC card is activated at a time and another one is in down state.
So, there is no load balancing.
But if one NIC card is failed then another NIC card will be activated automatically.
Mode 3 :
In this mode broadcasting is done.
In this the same data will be transferred through two NIC cards.
So there is no load balancing.
But if one NIC card is failed then second NIC card will be activated automatically.
So, all the 3 modes are supports only fault tolerance, but round robbin is the only one mode that
provides load balancing.
Requirements to configure :
(i) Minimum two NIC cards.
(ii) One IP address.
(iii) Connection type is bond (in RHEL - 6) and team (in RHEL - 7) not the ethernet type.
Here no need to assign the IP addresses for two NIC cards and we are giving only one IP
address to bond or team.
Bonding configuration : (in RHEL - 6)
(i) # vim /etc/sysconfig/network-scripts/ifcfg-bond0
DEVICE=bond0
IP ADDR=<IP address>
TYPE=ethernet
Ratnakar Page 37
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 38
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 39
Abhisol : RED-HAT LINUX 6/7
ACK - system again receives ack signal from remote system and connection is established.
For Example: When you ping to a machine you are sending a SYN signal which is ACK by the remote
machine then it sends a SYN ACK signal back to the host machine. Then the host machine receives SYN
ACK and sends the ACK signal back to confirm the same.
36. What are the possible ways to check if your system is listening to port 67?
# nmap localhost | grep 67
# netstat -ntulp | grep 67
37. Explain about IPV6?
It's length is 128 bits. It's netmask is 64
# nmcli connection modify "System eth0" ipv6.addresses 2005:db8:0:1::a00:1/64 ipv6.method static
(to add the IPV6 version of IP address to the
connection "System eth0" )
# nmcli connection modify "System eth0" ipv4.addresses '172.25.5.11/24 172.25.5.254' ipv4.dns
172.25.254.254 ipv4.dns-search example.com ipv4.method static ipv6. addresses 2005:ac18::45/64
ipv6.method static (to assign ipv4 and ipv6 IP addresses to "System eth0
connection)
# nmcli connection down "System eth0" (to down the "System eth0" connection)
# nmcli connection up "System eth0" (to up the "System eth0" connection)
38. How to troubleshoot if the network is not reaching?
(i) First check the network cable is connected or not by # ethtool <NIC device name>
command. if connected then check the IP address is assigned or not by # ifconfig <NIC device name>
command.
(ii) Then check the system uptime by # uptime command.
(iii) Then check the network services status by # service network status and # service
NetworkManager status commands.
(iv) Then check the network service at Run Level by # Chkconfig --list network command.
(v) Then check whether the source network and destination network are in the same domain or
not.
(v) Then finally check the routing table by # route -n command.
Ratnakar Page 40
Abhisol : RED-HAT LINUX 6/7
# dig or # host or #nslookup (all are used to resolve the name to IP and IP to
name)
# nslookup <IP address> (to resolve IP to name)
# nslookup <hostname> (to resolve name to IP)
# host <IP address> (to resolve IP to name)
# host <fully qualified domain name> (to resolve name to IP address)
# dig -x <IP address> (to resolve IP address to name)
# dig <fully qualified domain name> (to resolve name to IP address)
# nmcli (Network Manager Command Line Interface
used to configure the network
setup in RHEL - 7)
# setup (to setup the static network in RHEL - 2, 3, 4, 5
and 6)
# nmtui (to setup the static network in GUI mode for
RHEL - 7)
# nmcli device show (It displays all the NIC devices network information of the
system )
# nmcli device show eth0 (to see all the network devices information of the
eth0)
# nmcli connection or nmcli connection show (to see all the network connection names)
# nmcli connection add con-name <connection name> ifname <NIC device name> type ethernet
(to create a new connection name for
eth0)
# nmcli connection show --activate (it shows which connection is active currently)
# nmcli connection add con-name <connection name> ifname <NIC device name> type ethernet
(to add a connection name to NIC
device)
# nmcli connection modify <connection name> ipv4.addresses ' <IP address>/<netmask><default
gateway> '
ipv4.dns <dns server IP address> ipv4.dsn-search <domain name> ipv4.method <static/manual>
(to modify the connection as static and assign the IP, gateway, dns IP,
domain name)
# nmcli connection delete <connection name> (to delete the specified connection)
# nmcli connection modify <connection name> ipv4.method <static/manual> (to modify dynamic
connection
to static connection)
# nmcli connection up <connection name> (to activate or up the specified connection)
# nmcli connection down <connection name> (to disable or down the specified connection)
# nmcli connection show <connection name> (to see the information about the specified NIC
device)
# ping -I <NIC device name><IP address> (to check the connection from NIC device to IP address)
# hostname <fully qualified domain name>(to set the hostname temporarily)
# hostnamectl set-hostname <fully qualified domain name> (to set the hostname permanently in
RHEL - 7)
NOTE: Whenever we change any parameters in /etc/sysconfig/network-scripts/ifcfg-<NIC device
name> file, then we have to reload that file and again we have to up the connection (nothing but activate the
connection by # nmcli connection reload command.
# nmcli connection reload (to reload the configuration of the connection if any changes on it and it
reloads all
configuration files)
# nmcli connection reload /etc/sysconfig/network-scripts/ifcfg-<NIC device name> (to reload a
single file)
# hostnamectl status (it displays full details of the hostname and works in
RHEL - 7 only)
# nmcli networking off (to disable all the connections at a time)
# nmcli device status (to display all NIC device connections statuses)
Ratnakar Page 41
Abhisol : RED-HAT LINUX 6/7
# nmcli connection modify <connection name> + ipv4.dns <secondary dns server IP> (to add a
secondary dns server IP to
the existing connection)
# netstat -ntulp (to check how many open ports are there in local
system)
# ss -ntulp ( " "
)
# nmap (to check how many open ports are there in
remote system)
# tracepath (it displays the routing information)
# miitool <NIC device name> (to check the network cable is connected or not)
# ethtool <NIC device name> ( " "
)
# ifconfig (to check the NIC card is enable or not)
# ifup <NIC device name> (to enable or up the NIC card)
#ifdown <NIC device name> (to disable or down the NIC card)
# route -n (to check the gateway)
# cat /etc/resolve.conf (to check the dns server information)
# cat /etc/sysconfig/network-scripts/ifcfg-<NIC device name> (to see the NIC device information)
# hostname or cat /etc/sysconfig/network (to check the hostname in RHEL - 6)
# hostnamectl status or cat /etc/hostname (to check the hostname in RHEL - 7)
# ping <IP address> (to check the connection communication)
# chkconfig --list (to list all the services which are running at boo
time in RHEL - 6 & 7)
# systemctl list-unit-files (to list all the processes which are running at boot time in
RHEL - 7)
# chkconfig --level <service name> (it will set the service at run level 3 when the system is
booting)
# service --status-all (to see the list of all the processes which are currently
running)
# ls /etc/init.d (is the location of all the services and deamons in RHEL -
6)
# ls /usr/lib/systemd/system (is the location of all the services and deamons in RHEL -
7)
# /etc/rc.local (is the last script to be run when the system is booting)
(If we enter as sshd stop at the last line of the script file then sshd will be stopped even
though that
sshd is enabled)
# service sshd status (to check the sshd status)
# service --service -all (to see the process ID of all the services)
# netstat -ntulp (to see all the services with port no., status, process ID
and all open ports in local system, routing table and NIC
device information)
-n -----> port no. (numeric no) -t ----->tcp protocol
-u -----> upd protocol -l -----> port is listening or
not
-p -----> display the process ID
# netstat -r (to see all routing table information)
# netstat -i (to see all the NIC cards information)
# nmap (to see the network mapping ie., open ports list on
remote system)
Note : By default this command will not available. So, first install the nmap package by # you install
nmap -y
# nmap <remote system IP address> (to see all the services which are running in the specified
remote system)
# nmap <remote IP 1><remote IP 2><remote IP 3> (to see the running services on specified remote
systems)
Ratnakar Page 42
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 43
Abhisol : RED-HAT LINUX 6/7
5. Managing SELinux
1. What is SELinux?
It is a one type of security that enhances the security that allows users and administrators more
control over which users and applications can access which resources, such as files, Standard Linux access
controls etc.,
It is mainly used to protect internal data (not from external data) from system services. In real time
SELinux is disabled and instead of this IP tables are used. It protects all the services, files and directories by
default if SELinux is enabled.
2. In how many ways we can implement the SELinux? Explain them.
We can implement the SELinux mainly in 2 modes.
(i) Enabled
(ii) Disabled (default mode)
Enabled :
Enabled means enabling the SELinux policy and this mode of SELinux is divided into two parts.
(a) Enforcing
(b) Permissive
Disabled :
Disabled means disabling the SELinux policy.
3. What is Enforcing mode in SELinux?
Enforcing means SELinux is on. It checks SELinux policy and stored a log. No can access the services by
default but we can change the policy whenever we needed.
4. What is Permissive mode in SELinux?
SELinux is on and it don't check SELinux policy and stored the log. Everybody can access the services by
default and we can also change the SELinux policy. It is also called as debugging mode or troubleshooting
mode. In this mode SELinux policies and rules are applied to subjects and objects but actions are not affected.
5. What is Disabled mode in SELinux?
SELinux is turned off and no warning and log messages will be generated and stored.
6. What are Booleans?
Booleans are variables that can either be set as true or false. Booleans enhance the effect of SELinux
policies implemented by the System Administrators. A policy may protects certain deamons or services by
applying various access control rules.
7. What is SELinux policy?
The SELinux policy is the set of rules that guide the SELinux security engine. It defines types for file
objects and domains for process. It uses roles to limit the domains that can be entered and the user identities to
specify the role that can be attained.
8. What are the required files for SELinux?
# vim /etc/selinux/config -----> It is main file for SELinux.
# vim /etc/sysconfig/selinux -----> It is a link file to the above file.
# vim /var/log/audit/audit.log -----> SELinux log messages will be stored in this file.
9. what is the command to see the SELinux mode?
# getenforce (to check the SELinux mode)
10. What is command to set the SELinux mode temporarily?
# setenforce 0 or 1 (to set the SELinux mode. Where ' 0 ' -----> permissive and ' 1 ' ----->
Enforcing)
Note : (i) To change the SELinux mode from Permissive to Enforcing or Enforcing to Permissive
modes the system restart is not required.
(ii) To change Enforcing mode to Disabled mode or Disabled mode to Enforcing mode
the system restart is required.
(iii) The above commands are changed the SELinux mode temporarily only. To make the
selinux changes permanently then open /etc/selinux/config and go to ,
Ratnakar Page 44
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 45
Abhisol : RED-HAT LINUX 6/7
Kernel
Init
Runlevel
BIOS :
BIOS stands for Basic Input and Output System. Whenever we power on the system , the system runs
self diagnostic checks and detects all the connected input and out peripherals. This process is called POST
(Power On Self Test). If any errors found it displays on the screen. Then BIOS locates the booting disk in
the system and locates and loads the Primary boot loader nothing but MBR (Master Boot Record) into the
memory. So, in simple terms the BIOS loads the MBR into memory and executes the MBR.
MBR :
MBR stands for Master Boot Record. It is located in the 1st sector of the bootable disk (it may be
/dev/hda or /dev/sda). The size of the MBR is 512 bytes and it contains three components.
(i) Primary boot loader information and its size is 446 bytes.
(ii) Partition table information and its size is 64 bytes.
(iii) MBR validation check and its size is 2 bytes. Its main purpose is whether the MBR is valid or
not.
The primary boot loader contains the secondary boot loader nothing but GRUB or LILO (in old
systems).
Then primary boot loader locates and loads the secondary boot loader into memory.
So, in simple terms the MBR loads and executes the GRUB boot loader.
GRUB or LILO :
GRUB stands for Grand Unified Boot loader. LILO stands for Linux Loader and is used in old Linux
systems. If we have multiple kernel images installed in our system, we can choose which one to be executed.
GRUB displays a splash screen, waits for few seconds. If we do not enter anything, it loads the default kernel
image as specified in the grub configuration file. GRUB has the knowledge of the file system (the old
LILO didn't understand the system). GRUB configuration file is /boot/grub/grub.conf (/etc/grub.conf
is a link to this). This file contains kernel and initrd images. So, in simple terms GRUB just loads and executes
kernel and initrd images.
Kernel :
Kernel initialises itself and loads the kernel modules and mounts the root file system as specified in the
"root=" in grub.conf and then kernel executes the /sbin/init program. Since init was the 1st program to be
executed by Linux kernel, it has the process ID (PID) of 1. We can see this id by # ps -ef | grep init
command. initrd stands for initial RAM Disk. initrd is used by kernel as temporary file system until kernel is
booted and the real root the file system is mounted. It also contains necessary drivers compiled inside
which helps it to access the hard drive partitions and other hardware.
init level :
In this init program reads the /etc/inittab file and put the system into specified run level. init
identifies the default run level from /etc/inittab file and we can change the this default run level
whenever we needed. We can find the default run level by # grep "initdefault" /etc/inittab command on
our system. Normally the
default run level in Linux is 3 in CLI (Command Line Interface) mode and 5 in GUI (Graphical User
Interface) mode.
Run Level Programs :
The following run levels are available in Linux systems.
0 -----> halt or shutdown the system
1 -----> Single user mode
2 -----> Multi user without NFS
3 -----> Full multi user mode but no GUI and only CLI mode
4 -----> Unused
5 -----> Full multi user mode with GUI (X11 system)
6 -----> reboot the system
Whenever we start the Linux system is booting we can see various services getting started. Those
services are located in different run levels programs executed from the run level directory as defined by
our default run level. Depending on our default init level setting, the system will execute the programs from
one of the following directories.
Run level 0 -----> /etc/rc.d/rc0.d
Run level 1 -----> /etc/rc.d/rc1.d
Ratnakar Page 46
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 47
Abhisol : RED-HAT LINUX 6/7
port as same as connect to systems LAN port and it is also having IP address, user name and password to
connect to the console.
There are different types of console ports for different types of servers. They are given below.
Server Name Name of the Console port Expansion name
DRAC ---> DELL Remote Access Controllers
DELL DRAC or i-DRAC i-DRAC ---> Integrated DELL Remote Access
Controllers
IBM Power series HMC Hardware Management Console
HP ILO Integrated Light Out
Ratnakar Page 48
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 49
Abhisol : RED-HAT LINUX 6/7
# insmod <module name> (to install the kernel module without dependency
modules)
20. How to see the run level?
# who -r (to see the current run level)
21. How to block the USB / CDROM driver?
# lsmod |grep -i usb (to see the USB module is loaded or not)
# mount (to check the USB is mounted or not)
# modprobe -r usb_storage (remove the USB module, if it is mounted it will
not remove)
# umount /<mount point> (to unmount the USB if it is mounted)
# vim /etc/modprobe.d/blocklist.conf (it will open the blocklist.conf file, then put an
entry of USB)
blocklist usb_storage (after type this save and exit this file)
22. What is " wait " and where it is stored?
(i) If there is not enough memory to run the process, then it will wait for free space in memory.
That process is called wait.
(ii) wait is stored in buffer like cache memory.
23. What is run level?
(i) Run level is nothing but to put the system in different levels to perform different maintenance
modes.
(ii) There are 7 run levels. Those are 0, 1, 2, 3, 4, 5 and 6.
(iii) The above levels are used to put the system in different stages to avail different services.
24. What is the default run level?
(i) When we boot the server the system automatically go to one particular run level. That run
level is called the default run level.
(ii) In Linux the default run level is 5 in GUI and 3 in CLI.
(iii) We can modify the default run level by put an entry in /etc/inittab file.
25. Which run level are you using?
Run level 3.
26. How to change the run level temporarily?
# init <run level no.> (to change the run level temporarily)
Example : # init 0 or init 1 or init 2 or init 3 or init 4 or init 5 or init 6
27. Can I mount on two disks alternatively when booting?
No it is not possible to mount on two disks alternatively when booting because we can specify only one
disk as boot disk but not two disks as booting disks in BIOS settings.
So, it is not possible to mount on two disks alternatively when booting.
7. Job Automation
Ratnakar Page 50
Abhisol : RED-HAT LINUX 6/7
(ii) Put the entries of the user names whom do we (ii) Put the entries of the user names whom do we
want to allow the cron jobs. want to deny the cron jobs.
Ratnakar Page 51
Abhisol : RED-HAT LINUX 6/7
(ii) atq means how many at jobs are in queue by # atq command.
9. How to check the jobs?
# at -l (to check the at jobs)
10. How to add crontab entry in command mode?
(i) # define editor=vim (to define the editor as vim)
(ii) # export $editor (export the defined editor)
(iii) # crontab -e (to edit the crontab)
11. How to troubleshoot if the cron job failed?
(i) See the crontab entries for syntactical errors. If there are any errors then correct them,
otherwise it will not execute.
(ii) Check whether the crond deamon is working or not. If it is running, then stop the deamon
and again start the deamon. Even though the problem occurs, then the crontab entries may be
wrong.
(iii) If all the above are ok, then see whether the user who executing cron job has permissions to
execute the cron jobs or not ie., check the user entries in /etc/cron.allow and
/etc/cron.deny files.
(iv) If all are ok, again put the job entry in crontab and execute it.
12. How to schedule the cron task or job?
(i) Open one shell script file.
(ii) Enter all the commands which are required to complete the task or job.
(iii) If the job requires more CPU and more memory, then schedule those jobs at night time or
non-peak hours (generally night time is the non-peak time).
(iv) Then open crontab editor by # crontab -e <user name> command and then put the entries
as below,
<minutes><hours><day of the month><month of the year><day of the week><script name
with path>
(v) Save and exit from the crontab editor.
13. How to add at job and delete the at job?
Adding :
(i) # at <time> (to enter the at job)
(ii) Before that open a file vim and enter the job commands in that file and save as xxxx.sh
(some name with extension must be as .sh)
(iii) Enter the above saved file name within the at job editor.
(iv) Press Ctrl + d to exit from the editor.
(v) Then system will assign a job id to that job. We can see the list of at jobs by # atq
command.
Delete :
(i) See the job id which job we want to delete by # atq command and note that job id.
(ii) Then delete that job by # at -r <job id> command.
14. How to know currently scheduled at jobs?
# atq (to see the currently scheduled at jobs)
15. How to allow or deny at jobs for a user?
For allow For deny
(i) Open /etc/at.allow file. (i) Open /etc/at.deny file.
(ii) Put the entries of the user names whom do we (ii) Put the entries of the user names whom do we
want to allow the at jobs. want to deny the at jobs.
Ratnakar Page 52
Abhisol : RED-HAT LINUX 6/7
# chkconfig atd on (to enable the atd deamon at next boot in RHEL -
6)
# service atd status (to see the status of the atd deamon in RHEL - 6)
# service atd stop (to stop the atd deamon in RHEL - 6)
# service atd start (to start the atd deamon in RHEL - 6)
# service crond restart (to restart the crond deamon in RHEL - 6)
# chkconfig crond on (to enable the crond deamon at next boot in
RHEL - 6)
# service crond status (to see the status of the crond deamon in RHEL -
6)
# service crond stop (to stop the crond deamon in RHEL - 6)
# service crond start (to start the crond deamon in RHEL - 6)
# systemctl restart atd (to restart the atd deamon in RHEL - 7)
# systemctl enable atd (to enable the atd deamon at next boot in RHEL -
7)
# systemctl status atd (to see the status of the atd deamon in RHEL - 7)
# systemctl stop atd (to stop the atd deamon in RHEL - 7)
# systemctl start atd (to start the atd deamon in RHEL - 7)
# systemctl restart crond (to restart the crond deamon in RHEL - 7)
# systemctl enable crond (to enable the crond deamon at next boot in
RHEL - 7)
# systemctl status crond (to see the status of the crond deamon in RHEL -
7)
# systemctl stop crond (to stop the crond deamon in RHEL - 7)
# systemctl start crond (to start the cron deamon in RHEL - 7)
# at -l (to see the list of at jobs)
# atq (to see the jobs in the queue)
# atrm <job id> (to remove the specified at job)
# at <time> (to set the at job to be executed at the specified
time)
# at 9:30 (to set the at job to be executed at 9:30
AM)
Example : # at 9:30
at> useradd gopal
at> groupadd manager
at> rm -rf /opt
at> tar -cvf /root/etc.tar /etc/*
press Ctrl + d to save and exit from at job
# at -r <job id> (to remove the specified job)
* at jobs can be performed only one time. It cannot repeat daily.
* at jobs once scheduled, we cannot edit the jobs or modify the time of the job.
# at now +5min (to execute the at job now after 5
minutes)
at> touch f1 f2 f3
at> mkdir /ram
at><EOT> or Ctrl + d (to save and exit from at job editor)
# tailf /var/log/cron (to see the last 10 lines of at or cron log file
contents)
# at Jan 20 2015 (to schedule the at job on 20th Jan
2015)
# at 5PM Jan 13 2015 (to schedule the at job on 13th Jan 2015 at 5PM)
# at noon + 4days (to schedule the at job today and after 4
days)
# at midnight (to schedule the at job today midnight)
# at midnight + 4days (to schedule the at job today midnight and after
4 days)
# vim /etc/at.deny (to deny the at jobs for specified users)
Ratnakar Page 53
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 54
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 55
Abhisol : RED-HAT LINUX 6/7
(a) Through telnet we can connect the remote (a) Through ssh also we can connect the remote
system, but any network hacker may see the system, but nobody can see the transferred data.
transferred data. And the telnet port no. is 23. And the ssh port no. is 22.
(b) Data will be transferred in non-encrypted format. (b) Data will be transferred in encrypted format.
(c) We cannot trust this telnet connection. (c) We can trust this ssh connection.
(d) We cannot give the trusting in telnet. (d) We can give the trusting in ssh.
(e) By snooping or sniffing technologies we can see (e) By snooping or sniffing technologies we cannot
the data like system or hostname, login name, see the data like system name or hostname, login
password and other data. name, password and other data.
So, there is no security. So, there is a security
(f) # telnet<IP address of the remote system> (f) # ssh<IP address of the remote system>
(provide login name and password) (provide login name and password)
5. In how many ways we can connect the remote host through ssh?
Through ssh we can connect the remote host by two methods.
(i) Command Line Interface (CLI).
Example : # ssh <IP address of the remote system> (provide login name and password)
(ii) Graphical User Interface (GUI).
Example : open VNS server window and provide remote hostname, login name and
password.
6. What are the requirements for ssh?
(i) Remote systems IP address.
(ii) Remote systems user name and password
(iii) A proper network ie., our local and remote systems should be in the same network.
(iv) Open ssh package to configure the ssh.
7. In how many ways we can connect the remote system?
(i) telnet (ii) ssh
(iii) rlogin (iv) rcp
(v) ftp (vi) scp
(vii) sftp (viii) tftp
8. What is the syntax for ssh?
# ssh <IP address of the remote system> -l <user name>
# ssh <user name>@<IP address of the remote system>
# ssh <user name>@<remote hostname with fully qualified domain name>
* After executing any of the above commands, it may asks user name and password. Then type user
name and
passwords to connect the remote systems.
9. How to configure the ssh with keybased authentication or explain the ssh trusting?
(i) SSH keybased authentication is used to access the remote system without asking any
passwords.
(ii) For that, first we have to generate the public and private keys by executing # ssh-keygen
command on our system. Then the public and private keys are generated in /home/<user name>/.ssh
location. ie., .ssh directory in users home directory. And the keys are id_rsa (private key) and id_rsa.pub
(public key).
(iii) Then copy the public key id_rsa.pub on the remote system by executing the below command.
# ssh-copy-id -i <user name>@<IP address of the remote system>
(iv) Go to remote system and check whether the above key is copied or not by # cat
/home/<user name>/.ssh/authorized_keys file. And the private key should be in our system.
(v) Whenever we are trying to establish a connection the public key on remote system should be
matched with the private key on our system. otherwise there is no connection is established.
Ratnakar Page 56
Abhisol : RED-HAT LINUX 6/7
(vi) If both public and private keys are matched then connection will be established and first time it will
ask the password. Once the connection is established, next time onwards it won't ask any passwords.
# ssh <user name>@<remote hostname or IP address> (first time it will asks
the password)
(vii) The authentication is done through the public and private keys, so this type of authentication is
called keybased authentication.
10. How to prevent the remote login root user or how to configure the ssh to prevent the remote login
for root?
(i) The location of the ssh configuration file is /etc/ssh/sshd_config
(ii) Open the configuration file by # vim /etc/ssh/sshd_config
-----> go to line no. 42 (in RHEL - 6) or
-----> go to line no. 48 (in RHEL - 7) PermitRootLogin yes
and uncomment that line and type as " no " in place of " yes " andsave and exit this file.
(iii) Then restart the or reload the sshd deamon by
# service sshd restart (to restart the sshd deamon or service
in RHEL - 6)
# systemctl restart sshd (to restart the sshd deamon or service
in RHEL - 7)
# chkconfig sshd on (to enable the sshd deamon at next
reboot in RHEL - 6)
# systemctl enable sshd (to enable the sshd deamon at next reboot in
RHEL - 7)
# service sshd reload (to reload the sshd deamon in RHEL - 6)
# systemctl reload sshd (to reload the sshd deamon in RHEL - 7)
(iv) Then no root user cannot access our system remotely through ssh service.
11. How to allow the remote users to run GUI commands through ssh?
(i) Open ssh configuration file by # vim /etc/ssh/sshd_config
-----> go to line no. 109 in RHEL - 6 or
-----> go to line no. 117 in RHEL - 7 X11 Forwarding no
type as " yes " in place of " no " then save and exit this file.
* If it is yes, then GUI commands can be executed on the remote system.
* If it is no, then GUI commands cannot be executed on the remote system.
(ii) Then restart the sshd service or deamon to effect the above modification by
# service sshd restart (to restart the sshd deamon or service
in RHEL - 6)
# systemctl restart sshd (to restart the sshd deamon or service
in RHEL - 7)
# chkconfig sshd on (to enable the sshd deamon at next
reboot in RHEL - 6)
# systemctl enable sshd (to enable the sshd deamon at next reboot in
RHEL - 7)
# service sshd reload (to reload the sshd deamon in RHEL - 6)
# systemctl reload sshd (to reload the sshd deamon in RHEL - 7)
(iii) # gedit (to open the gedit editor on remotely)
12. How to allow empty password through ssh?
(i) Open the ssh configuration file by # vim /etc/ssh/sshd_config
-----> go to line no. 65 in RHEL - 6 or
-----> go to line no. 77 in RHEL - 7 PermitEmptyPassword no
type as " yes " in place of " no " then save and exit this file.
* If it is yes, then the remote system will be allow the users with empty password ie.,
without password.
* If it is no, then the remote system will not be allow the users with empty passwords.
(ii) Then restart the sshd service or deamon to effect the above modifications by
# service sshd restart (to restart the sshd deamon or service
in RHEL - 6)
# systemctl restart sshd (to restart the sshd deamon or service
in RHEL - 7)
Ratnakar Page 57
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 58
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 59
Abhisol : RED-HAT LINUX 6/7
(ii) If both systems are pinging then check whether the openssh package is installed or not. If
not installed then install that package and configure ssh on the client system and restart the sshd deamon.
(iii) Check the client <IP address or hostname> in /etc/hosts.deny files. If there is an entry of the
client system in this file, then remove that entry and restart the sshd deamon.
(iv) Finally open the ssh configuration file by # vim /etc/ssh/sshd_config and see any client user
name is present or not and check other lines for client entries in this file, if present remove those entries, save
that file and restart the sshd service.
(v) Finally check whether the client user is there in the server or not, if not create the client user,
assign the password share those details to client. If user is there then check whether the client user's
password is locked, account expired and any other or not, if locked then remove the lock, if client account
is expired then activate that account, assign the password and make the ssh trusting between client and
server systems.
19. How to copy the file from our system to remote system?
# scp <source file name with full path><IP address of the remote system>:<destination location>
Example : ssh /root/script1 192.168.1.1:/root/script1 (to copy /root/script1 file into 192.168.1.1
system)
ssh -r /root/raju/ 192.168.1.1:/root/raju/ (to copy /root/raju directory to remote
system)
* scp means secured copy to copy the files or directories from local system to remote system.
Ratnakar Page 60
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 61
Abhisol : RED-HAT LINUX 6/7
is also moved from swap to RAM. If the pages are moving from swap space to RAM, that is called swap-out
or page-in.
5. How paging space is allocated?
(i) Paging means data transferred from RAM to swap space.
(ii) If we open or run any application, first it will occupy the required space in RAM. If there is
not enough space in RAM, then some amount of application's data will be transferred from RAM to
swap space. ie., swap space is allocated to that application. This allocation is called paging space or
page-out allocation.
(iii) paging will takes place in swap by blocks. First it will create the required no. of blocks in swap
space.
(iv) If RAM space cleared by older or other applications, then swap occupied data is transferred
from swap to RAM. This is called page-in. So, that much amount of space is unallocated in swap ie.,
removed the created blocks in swap.
6. How to create the swap partition?
# fdisk -l (to see the available disks in the system)
# fdisk /dev/sdb
Command (m for help) : n (to create a new partition)
First cylinder : (press Enter key)
Last cylinder : +2048M
Command (m or help) : t (to change the hex code)
Partition no. (1-2) : 2 (to change the partition number hex code)
Hex code : 82 (82 is the hex code for Linux swap)
Command (m for help) : w (write the changes to the disk)
# partprobe or # partprobe /dev/sdb (to update the partition table information)
# mkswap /dev/sdb2 (to convert the raw disk to swap file system)
# swapon /dev/sdb2 (to turn on the swap partition)
# vim /etc/fstab (to make the permanent mount of swap partition)
/dev/sdb2 swap swap defaults 0 0
(save and exit this file)
# mount -a (to mount all the partitions which are having entries in
/etc/fstab file)
# df -hT (will not show the swap size)
# free -m (to see the total RAM and swap size)
7. How to remove the swap partition?
# swapon -s (to see the swap partition names or disks)
# swapoff /dev/sdb2 (to turn off the swap space)
# vim /etc/fstab (open this file and remove the swap partition entry)
(after removing the swap partition save and exit this file)
# fdisk /dev/sdb (to delete the swap partition)
Command (m for help) : d (d for to delete the partition)
Partition no. (1-2) : 2
Command (m for help) : w (to write the changes into the disk)
# partprobe or # partprobe /dev/sdb
# free -m (to see the RAM as well as swap sizes)
8. In how many ways can we create the swap spaces?
(i) By creating a new swap partition on the disk. (separate swap partition)
(ii) By creating swap file.
9. How to create the swap space using the swap file?
Sometimes it is unable to create a swap partition because may be there is no disk space or may be
the partition limit is already exceeded. So, in these scenarios we have to create only the space file.
# dd if = /dev/zero of = /root/linuxswap bs = 1M count = 2048 (to create 2048MB empty file)
# du - /root/linuxswap (to see the linuxswap size)
# mkswap /root/linuxswap (to convert the existing file system to swap file system)
# swapon /root/linuxswap (to turn on the swap file)
# vim /etc/fstab (to make a permanent mount of swap space)
/root/linuxswap swap swap defaults 0 0
(save and exit this file)
Ratnakar Page 62
Abhisol : RED-HAT LINUX 6/7
# mount -a (to mount all the partitions which are having entries in
/etc/fstab file)
# df -hT (will not show the swap size)
# free -m (to see the total RAM and swap size)
10. What is virtual memory?
The combination of Physical memory (RAM) and swap space is called the virtual memory.
So, Virtual memory = Physical memory (RAM) + swap space.
Other useful commands :
# swap -s (to see how many swap partitions are there and with
their names)
# swapon -a (to turn on all the swap partitions)
# swapoff -a (to turn off all the swap partitions)
# cat /etc/mtab (to see the current and temporary mount points)
# mountpoint <directory or mount point> (to check the specified directory is a normal directory
or a
mount point)
# df -ih (to check how many inode numbers are available in the mounted partitions)
11. What happens when the /usr is full?
(i) Users cannot login to the system.
(ii) If already login users not able to execute any command.
12. What happens when memory ie., pagein space is full?
(i) The new applications cannot load due to lack of memory.
(ii) So, users cannot login to the application and cannot access the applications features.
(iii) So, if we increase the swap memory to the required size then the problem will be solved.
13. How to restore the data and upgrade your O/S ?
(i) We can restore the data from backup by, tar, cpio, dd, net backup or other tools.
(ii) If it is in mirror, we can sync the data from mirrored disk.
(iii) We can upgrade the O/S in two ways.
(a) Online :
The O/S is upgraded from previous to present while the system is running. It is risky and
takes long time.
(b) Offline :
First take backup of all the system and then remove previous O/S and install the present
O/S and restore the backup from backup disks or tapes. So, it is very easy and non-risky
job.
Ratnakar Page 63
Abhisol : RED-HAT LINUX 6/7
Package is nothing but a software to perform some tasks. Software is the basic of any O/S allowing to
install and use different utilities.
Package management means installing, updating, querying, repairing and removing packages. In
Linux there are two tools to perform package management.
rpm -----> redhat package manager and yum -----> yellowdog updater modifier.
3. What is rpm?
rpm is a package managing system (collection of tools to manage software packages). rpm is a
powerful and most popular open source tool used for software management for installing, uninstalling
(removing), verifying, querying and updating software packages. It is installed under /var/lib/rpm database
directory. It deals with .rpm files, which contains the actual information about the packages. The rpm log
messages will be stored in /var/log/yum.log file.
4. What are the draw backs of rpm?
(i) rpm cannot resolve the dependency. It means, if we want to install any software, first the
dependency packages should be installed.
(ii) There is no configuration file for rpm.
5. What are the basic modes of rpm commands?
(i) Install -----> used to install rpm packages.
(ii) Update -----> used to updated the packages.
(iii) Troubleshooting -----> used to repair the packages.
(iv) Remove -----> used to remove or uninstall the packages.
(v) Querying -----> used to query (gather information) on packages.
6. How many types of packages are available in Linux?
(i) x86_64.rpm -----> 64 bit package and can be install on 64 bit O/S only.
(ii) x86.rpm -----> 32 bit package and can be install on 32 bit or 64 bit O/S only.
(iii) i 386.rpm -----> 32 bit package and can be install on 32 bit or 64 bit O/S only.
(iv) i 486.rpm -----> " "
(v) i 586.rpm -----> " "
(vi) i 686.rpm -----> 64 bit package and can be install on 64 bit O/S only.
(vii) noarch.rpm -----> no-architecture and can be install on either 32 bit or 64 bit O/S.
7. What is the syntax of rpm command with full options?
# rpm <options><package name>
The options are,-i -----> install
-v -----> verbose
-h -----> progress in hash codes ( in % )
-qi -----> query information about the package
-ql -----> list all package related files.
-qd ----> query about the document of the package
-qc -----> displays the configuration files for that package
-qa -----> query on all installed packages
-V -----> (capital V) to verify the package for repair that package
-R -----> list all dependent packages
--force -----> install the package forcefully
--nodeps -----> install the package without dependency (do not check the
dependencies)
--last -----> all installed packages with date and time
Other useful rpm commands :
# rpm -ivh <package name> (to install the package)
# rpm -qa (to list all installed packages)
# rpm -qa <package name> (to check whether the package is installed or
not)
# rpm -qa |wc -l (to count how many packages already
installed)
# rpm -qa --last | less (to check last installed packages)
# rpmquery -qa (to list all the installed packages)
# rpm -qa |grep -i <package name> (to check the specified package is installed or
not)
# rpm -ivh --test <package name> (to check the package consistency)
Ratnakar Page 64
Abhisol : RED-HAT LINUX 6/7
* If the installation status shows 100%, then the package is in good condition or consistent. But while
showing
the hash progress if it shows any error, then the package is in inconsistent state.
# rpm -ivh finger* (to install the finger package)
# rpm -qa finger (to check whether the package is
installed or not)
# finger <user name> (to check whether the installed package is
working or not)
# rpm -e <package name> (to erase or remove or uninstall the package)
# rpm -evv <package name> (to remove the package in verbose mode)
# rpm --test -ivh (to test the package before installing ie., whether
the
package is suitable or not)
# rpm -qi <package name> (to see the details or information on the installed
package)
# rpm -ql <package name> (to list all package related files)
# rpm -qlc <package name> (to list all the configuration files of that package)
# rpm -qd <package name> (to list all the document files of that package)
# rpm -ivh <package name> --force (to install the package forcefully)
# rpm -qR <package name> (to list the dependencies of that package)
# rpm -qip <package full name> (to display the package information before
installation)
# which <command name> (to display the location of that command)
# rpm -qf <location of the command> (to check the package name for that command)
# rpm -V <package name> (to verify that package, ie., 100% package is
there or not, if any files missed in that package, those
are displayed as a list)
# rpm -ivh <package name> --replacepkgs (to replace the missed files in that package)
# rpm -qp --changelog <package name> (displays all the changed logs like lat time, when
the package
is installed, .....etc.,)
# rpm -qp --scripts <package name> (to see the package installation scripts)
# rpm -K <package full name> (to see the package key)
# rpm -Uvh <package name> (to update the package)
* Update is over write the old version of the package. If any problems in new package, we cannot
solve those issues. So, the better one is install that package as a fresh one (not update option).
* Update will look first the package is available in that system or not. If it is available, it will update
that package otherwise it will install as fresh package.
# rpm -qRp <package name> (to check the dependency packages of that package
before install)
# rpm -ivh <package name> --nodeps (to install the package without dependent
packages)
8. What is yum and explain the yum?
yum stands for yellow dog updater modified. yum is a package management application for
computers running on Linux O/S.yum is a standard method of managing the installation and removal of
software. It is from RHEL - 5 onwards. Packages are downloaded from collections called repositories, which may
be online, on a network and or on installation media. yum is a front end tool for rpm. It is used to resolve the
dependency which cannot be done by rpm. The yum command has access the repository where the packages
are available and can install, update/upgrade, remove and query the packages automatically.
9. What are the important files that are related to yum?
/etc/yum.conf -----> is the yum configuration file.
/etc/yum.repos.d -----> is the directory which contains the yum repository configuration file.
/etc/yum.repos.d/xxxxx.repo ------> is the yum repository configuration file.
/var/lib/yum -----> is the directory which contains the yum databases.
/var/log/yum.log -----> is the file which stores the yum log messages.
10. How setup the yum server?
Ratnakar Page 65
Abhisol : RED-HAT LINUX 6/7
(i) Insert the RHEL DVD, goto that directory and install the vsftpd package by # rpm -ivh
vsfpd*
(ii) Goto /var/fp/pub directory and create rhel6 directory by # mkdir rhel6
(iii) Goto DVD mounted directory and copy all the DVD content into /var/fp/pub/rhel
directory by
# cp -rvpf /media/DVD/ /var/fp/pub/rhel6
(iv) Restart the vsftpd service by # service vsfpd restart command.
(v) Then enable the vsftpd service by # chkconfig vsfpd on command.
(vi) Goto /etc/yum.repos.d directory and create one yum repository file by # vim linux.repo
command.
(vii) In the above file the contents are as below,
[linux] (Linux repo id)
name=yum repo server (yum server name)
baseurl=file:///var/ftp/pub/rhel6 or baseurl=ftp://<IP address of the
system>/pub/rhel6
gpgcheck=0 (0 means while installing it will not ask
any signature keys of yum packages, If it is 1, then it will ask the signature keys
while installing the packages)
enabled=1 (if multiple repositories are there, then
enable this only)
(save and exit this file)
(viii) # yum clean all (to clean the old one update the new repository)
(ix) # yum repolist (it displays no. of packages in that
repository)
11. How to setup the yum client?
(i) Goto /etc/yum.repos.d directory and create the repository file by # vim linux.repo
(ii) Type the entries as below,
[linux] (Linux repo id)
name=yum repo client (yum repo client)
baseurl=ftp or http://<IP address of the server>/pub/rhel6
gpgcheck=0 (0 means while installing it will not ask
any signature keys of yum packages, If it is 1, then it will ask the signature keys
while installing the packages)
enabled=1 (if multiple repositories are there, then enable this only)
(save and exit)
(iii) # yum clean all (to clean the old one update the new repository)
(iv) # yum repolist (it displays no. of packages in that
repository)
12. How to configure the yum repository to deny some packages to be installed?
(i) To configure the yum tool the yum configuration file is /etc/yum.conf
(ii) To deny some packages, open the yum configuration file by # vim /etc/yum.conf
command.
(iii) Gotolast line and type as, exclude=*(all) kernel* fp* then save and exit this file.
(iv) Then kernel* and fp* packages will be denied when we trying to install those packages.
13. How to change the yum repository default location?
(i) Open yum configuration file by # vim /etc/yum.conf command.
(ii) Goto last line and type as, repository=<yum repository new location with full path> then
save and exit this file.
(iii) Then the yum repository new location will be changed from old one new one.
14. How to change the yum log file default location?
(i) Open the yum configuration file by # vim /etc/yum.conf command.
(ii) Goto last line and type as, log=<yum log file new location with full path> then save and
exit this file.
(iii) Then the default log location is changed from /var/log/yum.log file to new location.
15. How to configure the yum to restrict the architecture (64 bit or 32 bit) etc.,?
(i) Open the yum configuration file by # vim /etc/yum.conf command.
(ii) Goto last line and type as, exactarch=1 then save and exit this file.
Ratnakar Page 66
Abhisol : RED-HAT LINUX 6/7
(iii) 1 means first it installs 64 bit packages and if it is 0 then 32 bit packages will be installed.
(iv) Open the yum configuration file by # vim /etc/yum.conf command.
(v) Goto last line and type as, cachedir=<download new location> then save and exit this
file.
(vi) Then whenever we install the packages the downloaded location will be the new location.
(vii) Open the yum configuration file by # vim /etc/yum.conf command.
(viii) Goto last line and type as, assumeyes=1 then save and exit this file.
(ix) Whenever we install any package using yum then no need to mention -y option if assumeyes=1
and if assumeyes=0 then we have to mention -y option when we install the package.
16. What is O/S patch and how to add those patches on production servers or how to upgrade the
kernel?
(i) O/S patch is nothing but update the new kernel. Normally O/S patch is software that contains
some programs to fix the bugs in O/S ie., in kernel.
(ii) If our server is registered and configured in RedHat network, then we will get the information
about that updated kernel s information and then download that kernel updations.
(iii) Every O/S patch is supplied with a document about pre-requisites to apply that patch.
(iv) Check the pre-requisites, space requirements and others. if all are ok,
(v) Then we take the business approval and make CRQ's (Change requests).
(vi) Then the project manager will initiate the mail thread ie., sending the mail or messages to various
teams who are dealing with that server.
(vii) We get the response from different teams which are involving in this process.
(a) For example Monitoring team to ignore alerts from that server if the system hangs or
rebooted.
(b) DBA team if database stopped or crashed or system failed.
(c) Application team if the application effects while patching.
(viii) If the server is in cluster, then move the service group and resources to another systems manually
called switch over.
(ix) Inform the Application team to stop the application and database team to stop the
database.
(x) If the server is in cluster there is no need of reboot (no down time) else down time needed to
reboot.
(xi) Check the root disk is in normal file system or VxVM.
(xii) If mirror disk is there, split the mirror disk from original disk and boot in single user mode and add
the patch by # rpm -ivh <patch name> command.
(xiii) Then reboot the system and won't attach the mirror disk to avoid any unexpected situations or
problems and put that server under test upto 1week or 10 days depending on the company's policy.
(xiv) After the test period, if there is no problems raised then attach the system in live mode and also
with mirror disk to sync the data to update the system.
(xv) Then we inform the Application, Database, Monitoring and other teams who are dealing with
that server to test application, database, monitoring and others see the status.
(xvi) Then finally close the issue or CRQ.
17. Afer installation of package or patch if the package or patch is removed then what will happened?
(i) If kernel patch is removed, then the system will hang and for others there is no effect.
(ii) If package is removed then the application that belongs to that removed package will effect.
18. Afer applying the patch need to reboot the system or not?
(i) If the patch is kernel patch or clustered patch then only the system reboot is required.
(ii) If the patch is normal patch then there is no need of the reboot required.
19. If the package is not installing. How to troubleshoot?
(i) Check the package pre-requisites to install the package.
(ii) If pre-requisites are not matched with our system, then the package will not be installed i.e.,
O/S compatibility to install that package.
(iii) If there is no sufficient space in the system, the package will not be installed.
(iv) If the package is not properly downloaded, then the package will not be installed.
20. If the patch is not applied successfully what will you do?
(i) Check whether the patch is installed properly or not by # rpm -qa <patch name>
command.
(ii) Check the /var/log/yum.log file to verify or see why the patch is not successfully installed.
Ratnakar Page 67
Abhisol : RED-HAT LINUX 6/7
(iii) If any possible to resolved those issues, resolve and remove that patch with # rpm -e
<patch name> command.
(iv) If any reboots required to effect, then reboot the system.
(v) Again add that patch by # rpm -ivh <patch name> command.
(vi) Then check the patch by # rpm -qa <patch name> command
Other useful yum commands :
# yum repoinfo (to list all the information on all the repositories)
# yum repoinfo <repo id> (to list all the information on specified
repository)
# yum install <package name> -y (to download and install the package and y
means yes)
# yum install <package name> -d (to download the package)
# yum erase or remove <package name> -y (to remove or uninstall the package and y
means yes)
# yum list installed (to display the list of all installed
packages)
# yum list available (to list all the available packages to be installed)
# yum list all | less (to list all the installed and not installed
packages)
# yum search <package name> (to search a particular package is available or
not)
# yum info <package name> (to display the information on that package)
# yum update <package name> (if the update version of the specified package is
available,
then update that package)
# yum update all (to update all the packages nothing but whole system
will be updated)
# yum downgrade <package name>(to revert back ie., go back to previous version of that package if
new version is not working
properly)
# yum history (to display the yum history)
# yum history info < id > (to display the information of that history id)
# yum history undo < id > (to remove that history id)
# yum history undo < id > (to redo the above removed history id)
# yum grouplist (to display the list of group packages)
# yum groupinstall <package name> (to install the group package)
# yum install@<group package name> (to install the group package in another way)
# yum groupinfo <group package name> (to display the group package information)
# yum grouplist hidden (to list all the group packages names including
installed or not installed and
hidden group packages)
# yum-config-manager disablerepo=<repo id> (to disable the yum repository. So, we cannot
install any package
from the repository)
# yum clean all (to clear the history, if we disable the repository id, then we have to clean the
history, then only it will
disable the repository)
# yumdownloader <package name> (to download the package from the repository,
and the downloaded location is the present
working directory)
# man yum.conf (to see the manual pages on yum configuration
file)
# yum-config-manager --add-repo=http://content.example.com/rhel7.0/x86_64/dvd (then the
yum repository will be created automatically with .repo file also. And this works
only in RHEL - 7)
Ratnakar Page 68
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 69
Abhisol : RED-HAT LINUX 6/7
Examples:
# tar -cvf /root/etc.tar /etc/* (to copy all the files and directories from /etc and make
a single file and place in
the /root/etc.tar file)
# tar -tvf /root/etc/tar (to long listing the contents of the /root/etc.tar
file)
# tar -xvf /root/etc.tar -C /root1/ (to extract and copy the files in /root1/
location)
# tar -xf /root/etc.tar (to list the contents of the tar file)
# tar -f /root/etc.tar --update or -u <file name or directory> (to add the new contents to the
existing
tar file)
# tar -f /root/etc.tar --delete <file name or directory> (to delete the file from the tar)
# tar -u /root/etc.tar /var (to add the /var contents into the /root/etc.tar file)
# tar -cvf mytar.tar / --xattrs (to archive the contents along with SELinux and ACL
permissions)
# du -h /root/etc.tar (to see the size of the tar compressed file)
5. What are the compressing & uncompressing tools available for tar and explain them?
Compressing Tools Uncompressing Tools
# gzip (.gz) # gunzip
# bzip2 (.bz2) # bunzip2
# xz (RHEL - 7) # unxz
# gzip <tar file name> (to compress the size of the tar file and the output file
is .tar.gz)
# gunzip < .gz compressed file name> (to uncompress the compressed tar file and the output
is .tar only)
# bzip2 <tar file name> (to compress the size of the tar file and the output is
.tar.bz2)
# bunzip2 < .bz2 compressed file name> (to uncompress the compressed file and the output is
.tar only)
6. What is scp, rsyncand how to use it?
scp means secure copy. ie., ssh + cp = scp which is used to copy the files/directories into remote
system.
scp will copy files/directories into remote system blindly ie., if the file already exits, it will over write
that file.
So, scp will take more time to copy when compared to # rsync tool.
# scp <file name><user name>@ <IP address of the remote system>:<location to be copied>
# scp anaconda* root@192.168.1.1:/root (to copy anaconda file into /root of the remote system)
# scp -r /etc/ root@192.168.1.1:/raju (to copy /etc/ directory into /raju of remote
system)
#scp -av /raju root@192.168.1.1:/root (to copy /raju into /root of the remote system)
# scp -r root@192.168.1.1 :/etc /home (to copy /etc of the remote system into /home of the
local system)
rsync is also used to copy files/directories into remote systems. rsync tool will compare the new files
or directories and copy only the changed or modified contents of the files into remote system. So, it takes less
time to copy when compared to # scp tool.
Ratnakar Page 70
Abhisol : RED-HAT LINUX 6/7
# rsync -av root@192.168.1.1:/etc /home (to copy /etc directory changed contents into
/home)
rsync options are, -a -----> all (copy the file with all permissions except SELinux and ACL
permissions)
-aA -----> synchronize ACL permissions
-aAx ----> synchronize ACL and SELinux permissions also.
7. What is cpio and how to take a backup and restore using cpio?
cpio means copy input and output. It supports any size of the file system. It skips the bad blocks also.
Syntax of cpio with full options :
# ls <source file name> |cpio <options>><destination file name> (to take a backup of the source
directory and stored the backup into
destination directory)
The options are, -t -----> to list the cpio contents
-i -----> to restore the cpio backup
-v -----> to display on the screen ie., verbose
-o -----> to take a backup
Examples :
# ls | cpio -ov > /opt/root.cpio (to take a backup of root directory and stored
in /opt )
# cpio -iv < /opt/root.cpio (to restore the backup)
# ls /etc | cpio -ov > /opt/etc.cpio (to take a backup of the /etc directory and
stored in /opt)
# cd /etc (go to that /etc directory)
# rm -rf * (to remove all the contents from /etc)
# cpio -iv < /opt/etc.cpio (to restore the /etc contents from the cpio
backup)
8. What is dd and how to take a backup and restore using dd?
dd means disk to disk backup. Using dd command we can take a backup of the data from one
disk to another disk. It copies the data in byte to byte. It can take a backup of the disk including bad blocks.
# dd if = <disk 1> of = <disk 2> (to take a backup from disk 1 and stores in disk
2)
# dd if = /dev/zero of = /root/raju bs = 1M count = 2048 (to create an empty file with
2GB size)
# dd if = /dev/sda of = /root/mbr.bak bs = 1 count = 512 (to take the backup of
/dev/sda Master
Boot Record)
# dd if = /root/mbr.bak of = /dev/sdb (to restore the MBR from backup to second disk
/dev/sdb)
# dd if = /dev/sda1 of = /dev/sdb1 (to take a backup of the entire /dev/sda1 disk
partition)
# dd if = /dev/sdb1 of = /dev/sda1 (to restore the /dev/sda1 contents from the
above backup)
# dd if = /dev/sda of = /dev/sdb (to take a backup of the entire /dev/sda disk into
/dev/sdb)
# dd if = /dev/cdrom of = /root/rhel6.iso (to create a ISO image file of the CD/DVD)
9. What is dump and how to take a backup and restore using dump and restore?
dump is a command used to take a backup of file systems only. We cannot take a backup of files and
directories. We cannot take a backup of disk to disk backup. It is not recommended to take a backup on
mounted file systems. So, unmount the file system and then take a backup is recommended. By default dump is
not available in the system. so, first install the dump package and then execute the dump commands.
# yum install dump* -y (to install the dump package)
The syntax for dump :
# dump <options><destination file name><source file name>(to take a backup of the file systems)
The options are, -0----->full backup
-(1 - 9) -----> incremental backups
-u -----> update the /etc/dumpdates file after successful dump
-v -----> verbose
Ratnakar Page 71
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 72
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 73
Abhisol : RED-HAT LINUX 6/7
the Apache server has a deamon called httpd that listens on port no. 80 on our computer and when it
receives a request for a page it sends the appropriate data back to the client machine.
Example : apache, samba, NFS, FTP, ....etc.,
2. What are the commands used to control the services?
service :
This controls the starting and stopping the services during session and these settings will not be saved.
We can start the Apache service in this way, but it will not start on booting time. Using this method the service
will continue to run on upto next boot but from next boot the service will not be started automatically.
chkconfig :
This controls which services are set to start at boot time. These settings will be saved and applied at
next boot. Changing these settings will not start the service immediately and it will just flag them to be started
from the next boot.
3. What are the differences between RHEL -6 and RHEL-7 services?
RHEL -6 RHEL -7
(a) The parent process ie., the starting process
(a) The parent process ie., the starting process is
is
initd and it's process id (pid) is 1.
systemd and it's process id (pid) is 1.
(b) There two commands for starting the services . (b) Here only one command is used to start the
They are called # service and # chkconfig service. That is # systemctl
(c) # service command is used to start or stop the (c) # systemctl is the command to start or stop
services temporarily and # chkconfig is used the services temporarily or next booting
to start or stop the services at next booting time. time.
(c) It will take more time to the system and (c) It will take less time to start the system and
services. services when compared to RHEL - 6.
(d) It will start the services one by one. (d) It will start the services parallel not one by one.
Ratnakar Page 74
Abhisol : RED-HAT LINUX 6/7
Masking the services means hiding the services and unmasking the services means unhiding the
services. The masking and unmasking are the new commands in RHEL - 7. If any two similar services (for
example ntp and chrony) are there in a system, we cannot start the two services at a time. In these scenarios
we go for mask and unmask commands.
# systemctl mask sshd (to hide the sshd service temporarily ie., we cannot start
the services
when we mask any service)
# systemctl unmask sshd (to unhide the sshd service ie., we can start the
service again)
* we can also use RHEL - 6 commands like as, # service and # chkconfig , but these two commands
will
internally call the # systemctl commands only. So, in RHEL - 7 # systemctl command is the
recommended
one.
# systemctl --failed --type=service (to check all the failed services)
# systemctl --failed --type=process (to check all the failed processes)
* In RHEL - 6 service names ends with 'd' only, but in RHEL - 7 the service names ends with d.service
and these
are all text files only. So, in RHEL - 7 we can open and see all the system services and read their contents.
# ps (to see the active process in the system)
# top (It will show a dynamic real-time view of a running system. ie., a summary of
processes or threads currently managed
by the Linux kernel)
# kill (It sends the specified signal to the specified process or process group)
# pkill (It will send the specified signal to each process instead of listing them on standard
output)
# pstree (to show all the running processes as a tree structure. The tree is rooted either pid
or init)
# nice (to run a program with modified scheduling priority ie., it runs the process with an
adjustable niceness)
# renice (to alter the scheduling priority of one or more running processes)
# pgrep (to list the process id's which matches with the pgrep argument)
RHEL - 6 commands :
# service <service name> status (to check the status of the service)
# service <service name> start (to start the service)
# service <service name> stop (to stop the service)
# service <service name> reload (to reload the service)
# service <service name> restart (to restart the service)
* These above commands will change the service statuses temporarily. So if we want to change
statuses of the
process automatically from next boot onwards we have to enable those services as given below.
# chkconfig --list (to check the availability of the services in
different run levels)
# chkconfig --list <service name> (to check the availability of the service in
different run levels)
# chkconfig <service name> on (to make the service available after restart)
# chkconfig <service name> off (to make the service unavailable after next boot)
# chkconfig --level <1-6><service name><on/off> (to make the service available or unavailable on
the
particular run level)
# chkconfig --level 5 vsftpd on (to make the vsftpd service available on run level 5)
# chkconfig --level 345 vsftpd on (to make the vsftpd service available on run levels 3, 4
and 5)
RHEL - 7 commands :
# systemctl status <service name> (to check the status of the service)
# systemctl start <service name> (to start the service)
Ratnakar Page 75
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 76
Abhisol : RED-HAT LINUX 6/7
Using top command we can monitor the processes continuously. By default every 3 seconds it will
refresh the data.
2. How many process are run generally on Linux and explain them?
There are generally three types of processes that run on Linux. They are,
(i) Interactive Processes
(ii) System Process or deamon
(iii) Automatic or batch.
Interactive Processes :
Interactive processes are those processes that are invoked by a user and can interact with the user.
For example # vi or # vim are the interactive processes. Interactive processes may be run in foreground or
background. The foreground process is the process that we are currently interacting with and is using the
terminal as its stdin (standard input) and stdout (standard output). The background process is not
interacting with the user and can be in one of two states, ie., paused or running.
System Processes or deamons :
Deamon is refer to processes that are running on the computer and provides services but do not
interact with the console. Most server software is implemented as a deamon. For example Apache, samba, sshd
are the deamons. Any process can become a deamon as long as it is run in the background and does not
interact with the user.
Automatic processes :
Automatic processes are not connected to a terminal and these are queued into a spooler area where
they wait to be executed on a FIFO (First In - First Out) basis. Such tasks can be executed using one of two
criteria.
At certain date and time : done using the "at" command.
When the total system load is low enough to accept extra jobs : done using the " cron " command. By
default tasks are put in a queue where they wait to be executed until the system load is lower than 0.8 and
cron job processing is also used for optimizing system performance.
3. What is parent process?
The process which starts or creates another process is called the parent process. Every process will
be having a parent process except initd process. The initd process is the parent process to all the remaining
processes in
Linux system because it is the first process which gets started by the kernel at the time of booting and
it's PID
is 1. Only after initd process gets started, the remaining processes are called by it, and hence it is
responsible for all the remaining processes in the system. The parent process is identified by PPID (parent
process ID).
4. What is child process?
A process which started or created by the parent process is called child process and it is identified by
PID.
Useful # ps commands :
# ps -a (it displays all the terminals processes information)
# ps -au (it displays all the terminals processes information with
user names)
# ps -aux (it displays all the terminals processes information
including background
processes with user names)
* ? (question mark) if it is appeared at tty column, it indicates that is a background process.
# ps -ef (it displays the total processes information with parent
process ID (PPID))
# ps -P <process id> (it displays the process name if we know the process ID (pid))
# pidof<process name> (to see the process ID of the specified process)
# pidof initd (to see the process ID of the initd process)
# pstree (to display the parent and child processes structure in tree
format)
# ps -u <user name> (to display all the processes of the specified user)
# ps -u raju (to display all the processes of the user raju)
# ps -G <group name> (to display all the processes that are running by a particular group)
Ratnakar Page 77
Abhisol : RED-HAT LINUX 6/7
# ps -o pid, comm, %mem, %cpu(to display process id, command, %memory and %cpu
utilization nothing
but filtering the output)
# ps -Ao pid, comm, %mem, %cpu (to display the same information as above but including
some more
information)
# ps -o pid, comm, %mem, %cpu |sort -k <no.> -r |head -n 10 (to display which process is
utilizingmore
memory or cpu in reverse order where -k means field, <no.> means field no. and -r reverse order)
# ps -o pid, comm, %mem, %cpu |sort -k 3 -r |head -n 10 (to display the process which
occupies more memory and cpu
utilization in reverse order)
# ps -aux |grep firefox (to check whether the firefox is
running or not)
# pgrep -U <user name> (to display all the process
ID's only for that user)
* To communicate with the processes # kill and # pkill commands are used.
# kill -----> It will kill the processes using PID's.
# pkill -----> It will kill the processes using process names.
* We can also give some signals while using the above commands and we get the signals information
by
# kill -l command. This command will list all the signals with no's and there are 64 signals to pass.
5. What is signal in Process management?
Signals are a way of sending simple messages to processes. Most of these messages are already
defined and however signals can only be processed when the process is in user mode. Every signal has a unique
signal name. Each signal name is a macro which stands for a positive integer. Signals can be generated by the
process itself or they can be sent from one process to another. A variety of signals can be generated or
delivered and they have many uses for programmers.
6. What are the important signals in process management?
1. SIGHUP -----> to reload (read the configuration and load)
2. SIGINT -----> to interrupt from the keyboard (nothing but Ctrl + c)
3. SIGQUIT -----> to quit the process from keyboard (nothing but Ctrl + l)
9. SIGKILL -----> to kill the process forcefully (nothing but unblockable)
15. SIGTERM -----> wait for completing the process and then terminate (terminate gracefully)
18. SIGCONT -----> to continue or resume the process if it is stopped
19. SIGSTOP -----> to terminate the process (If it is not stopped the process we cannot continue
or resume that process by Ctrl +
c or Ctrl + z)
20. SIGHTSTP ----> to stop the process (nothing but Ctrl + z)
* But the most commonly used signals are 1, 9, 15 and 20.
* The default signal is 15 (gracefully) when we not specified any signal.
# kill - <signal><process ID> (to kill the specified process using kill signal)
# kill -9 1291 (to kill the process which has the PID as 1291)
* If we not specified the signal no. then the default signal 15 will effect.
# kill 1291 (to kill the process 1291 with default signal)
# pkill -u <user name> (to kill all the processes of the specified user)
# pkill -u raju (to kill all the processes of the user raju)
# pkill -9 firefox (to kill the firefox process)
7. How many process states are there?
There are six process states and they are,
(i) Running process (the process which is in running state and is indicated by " r " ).
(ii) Sleeping process (the process which is in sleeping state and is indicated by " s " )
(iii) Waiting process (the process which is in waiting state and is indicated by " w " ).
(iv) Stopping process (the process which is in stopping state and is indicated by " T " ).
(v) Orphan process (the process which is running without parent process and is indicated by " o " ).
(vi) Zombie process (the process which is running without child process and is indicated by " Z " ).
8. What is Orphan process?
Ratnakar Page 78
Abhisol : RED-HAT LINUX 6/7
The processes which are running without parent processes are called Orphan processes. Sometimes
parent process closed without knowing the child processes. But the child processes are running at that time.
These child processes are called Orphan processes.
9. What is Zombie process?
When we start parent process, it will start some child processes. After some time the child processes
will died because of not knowing the parent processes. These parent processes (which are running without
child processes) are called Zambie processes. These are also called as defaunct processes.
10. How to set the priority for a process?
Processes priority means managing processor time. The processor or CPU will perform multiple tasks
at the same time. Sometimes we can have enough room to take on multiple projects and sometimes we can
only focus on one thing at a time. Other times something important pops up and we want to devote all of our
energy into solving that problem while putting less important tasks on the back burner.
In Linux we can set guidelines for the CPU to follow when it is looking at all the tasks it has to do.
These guidelines are called niceness or nice value. The Linux niceness scale goes from -20 to 19. The lower
the number the more priority that task gets. If the niceness value is higher number like 19 the task will be set
to the lowest priority and the CPU will process it whenever it gets a chance. The default nice value is 0 (zero).
By using this scale we can allocate our CPU resources more appropriately. Lower priority programs
that are not important can be set to a higher nice value, while the higher priority programs like deamons and
services can be set to receive more of the CPU's focus. We can even give a specific user a lower nice value for
all his/her processes so we can limit their ability to slow down the computer's core services.
There are two options to reduce/increase the value of a process. We can either do it using the nice
or renice commands.
Examples :
# nice -n <nice value range from -20 to 19><command> (to set a priority to a process before
starting it)
# nice -n 5 cat > raju (to set the medium priority to cat
command)
# ps -elf (to check the nice value
for that command)
* To reschedule the nice value of existing process, first check the PID of that process by # ps -elf
command
and then change the niceness of that command by # renice <nice value (-20 to 19)>< PID > command.
# renice 10 1560 (to reschedule the PID
1560)
11. What is top command and what it shows?
top is a command to see the processes states and statuses information continuously until we quit by
pressing " q ". By default top command will refresh the data for every 3 seconds.
When we need to see the running processes on our Linux in real time, the top command will be very
useful. Besides the running processes the top command also displays other information like free memory both
physical and swap.
The first line shows the current time, "up 1 day" shows how long the system has been up for, "3
user" how many users login, "load average : 0.01, 0.00, 0.23" the load average of the system 1, 5 and
15 minutes.
The second line shows the no of processes and their current states.
The third line shows CPU utilization details like % of the users processes, % of the system processes,
% of available CPU and % of CPU waiting time for I/O (input and output).
The fourth and fifth lines shows the total physical memory in the system, used physical memory,
free physical memory, buffered physical memory, the total swap memory in the system, used swap memory,
free swap memory and cached swap memory, ... etc.,
From sixth line onwards the fields are as follows.
PID Process ID
USER Owner of the process ie., which user executed that process
PR Dynamic Priority
NI Nice value, also known as base value
VIRT Virtual size of the task includes the size of processes executable binary
RES The size of RAM currently consumed by the task and not included the swap portion
SHR Shared memory area by two or more tasks
Ratnakar Page 79
Abhisol : RED-HAT LINUX 6/7
S Task Status
% CPU The % of CPU time dedicated to run the task and it is dynamically changed
% MEM The % of memory currently consumed by the task
TIME+ The total CPU time the task has been used since it started. + sign means it is displayed
with hundredth of a second granularity. By default, TIME/TIME+ does not account
the CPU time used by the task's dead children
COMMAND Showing program name or process name.
* While running the top command, just press the following keys woks and the output will be stored in
real time.
1 -----> 2nd CPU information Shift + > -----> Page up
h ----->Help Shift + < -----> Page down
Enter -----> Refresh immediately n -----> Number of tasks
k -----> Kill the process u -----> user processes
M -----> Sort by memory usage P -----> Sort by CPU usage
T -----> Sort by cumulative time z -----> Color display
r -----> To reschedule the priority by renice d -----> Change the delay time
(refresh time)
b -----> Highlight the running process W -----> Write the information
in /root/.toprc file
q -----> quit the top command
The status of the processes :
r -----> Running process s -----> Sleeping process
z -----> Zombie process T -----> Stopped process
D -----> Uninterrupted sleeping process R< -----> High priority
N > ---->Low priority o -----> Orphan process
+ -----> Foreground process ? -----> Background process
# renice -n 10 5453 (to change the specified running process priority
on line)
# nice -n -15 firefox (to start the firefox process with priority level
-15)
12. How to solve the issue if the CPU utilization is 99% ?
(i) First check which process and who executed that process is consuming more CPU utilization
or memory utilization by executing # top command.
(ii) Then inform to those users who executed that process though mail, message or raising the
ticket.
(iii) If those users are not available or not responding to our mail then we have to change the
priority of that process using # renice command.
(iv) Before changing the process priority level , we have to get or take approval from our team lead or
project manager.
13. How to check the wwn no. of lun?
(i) First install sysutils package to execute the commands to know the wwn number by
executing command,
# yum install sysutils -y
(ii) # systool -c fs_host -v |grep "port-name" (to check the wwn number)
14. How to remove the page caches and other caches?
# sysnc ; echo 2 > /proc/sys/vm/drop_caches (to remove the page caches)
# sysnc ; echo 3 > /proc/sys/vm/drop_caches (to remove all types of caches like dent
cache,
page caches and others)
15. What is "sosreport" and how to generate it?
Sosreport is a command in linux (RHEL / CentOS) which collects system configuration and
diagnostic information of your linux box like running kernel version, loaded modules, and system and
service configuration files. This command also runs external programs to collect further information, and
stores this output in the resulting archive.
Sosreport is required when you have open a case with redhat for technical support. Redhat support
Engineers will require sosreport of your server for troubleshooting purpose.
Ratnakar Page 80
Abhisol : RED-HAT LINUX 6/7
To run sosreport , sos package should be installed. Sos package is part of default installation in most
of linux. If for any reason this package is no installed , then use below yum command to install sos
package :
# yum install sos -y
Generate the sosreport :
Open the terminal and type sosreport command :
# sosreport
This command will normally complete within a few minutes. Depending on local configuration and
the options specified in some cases the command may take longer to finish. Once completed, sosreport
will generate a compressed a file under /tmp folder. Different versions use different compression schemes
(gz, bz2, or xz). The file should be provided to Redhat support representative (normally as an attachment
to an open case).
Note: sosreport requires root permissions to run.
Different Options used in sosreport command :
The sosreport command has a modular structure and allows the user to enable and disable modules
and specify module options via the command line. To list available modules (plug-ins) use the
following command:
# sosreport -l
To turn off a module include it in a comma-separated list of modules passed to the -n/–skip-
plugins option. For instance to disable both the kvmand amd modules:
# sosreport -n kvm,amd
Individual modules may provide additional options that may be specified via the -k option. For
example on Red Hat Enterprise Linux 5 installations the sos rpm module collects "rpm -Va" output by default.
As this may be time-consuming the behaviour may be disabled via:
# sosreport -k rpm.rpmva=off
16. What is the command to see the complete information on virtual memory?
# vmstat is the command to the complete information on virtual memory like no of processes,
memory usage, paging memory, block I/O (input /output), traps, disk and CPU activity.
# vmstat 2 10 (It will give the report for every 2 seconds upto 10 times)
The fields are, r -----> how many waiting processes
b -----> how many processes are busy
swapd -----> how much virtual memory used
free -----> how much memory is freely available
buffer -----> how much temporary memory using
caching -----> how much caching still using
swapin -----> how much data transferred from RAM to swap
swapout ---> how much data transferred from swap to RAM
bi -----> how much block input
bo -----> how much block output
system in ---> the no. of interrupts
system cs ---> the no. of contexts changed
# vmstat -a (to see the active and inactive processes)
# vmstat -d (to see the statistics of the disk used)
# cat /proc/meminfo (to see the present memory information)
17. What is the command to see the I/O statistics?
# iostat (to see the Input and Output statistics in the Linux system)
* This command is used to monitoring the system input and output statistics and processes
transfer rate.
* It is also used to monitor how many kilo bytes read per second and how many kilo bytes
read and write, shows CPU load average statistics since the last reboot in first line and most current
data is shown in the second line.
18. How many CPUs are there in the system?
# cat /proc/cpuinfo command will show no. of CPUs, no. of cores, no. of threads, no. of sockets
and the CPU architecture, ...etc., information.
# nproc command will give the no. of CPUs present in the system.
Ratnakar Page 81
Abhisol : RED-HAT LINUX 6/7
# lscpu command will give the information the architecture of the CPU (x86_64 or x86_32), no. of
cores, no. of threads, no. of sockets, cache memory sizes (L 1, L 2, L 3, ...etc) , CPU speed and the
vendor of the CPU.
19. How to send the processor into offline?
# ls -l /sys/devices/system/cpu is the command to see the no. of processors present in the system.
# echo 0 > /sys/devices/system/cpu/cpu4/online is the command to send the CPU4 into offline.
# grep "processor" /proc/cpuinfo or # cat /sys/devices/system/cpu/offline are the command
to see the processor status whether offline.
20. How to send the processor into online?
# ls -l /sys/devices/system/cpu is the command to see the no. of processors present in the system.
# echo 1 > /sys/devices/system/cpu/cpu4/online is the command to send the CPU4 into offline.
# grep "processor" /proc/cpuinfo or # cat /sys/devices/system/cpu/online are the command
to see the processor status whether online.
21. How to clear /var and /tmp directories?
(i) Copy all the entries of those directories into a separate locations.
(ii) Redirect the null values in /var and /tmp directories by executing the below commands.
# cat /dev/null > /var (to nullifying the /var directory)
# cat /dev/null > /tmp (to nullifying the /tmp directory)
22. How to troubleshoot if df -k is giving error?
(i) First check which file system is giving error by # df -k command then see whether any files
are opened or not. If opened then close those files by informing those teams which are using that
file system.
(ii) Unmount that file system by taking approval from higher authorities and run fsck on that file
system, then normally it will be solved if we run fsck command.
(iii) If not solved even though we run fsck then delete or remove that file system, recreate that
file system, mount that file system and restore the data from recent backup.
23. What are the differences between a deamon and a process?
(i) Deamon is a service to provide some services to the users, where as a process is to do some
particular tasks.
(ii) We can enable or disable the deamon, but we cannot disable or enable the process.
(iii) We can do start or stop the deamon, but we cannot start or stop the process. We only kill
the process.
(iv) We can enable or disable to start the deamons at boot time as per our requirement, ie., on
demand is possible, but it is not possible if is a process.
(v) Deamon is a background process where as process is a foreground process.
24. What is command to check the load average?
# uptime is the command to check the system load, present time, from how many hours the system
is running and load average.
* The load average shows three fields. The 1st field shows the load average from 1 minute, 2nd
field shows the load average from 5 minutes and 3rd field shows the load average from 15
minutes.
25. How to assign or shif the process to the particular CPU?
(i) First install util-linux package by # yum install util-linux -y command.
(ii) Check the specified process is assigned to which processor ie., which CPU by # taskset -p
<pid> command.
(iii) Then shift the process to another available CPU by # taskset -cp <cpu -list><pid> command.
Examples:
# taskset -p 2125 (to check which processor is assigned to that process ID)
# taskset -cp 0, 4 2125 (to shift the process to the CPUs 0 and 4)
# taskset 0 firefox (to assign the firefox process to the CPU 0)
26. How to limit the CPU usage of a linux process?
(a) First install the cpulimit package by # yum install cpulimit -y command.
* This package is not available in normal Linux packages and it is available in EPEL (Extra
Packages for Enterprise Linux). So, first we have to enable the EPEL repository in our
system by following steps.
(i) # yum install epel-release -y (to install the epel-release package in
RHEL - 7)
Ratnakar Page 82
Abhisol : RED-HAT LINUX 6/7
Before using the SAR utility first we should install the SAR utility package by # yum install sysstat*
-y command.
Examples :
# sar 2 10 (It will give the system report for every 2 seconds upto
10 times)
# sar -p 2 10 (to see the CPU utilization for every 2 seconds upto
10 times)
Ratnakar Page 83
Abhisol : RED-HAT LINUX 6/7
# sar -p ALL -f /var/log/sa/sa25 (to check the CPU utilization on 25th day of the
current month)
# sar -p ALL -f /var/log/sa/sa10 -s 07:00:00 -e 15:00:00 (to check the CPU utilization on
10th day of the current month from 7:00 to 15:00 hrs. where -s means
start time -e end time)
# sar -r 2 10 (to see the memory utilization for every 2 seconds upto
10 times)
# sar -r -f /var/log/sa/sa14 (to check the memory utilization on 14th day of the
current month)
# sar -r -f /var/log/sa/sa10 -s 07:00:00 -e 15:00:00 (to check the memory utilization on
10th day of the current month from 7:00 to 15:00 hrs. where -s means
start time -e end time)
# sar -S 2 10 (to see the swap utilization for every 2 seconds upto
10 times)
# sar -S -f /var/log/sa/sa25 (to check the swap utilization on 25th day of the
current month)
# sar -S -f /var/log/sa/sa10 -s 07:00:00 -e 15:00:00 (to check the swap utilization on 10th
day of the current month from 7:00 to 15:00 hrs. where -s
means start time -e end time)
# sar -q 2 10 (to see the load average for every 2 seconds upto
10 times)
# sar -q -f /var/log/sa/sa14 (to check the load average on 14th day of the
current month)
# sar -q -f /var/log/sa/sa10 -s 07:00:00 -e 15:00:00 (to check the load average on 10th
day of the current month from 7:00 to 15:00 hrs. where -s means
start time -e end time)
# sar -B 2 10 (to see the paging information for every 2 seconds upto
10 times)
# sar -d 2 10 (to see the disk usage for every 2 seconds upto
10 times)
# sar -m 2 10 (to see the power management for every 2 seconds upto
10 times)
# sar -b 2 10 (to see the disk input and output statistics for every 2 seconds upto
10 times)
29. What are the port no. for different services?
The Port no. list :
FTP (For data transfer) 20 HTTP 80
FTP (For connection) 21 POP3 110
SSH 22 NTP 123
Telnet 23 LDAP 389
Send Mail or Postfix 25 Log Server 514
DNS 53 HTTPS 443
DHCP (For Server) 67 LDAPS (LDAP + SSL) 636
DHCP (For Client) 68 NFS 2049
TFTP (Trivial File transfer) 69 Squid 3128
Samba shared name verification 137 Samba Data Transfer 138
Samba Connection Establishment 138 Samba Authentication 445
MySQL 3306 ISCSI 3260
* Ping is not used any port number. It is used ICMP (Internet Control Message Protocol) only.
Other useful commands :
Ratnakar Page 84
Abhisol : RED-HAT LINUX 6/7
# uptime (to see from how long the system is running and also gives the load average report)
* The load average is having 3 fields. 1 - present status, 2 - 5 minutes back and 3 - 15 minutes
back.
# iostat 5 2 (to monitor the input and output statistics for every 5 seconds upto
10 times)
# nproc (to check how many processors (CPUs) are there in
the system)
# top 1 (to see the no. processors (CPUs) are there in
the system)
# iptraf (to monitor the TCP or network traffic statistics in graphical
mode)
* Before using this command install the iptraf package by # yum install iptraf* -y command.
# iftraf -ng -f eth0 (to see the IP traffic statistics in
graphical mode)
# lscpu (to see the no. of CPUs present in the
system)
# lsusb (to see the no. of USB devices present in the
system)
# lsblk (to see all the partitions or block devices
information)
# cat /etc/redhat-release (to see the RHEL
version of system)
# dmidecode (to see the complete hardware information of
the system)
# dmidecode -t memory (to see the memory
information of the system)
# dmidecode -t bios (to see the system's bios
information)
# dmidecode -t system (to see the system's
information)
# dmidecode -t processor to see the processor's (CPU's) information of
the system)
# dmidecode -t 1 (to check the System's Serial No.
information)
# dmidecode -t 4 (to see the processor's (CPU's)
information)
# dmidecode -t 16 (to check the Max. RAM capacity of
the system)
# dmidecode -t 17 (to check how much RAM the
system is using)
# pidstat (to monitoring the individual tasks currently being managed by the
Linux kernel)
# nfsiostat (to monitor the NFS input
and output statistics)
# cifsiostat (to monitor the Samba input
and output statistics)
# stat <file name or directory name> (to see the statistics of the file or
directory)
# strings <command name> (to read the binary language of
the command)
# find / -nouser -o -nogroup (to see the files which are no belongs to any user and
any group)
# systemctl -t help (to see the list of systemd objects that
are available)
# systemctl -l help (to see the list of
unit names)
Ratnakar Page 85
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 86
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 87
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 88
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 89
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 90
Abhisol : RED-HAT LINUX 6/7
In order to access the NFS shared data, we have to mount that shared directory on local mount point.
The mounting can be direct mount (manual mount) and indirect mount (auto mount).
Direct mount :
First create the local mount point and then mount that shared NFS directory on our local systems
mount point by # mount <server host name or IP address> : <shared directory with full path><mount
point> command. But this is temporary mount and we can mount it permanently by put an entry in
/etc/fstab file.
Example :
# mount 172.25.9.11:/product /mnt/nfs (to mount the directory /product on /nfs mount
point temporarily)
# vim /etc/fstab (open this file and put an entry of mount point to mount
permanently)
172.25.9.11:/product /mnt/nfs nfs defaults 0 0 (save and exit this
file)
Indirect mount :
This method is used to mount the NFS share by using the Autofs service. Autofs uses the automount
daemon to manage our mount points by only mounting them dynamically when they are accessed.
Autofs consults the master map configuration file /etc/auto.master to determine which mount points
are defined. It then starts an automount process with the appropriate parameters for each mount point.
Each line in the master map defines a mount point and a separate map file that defines the file systems to
be mounted under this mount point. For example, the /etc/auto.misc file might define mount points in
the /mnt directory; this relationship would be defined in the /etc/auto.master file.
Each entry in auto.master has three fields. The first field is the mount point. The second field is the
location of the map file, and the third field is optional. The third field can contain information such as a
timeout value.
For example, to mount the directory /product on the remote machine server9.example.com at the
mount point /mnt/nfs on your machine, add the following line to auto.master:
/mnt /etc/auto.misc --timeout 60
Next, add the following line to /etc/auto.misc:
nfs -rw server9.example.com:/product
The first field in /etc/auto.misc is the name of the /mnt subdirectory. This subdirectory is created
dynamically by automount. It should not actually exist on the client machine. The second field contains
mount options such asrw for read and write access. The third field is the location of the NFS export
including the hostname and directory.
The directory /mnt must be exits on the local file system. There should be no sub directories on the
local file system.
To start the autofs service, at a shell prompt, type the following command:
# servive autofs restart
To view the active mount points, type the following command at a shell prompt:
# service autofs status
If you modify the /etc/auto.master configuration file while autofs is running, you must tell the
automount daemon(s) to reload by typing the following command at a shell prompt:
# service autofs reload
7. How to configure NFS server?
(i) First install the NFS package by # yum install nfs* -y command.
(ii) Create the NFS shared directory on server system by # mkdir /public command.
(iii) Modify the permissions of the /public directory by # chmod 777 /public command. (These
permissions may be changed
depend on it's requirement)
(iv) Modify the SELinux context of the /public directory if SELinux is enabled by executing the below
command. # chcon -t public_content_t /public
(v) create some files in the /public directory by # touch f{1..10} command.
(vi) Open the file NFS configuration file and put an entry of the NFS shared information by # vim
/etc/exports command and type as an entry like <shared directory name><to whom to export the
shared directory> (<permissions>, sync)
For example,
# vim /etc/exports
Ratnakar Page 91
Abhisol : RED-HAT LINUX 6/7
rw read/write permissions
ro read-only permissions
(vii) Export the above shared directory to the defined client systems by # exportfs -rv command.
(viii) Restart the NFS services by following the commands in RHEL - 6 and RHEL - 7.
# service rpcbind restart (to restart the rpcbind service
in RHEL - 6)
# service nfs restart (to restart the
NFS service in RHEL - 6)
# systemctl restart nfs-server (to restart the NFS service
in RHEL - 7)
(ix) Make the NFS service permanently boot at next boot time onwards as follows.
# chkconfig rpcbind on (to on the rpcbind service
in RHEL - 6)
# chkconfig nfs on (to on the nfs
service in RHEL - 6)
# systemctl enable nfs-server (to enable the
nfs-server in RHEL - 7)
(x) Export the NFS shared directory as follows.
# exportfs -rv
(xi) Enable the NFS service to the IP tables and Firewall in RHEL - 6 and RHEL - 7 as follows.
In RHEL - 6 :
(i) # setup
(a) Select Firewall Configuration.
(b) Select Customize ( Make sure firewall option remain selected ).
(c) Select NFS4 ( by pressing spacebar once ).
(d) Select Forward and press Enter.
(e) Select eth0 and Select Close button and press Enter.
(f) Select ok and press Enter.
Ratnakar Page 92
Abhisol : RED-HAT LINUX 6/7
In RHEL - 7 :
# firewall-cmd --permanent -add-service=nfs (to enable the nfs
service at firewall)
# firewall-cmd --permanent -add-service=mountd (to enable
the mountd service at firewall)
# firewall-cmd --permanent -add-service=rpc-bind (to enable
the rpc-bind service at firewall)
# firewall-cmd --complete-reload (to reload the
firewall)
8. What are requirements for NFS client?
(i) NFS server IP address or hostname.
(ii) Check the NFS shared name.
(iii) Create the local mount point.
(iv) Mount the NFS shared name on the local mount point.
(v) Go to mount point (local mount point) and access the NFS shared data.
9. How to access the NFS shared directory from the client?
(i) On Client system, install the nfs-utils package by # yum install nfs-utils* -y
command.
(ii) Check the exported NFS shared directory by # showmount -e <IP address or hostname
of the server>
Example : # showmount -e 172.25.9.11 or # showmount -e
server9.example.com
(iii) Create one mount point to mount the NFS shared directory by # mkdir /<mount point>
command.
Example : # mkdir /mnt/nfs
(iv) Mount the NFS shared directory on the above created mount point.
# mount <IP address or server hostname> : <NFS shared directory><mount
point>
Example : # mount 172.25.9.11:/public /mnt/nfs or
# mount server9.example.com:/public /mnt/nfs
* These are temporary mount only. ie., If the system is rebooted these are unmounted automatically
and we have to mount again after the system is rebooted.
Ratnakar Page 93
Abhisol : RED-HAT LINUX 6/7
(v) So, if we want to mount it permanently, then open /etc/fstab file and put an entry of the
mount point.
# vim /etc/fstab (to open the file)
<IP address or server hostname> : <shared name><mount point><file system>
defaults 0 0
Example : 172.25.9.11:/public /mnt/nfs nfs defaults 0 0 ( or )
server9.example.com:/public /mnt/nfs nfs defaults 0 0
(save and exit the file)
(vi) Mount all the mount points as mentioned in the above /etc/fstab file by # mount -a
command.
(vii) # df -hT command is used to check all the mounted partitions with file system types.
10. Why root user cannot create the files in the NFS shared directory and how to make him to create
the files?
The root user normally has all the permissions, but in NFS root user is also becomes as a normal
user. So, the root user having no permissions to create the files on the NFS shared directory.
The root user becomes as nfsnobodyuser and group also nfsnobody due to root_squash
permission is there by default. So, if we want to make the root user to create file on the NFS shared directory,
then go to server side and open the /etc/exports file and type as below,
<shared name> <domain name or systems names>(permissions, sync, no_root_squash)
Example : /public *.example.com(rw, sync, no_root_squash)
(save and exit the file)
# exportfs -rv (to export the shared directory)
# service nfs restart (to restart the NFS service in RHEL - 6)
# systemctl restart nfs-server (to restart the NFS service in RHEL - 7)
11. What are the disadvantages of the direct or manual mounting?
(i) Manual mounting means, we have to mount manually, so it creates so many problems. For
example if NFS service is not available then, # df -hT command will hang.
(ii) If the NFS server is down while booting the client, the client will not boot because it searches
for NFS mount point as an entry in /etc/fstab file.
(iii) Another disadvantage of manual mounting is it consumes more memory and CPU resources on
the client system.
So, to overcome the above problems normally indirect or automount is used using Autofs tool.
12. What is secure NFS server and explain it?
Secure NFS server means NFS server with Kerberos security. It is used to protect the NFS exports.
Kerbebors is a authentication tool to protect the NFS server shares. It uses the krb5p method to protect by
authentication mechanism and encrypt the data while communication.
For this one key file is required and this should be stored in each and every client which are accessing
the nfs secure directory. Then only Kerberos security will be available. This key file should be stored in
/etc/krb5.keytab file. For example the following command will download and store the keytab.
# wget http://classroom.example.com/pub/keytabs/server9.keytab -O /etc/krb5.keytab (where O
is capital)
13. How to configure the secure NFS server?
(i) Install the NFS package.
# yum install nfs* -y
(ii) Create a directory to share through NFS server.
# mkdir /securenfs
(iii) Modify the permissions of shared directory.
# chmod 777 /securenfs
(iv)Change the SELinux context of the directory if the SELinux is enabled.
# chcon -t public_content_t /securenfs
(v) Open the NFS configuration file and put an entry of the shared directory.
# vim /etc/exports
/securenfs *.example.com(rw,sec=krb5p)
(save and exit the file)
(vi)Download the keytab and store it in /etc/krb5.keytb file.
# wget http://classroom.example.com/pub/keytabs/server9.keytab -O
/etc/krb5.keytab
Ratnakar Page 94
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 95
Abhisol : RED-HAT LINUX 6/7
16. How to add the LDAP user shared directory and how the LDAP user access that directory on client?
(i) Create a sub-directory in /securenfs directory.
# mkdir /securenfs/secure
(ii) Change the ownership of the above sub directory to LDAP user.
# chown ldapuser9 /securenfs/secure
(iii) Assign the full permissions on that directory to LDAP user.
# setfacl -m u : ldapuser9 : rwx /securenfs/secure
(iv) Change the SELinux context of that directory if SELinux is enabled.
# chcon -t public_content_t /securenfs/secure
(v) Re-export the secure NFS shared directory.
# exportfs -rv
(vi) Restart the NFS services.
# service nfs restart (restart the NFS
service In RHEL - 6)
# service nfs-secure-server restart (restart the secure NFS service
In RHEL - 6)
# systemctl restart nfs (restart the NFS
service In RHEL - 7)
# systemctl restart nfs-secure (restart the secure NFS
service In RHEL - 7)
On Client side :
(i) Login as LDAP user on local system through ssh.
# ssh ldapuser9@localhost (type yes and press Enter
if it asks (yes/no))
(ii) Type the password as kerberos if it asks the LDAP user password.
(iii) Go to that secure NFS shared mount point and access the contents.
$ cd /mnt/nfssecure (to
access the mount point)
$ ls (to
see the contents in that)
$ cd secure (to
access the sub directory)
Ratnakar Page 96
Abhisol : RED-HAT LINUX 6/7
$ ls (to
see the contents in that)
$ exit (to exit or
logout from ssh)
17. What are the advantages of NFS?
(i) NFS allows multiple computers can use same files, because all the users on the network or
domain can access the same data.
(ii) NFS reduces the storage costs by sharing applications on computers instead of allocating
local disk space for each user application.
(iii) NFS provides data consistency and reliability, because all users can read same set of files.
(iv) NFS supports heterogeneous environments which are compatible to NFS.
(v) NFS reduces System Administration overhead.
18. Remote user cannot mount the NFS shared directory. How to resolve this?
(i) First check the user belongs to the same domain as the NFS shared or not. ie., the user's
system domain and NFS shared system domain should communicate.
(ii) Check the user's system is pinging or not.
(iii) Check the user's name is present, not present or disabled to access the NFS server.
(iv) Check the mounted file system is shared or not.
(v) Check all the NFS server and client deamons are running or not.
(vi) Check all the network connections are properly established or not.
(vii) Check whether the NFS service is running or not in server's current run level.
(viii) Check whether the NFS server is running or hung or shutdown.
(ix) Check both NFS server and NFS client systems network routers, network connections and IP
addresses.
(x) Check the mount point is correct or not, paths are correct or not and files are there or
not.
(xi) Check the NFS shared directory and mount point details are correct or not in /etc/fstab file.
(xii) Check the keytabs are downloaded and stored properly in /etc/krb5.keytab file on both NFS
server and client.
(xii) Finally check whether the NFS port no. 2049 is running or not and make sure that the IP tables
or firewall should not block the NFS service.
19. NFS server and NFS client configurations are OK, but at client it is not showing anything. How to
resolve?
(i) The rpcbind may be failed.
(ii) The server is not responding.
(iii) NFS client may be failed at reboot.
(iv) The NFS service is not responding.
(v) The deamons on both systems may not be running.
(vi) Network may be failed on both server and client or any one system.
(vii) May be server and client are not in the same domain or not pinging.
(viii) The server may be in hung or shutdown state.
20. What is Autofs ?
Autofs is service that can automatically mount the shared directory on demand and will automatically
unmount the shared directory if it is not accessed within the specified timeout period. The default timeout
period is 5 minutes or we can specify the timeout period in /etc/auto.master file.
21. What are the advantages of the Autofs?
(i) Shares are accessed automatically and transparently when a user tries to access any files or
directories under the designated mount point of the remote file system to be mounted.
(ii) Booting time is significantly reduced because no mounting is done at boot time.
(iii) Network access and efficiency are improved by reducing the number of permanently active mount
points.
(iv) Failed mount requests can be reduced by designating alternate servers as the source of a file
system.
(v) Users do not need to have root privilegesto mount or unmount the mount point.
(vi) We can reduce the CPU and memory utilizations because autofs will not mount permanently.
(vii) We can also reduce hard disk utilization because permanent mount points occupies the hard disk
space.
Ratnakar Page 97
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 98
Abhisol : RED-HAT LINUX 6/7
Ratnakar Page 99
Abhisol : RED-HAT LINUX 6/7
$ ls (permission denied
message will be displayed)
$ cifscreds add <host name or IP address of the samba server>(to add cifs
credentials to the server)
$ ls (to see the contents of
the samba shared directory)
10. How to access the samba server from windows system?
(i) Goto Windows system, click on START button, click on Run and type as \\172.25.9.11\samba
command.
(ii) Then provide samba user name and password if it prompts us.
(iii) Then see the contents of the samba shared directory.
Other useful commands :
# smbpasswd -a <user name> (to add the samba password to the
samba user)
# smbpasswd -d <user name> (to disable the samba user's
password)
# smbpasswd -e <user name> (to enable the samba user's
password)
# smbpasswd -r <user name> (to remove the samba user's
password)
# smbpasswd -x <user name> (to delete the samba user's
password)
# smbpasswd -n <user name> (to set the samba user's
password as null)
# findsmb (to check how many samba servers are
running in our network)
# pdbedit (to check the available samba users who are
accessing currently)
# smbstatus (to check how many smb clients are connected to the
samba server)
# mount -t cifs //<host name or IP address of the samba server>/<shared direcotory><mount
point> -o
user=<user name> (to mount the samba share directory on local mount point
temporarily)
Example : # mount -t cifs //172.25.9.11/samba /mnt/samba -o user=raju
# timedatectl (to check whether the client's time is synchronized to the server's
time)
# timedatectl list-timezones (to list the different time zones)
# timedatectl set-time <hh : mm : ss> (to set the time)
# timedatectl set-timezone Asia/Kolkata(to set the time zone in RHEL - 7)
# tzselect Asia/Kolkata (to set the time zone in RHEL - 6)
18. DNS (Domain Naming System)
1. What is DNS?
DNS stands for Domain Naming System. The DNStranslates Internet domain and host names to IP
addresses. DNS automatically converts the names we type in our Web browser address bar to the IP
addresses of Web servers hosting those sites.
DNS implements a distributed database to store this name and address information for all public hosts
on the Internet. DNS assumes IP addresses do not change (are statically assigned rather than dynamically
assigned).
2. What is DNS server and how it works?
In any network, the hosts primarily communicate between each other through IP addresses. For
example, if my computer is doing a google search, my computer is actually communicating with the IP
address of one of the web servers of google.com. However, even if the computer is efficient with numbers,
humans on the other hand work better with names. For this reason, the TCP/IP protocol includes
the Domain Name System (DNS) to link between IPs and computer names i.e. hostnames. The DNS is a
distributed database of computers that is responsible for resolving hostnames against IP addresses and vice-
versa.
Any DNS query involves two parts.
(i) The Resolver: The resolver forms up or initiates the query. The resolver itself does not run as a
program. /etc/resolve.conf is an example of a resolver.
(ii) Name Server: The Name Server is the service running in the server that responds to the DNS
query generated by the resolver i.e. answers to the question of the
resolver.
The working DNS :
(i) The client initiates a query to find a domain example.com. The client sends the query to
the DNS server of the ISP. (The DNS Server IP in the client computer is set as the IP address of
the DNS Server of the ISP)
(ii) The DNS Server of the ISP first checks it's own cache to check whether it already knows the
answer. But as the answer is not present, it generates another query. As the Top Level Domain of
example.com is .com, so the DNS server queries the Internet Registration Authority to find who
is responsible for example.com.
(iii) The Internet Registration Authority responds to the ISP by answering the query.
(iv) Once the ISP DNS Server knows the authoritative name servers, it contacts the authoritative name
servers to find out the IP address for www.example.com i.e. the IP address of host www in
the domain example.com. (v) example.com responds to the ISP DNS Server by answering the query and
providing the IP address of the web server i.e. www
(vi) The ISP DNS Server stores the answer in it's cache for future use and answers to the client by
sending the IP address of the www server.
(vii) The client may store the answer to the DNS query in it's own cache for future use. Then the client
communicates directly with the www server of domain example.com using the IP
address.
(viii) The www server responds by sending the index.html page.
3. What is the format of the domain name?
Like a physical address, internet domain names are hierarchical way. If the Fully Qualified Domain
Name is www.google.co.in , the www is the Hostname, google is the Domain, co is the Second Level
Domain and in is the Top Level Domain.
4. What are the files we have to edit to configure the DNS?
There are four files to edit to configure the DNS. They are /etc/named.conf,
/etc/named.rfc1912.zones, Forward Lookup Zoneand Reverse Lookup Zone. DNS provides a
centralised database for resolution. Zone
# vim /etc/sysconfig/network (open this file and go to last line and type as below
in RHEL - 6 only)
HOSTNAME=<fully qualified domain name>
HOSTNAME=server6.example.com (for example of the above
syntax)
(ii) Open the DNS main configuration file by # vim /etc/named.conf command.
* Go to line number 11 and edit this line as below.
listen-on port 53 { 127.0.0.1; <server IP address>; };
Example : listen-on port 53 {127.0.0.1; 172.25.6.11; };
* Go to line number 17 and edit this line as below.
allow-query { localhost; <Network ID>/<netmask>; };
Example : allow-query {localhost; 172.25.6.0/24; };
(save and exit this file)
(iii) Open the DNS zone reference file by # vim /etc/named.rfc1912.zones command
* Go to line number 19 and copy 5 lines and paste them at last of the file.
zone "<domain name>" IN {
type-slave;
file "slaves/<forward lookup zone file name>";
master { <Primary DNS server IP address; };
};
Example : zone "example.com" IN {
type-slave;
file "slaves/named.forward";
master { 172.25.9.11; };
};
* Go to line number 31 and copy 5 lines and paste them at last of the file.
zone "<Three octets of the DNS server IP address> . in . addr . arpa" IN {
type-slave;
file "slaves/<reverse lookup zone file name>";
master { <Primary DNS server IP address; };
};
Example : zone "9.25.172 . in . addr . arpa" IN {
type-slave;
file "slaves/named.reverse";
master { 172.25.9.11; };
};
(save and exit this file)
(iv) Copy /var/named/slaves/named.localhost to /var/named/slaves/named.forward and edit as
follows.
# mkdir /var/named/slaves
# cp -p /var/named/slaves/named.localhost /var/named/slaves/named.forward
# vim /var/named/slaves/named.forward
* Go to line number 2 and edit as follows.
@ IN SOA <secondary DNS server fully qualified domain name> . com root
. <domain name> . {
* Go to line number 8 and edit as follows.
NS <DNS server fully qualified domain name> .
A <DNS server IP address>
<secondary DNS server fully qualified domain name> IN A <secondary DNS server
IP address>
<DNS server fully qualified domain name> IN A <DNS server IP address>
<Client 1 fully qualified domain name> IN A <Client 1 IP address>
<Client 2 fully qualified domain name> IN A <Client 2 IP address>
<Client 3 fully qualified domain name> IN A <Client 3 IP address>
www IN CNAME <DNS server fully qualified domain name>
Example : The line number 2 should be edited as follows.
@ IN SOA server6.example.com. root.example.com. {
packet with that address information. The server also configures the client's DNS servers, WINS servers,
NTP serves and sometimes other services also.
(iv) Then the Client sends a REQUEST or DHCP REQUEST packet, letting the server know that
it intends to use the address.
(v) Then the server sends an ACK or DHCP ACK packet, conforming that the client has been
given a lease on the address for a server specified period of time.
3. What is the disadvantage to assign the Static IP address?
When a system uses a static IP address, It means that the system is manually configured to use a
specific IP address. One problem with static assignment, which can result from user error or inattention to
detail, occurs when two systems are configured with the same IP address. This creates a conflict that results
in loss of service. Using DHCP to dynamically assign IP addresses to avoid these conflicts.
4. What is the profile of DHCP?
Package : dhcp*
Script file : /etc/init.d/dhcpd
Configuration file : /etc/dhcp/dhcpd.conf
Deamon : dhcpd
Port numbers : 67 (dhcp server) and 68 (dhcp client)
Log messages : /var/log/messages
In RHEL - 6:
# iptables -A INPUT -p udp -i eth0 --deport 67 -j ACCEPT
# iptables -A INPUT -p tcp -i eth0 --deport 67 -j ACCEPT
# iptables -A INPUT -p udp -i eth0 --deport 68 -j ACCEPT
# iptables -A INPUT -p tcp -i eth0 --deport 68 -j ACCEPT
# iptables -A OUTPUT -p udp -i eth0 --deport 67 -j ACCEPT
# iptables -A OUTPUT -p tcp -i eth0 --deport 67 -j ACCEPT
# iptables -A OUTPUT -p udp -i eth0 --deport 68 -j ACCEPT
# iptables -A OUTPUT -p tcp -i eth0 --deport 68 -j ACCEPT
In RHEL - 7 :
# firewall-cmd --permanent --add-service=dhcp
# firewall-cmd --complete-reload
(vii) # cat /var/lib/dhcpd/dhcpd.lease (to see the DHCP lease message database on
DHCP server)
6. How to configure the DHCP client?
(i) Change the IP addressing from static to dynamic if it is configured as static.
In RHEL - 6 :
# setup
Network Configuration -----> Press Enter -----> Device Configuration -----> Select
eth0 ----->
Press Enter -----> Select Use DHCP -----> Press Spacebar -----> OK -----> Save
----->Save & Quit
-----> Quit
# service NetworkManager restart
# service network restart
In RHEL - 7:
# nmcli connection modify "System eth0" ipv4.method auto or dynamic
# nmcli connection down "System eth0"
# nmcli connection up "System eth0"
# systemctl restart network
(ii) Open /etc/sysconfig/network-scripts/ifcfg-eth0 file and edit the BOOTPROTO line.
# vim /etc/sysconfig/network-scripts/ifcfg-eth0
* Go to BOOTPROTO line and edit that line as below.
BOOTPROTO=dhcp
(save and exit this file)
(iii) Get the IP address from the DHCP server.
# dhclient
# ifdown eth0
# ifup eth0
7. How to fix the IP address to the client every time it requests or how to configure the MAC
binding?
The process of assigning the same IP address (fixed IP address) to the DHCP client every time it
booted is called "MAC binding".
(i) Open the file /etc/dhcp/dhcpd.conf by # vim /etc/dhcp/dhcpd.conf command.
* Go to line number 76 and 77 and edit those lines as below.
host <dhcp client hostname> {
hardware ethernet <MAC address of the Client's NIC card>;
fixed addresses <IP address>;
}
Example :
host client 1 {
hardware ethernet 2015:ac18::55;
fixed addresses 172.25.9.150;
}
(save and exit this file)
(ii) Restart the DHCP services in RHEL - 6 and RHEL - 7.
<Directory "/var/www/html">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
Example :
# vim /etc/httpd/conf.d/ip.conf (create the
configuration file)
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName server9.example.com
DocumentRoot /var/www/html
</VirtualHost>
<Directory "/var/www/html">
AllowOverride none
Require All Granted
</Directory>
(h) Go to document root directory and create the index.html file.
# cd /var/www/html
# vim index.html
<html>
<H1>
This is IP based Web Hosting
</H1>
</html>
(save and exit this file)
(i) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(j) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(k) Go to client system, open the firefox browser and type as http://server9.example.com in
address bar and check the index page is displayed or not.
(l) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump server9.example.com (access the
index page)
9. How to configure the name based web hosting?
(a) Make a directory for virtual or named based hosting.
# mkdir /var/www/virtual
(b) Go to the configuration file directory by # cd /etc/httpd/conf.d
(c) Create the configuration for name based hosting.
# vim /etc/httpd/conf.d/virtual.conf
<VirtualHost <IP address of the web server> : 80>
ServerAdmin root@<hostname of the web server>
<Directory "/var/www/virtual">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
Example :
# vim /etc/httpd/conf.d/virtual.conf (create
the configuration file)
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName www9.example.com
DocumentRoot /var/www/virtual
</VirtualHost>
<Directory "/var/www/virtual">
AllowOverride none
Require All Granted
</Directory>
(d) Go to named based virtual directory and create the index.html file.
# cd /var/www/virtual
# vim index.html
<html>
<H1>
This is Name based Web Hosting
</H1>
</html>
(save and exit this file)
(e) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(f) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(g) Go to client system, open the firefox browser and type as http://www9.example.com in
address bar and check the index page is displayed or not.
(h) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump www9.example.com (access the
index page)
10. How to configure the port based web hosting?
<Directory "/var/www/port">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
Example :
# vim /etc/httpd/conf.d/virtual.conf (create
the configuration file)
<VirtualHost 172.25.9.11:8999>
ServerAdmin root@server9.example.com
ServerName port9.example.com
DocumentRoot /var/www/port
</VirtualHost>
<Directory "/var/www/port">
AllowOverride none
Require All Granted
</Directory>
(d) Go to port based virtual directory and create the index.html file.
# cd /var/www/port
# vim index.html
<html>
<H1>
This is Port based Web Hosting
</H1>
</html>
(save and exit this file)
(e) Generally port based web hosting requires DNS server. So, we can solve this problem by the
following way.
For that open the /etc/hosts file enter the server name and IP addresses on both
server and client.
# vim /etc/hosts
172.25.9.11 port5.example.com
(save and exit this file)
(f) By default the web server runs on port number 80. If we want to configure on deferent port
number, we have to add the port number in the main configuration file.
# vim /etc/httpd/conf/httpd.conf
* Go to Listen : 80 line and open new line below this line and type as,
Listen : 8999
(save and exit this file)
(g) By default SELinux will allow 80 and 8080 port numbers only for webserver. If we use
different port numbers other than 80 or 8080 then execute the following command.
# semanage port -a -t http_port_t -p tcp 8999
(h) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
<Directory "/var/www/html">
AllowOverride none
Require All Granted
AuthType Basic
AuthName "This site is protected"
AuthUserFile /etc/httpd/pass
Require User <user name>
</Directory>
(save and exit this file)
Example :
# vim /etc/httpd/conf.d/userbase.conf (create the
configuration file)
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName server9.example.com
DocumentRoot /var/www/html
</VirtualHost>
<Directory "/var/www/html">
AllowOverride none
Require All Granted
AuthType Basic
AuthName "This site is protected"
AuthUserFile /etc/httpd/pass
Require User raju
</Directory>
(h) Go to document root directory and create the index.html file.
# cd /var/www/html
# vim index.html
<html>
<H1>
This is User Authentication based Web Hosting
</H1>
</html>
(save and exit this file)
(i) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(j) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(k) Create the user and assign the http password.
# useradd raju
* Don't give the normal password because this user requires the http password.
# htpasswd -c m /etc/httpd/pass <user name>
Example : # htpasswd -c m /etc/httpd/pass raju
(l) Go to client system, open the firefox browser and type as http://server9.example.com in
address bar and check the index page is displayed or not. Then it asks password, so we have to provide
http password.
(m)We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump server9.example.com (access the
index page)
* Then it asks password, so we have to provide http password.
12. How to restrict the web sites access from hosts or domains or networks?
(a) Go to the configuration file directory by # cd /etc/httpd/conf.d
(b) Create the configuration for IP based hosting.
# vim /etc/httpd/conf.d/restrict.conf
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName server9.example.com
DocumentRoot /var/www/html
</VirtualHost>
<Directory "/var/www/html">
AllowOverride none
Require All Granted
<Directory "/var/www/html">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
(c) Go to document root directory and create the index.html file.
# cd /var/www/html
# vim index.html
<html>
<H1>
This is Redirect based Web Hosting
</H1>
</html>
(save and exit this file)
(d) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(e) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(f) Go to client system, open the firefox browser and type as http://server9.example.com in
address bar and check the redirection google web page is displayed or not.
(g) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
<Directory "/var/www/html/private">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
(c) Create private directory in /var/www/html.
# mkdir /var/www/html/private
(c) Go to document root private directory and create the index.html file.
# cd /var/www/html/private
# vim index.html
<html>
<H1>
This is Alias based Web Hosting
</H1>
</html>
(save and exit this file)
(d) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(e) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(f) Go to client system, open the firefox browser and type as
http://server9.example.com/privae in address bar and check the private or alias based web page is
displayed or not.
(g) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump server9.example.com/private (access the
index page)
15. How to configure the directory based web hosting?
<Directory "/var/www/html/confidential">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
(c) Create confidentialdirectory in /var/www/html.
# mkdir /var/www/html/confidential
(c) Go to confidential directory and create the index.html file.
# cd /var/www/html/confidential
# vim index.html
<html>
<H1>
This is Alias based Web Hosting
</H1>
</html>
(save and exit this file)
(d) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(e) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(f) Go to client system, open the firefox browser and type as
http://server9.example.com/confidential in address bar and check the directory based web page is
displayed or not.
(g) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump server9.example.com/confidential
(access the index page)
16. How to configure the web server to display the user defined home page not the index.html page?
Normally Apache will look the index.html as the home page by default. If the name changed it will
display the home page without configure that one. For that we can do the above as follows.
(i) Go to configuration file directory by # cd /etc/httpd/conf.d command.
(ii) Create a userpage configuration file.
# vim userpage.conf
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName server9.example.com
DocumentRoot /var/www/html
DirectoryIndex userpage.html
</VirtualHost>
<Directory "/var/www/html">
AllowOverride none
Require All Granted
</Directory>
(save and exit this file)
(iii) Go to document root directory by # cd /var/www/html command.
(iv) # vim userpage.html
<html>
<H1>
This is userpage as home page web hosting
</H1>
</html>
(save and exit this file)
(d) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(e) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(f) Go to client system, open the firefox browser and type as http://server9.example.com in
address bar and check the user defined web page is displayed or not.
(g) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump server9.example.com (access the
index page)
17. How to configure CGI based web hosting?
CGI content will change dynamically every time the client accessed it. Normal web server will not be
used to support this type of web hosting. To access these dynamic pages, we have to configure the web server
as ".wsgi" server. The following steps will configure the CGI web server.
(a) Install the CGI package by # yum install mod_wsgi* -y command.
(b) Download or create the CGI script file in web server's document root directory.
Example : # cp webapp.wsgi /var/www/html
(c) Create the configuration file for CGI based web hosting.
<VirtualHost 172.25.9.11:80>
ServerAdmin root@server9.example.com
ServerName webapp9.example.com
DocumentRoot /var/www/html
WSGIScriptAlias / /var/www/html/webapp.wsgi
</VirtualHost>
(d) Restart the web server deamon.
# service httpd start (to start the webserver
deamon in RHEL - 6)
# chkconfig httpd on (to enable the service at
next boot in RHEL - 6)
# systemctl restart httpd (to start the webserver deamon in
RHEL - 7)
# systemctl enable httpd (to enable the service at next boot in
RHEL - 7)
(e) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 80 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --complete-reload
(f) Go to client system, open the firefox browser and type as http://webapp9.example.com
in address bar and check the CGI based web page is displayed or not.
(g) We can also access the website using elinks CLI tool.
# yum install elinks* -y (install the
elinks package)
# elinks --dump webapp9.example.com (access the
index page)
18. What is secured web server?
Secured web server means normal Apache web server with SSL support. In normal web server the
data communication is done in plain text format. So, there is no security for data because everyone can access
the data. If we want to provide security to the data, then we have to configure the web server with SSL
support.
19. What is the profile of secured web server?
Package : mod_ssl
Configuration file : /etc/httpd/conf.d/ssl.conf
Private key location : /etc/pki/tls/private
Public key location : /etc/pki/tls/certs
Authentication certificate : /etc/pki/tls/certs
Port number : 443
* Private key extention is " . key " and public key extention is " . crt "
20. How to configure the secured web server?
(a) Install the web server and secure shell packages.
# yum install httpd* mod_ssl* -y command.
(b) Download the private key and public certificates.
# cd /etc/pki/tls/private
# wget http://classroom.example.com/pub/tls/private/server<no.> . key
# cd /etc/pki/tls/certs
# wget http://classroom.example.com/pub/tls/certs/server<no.> . crt
# wget http://classroom.example.com/pub/example-ca.crt
(c) Create the configuration file for secured web server.
# vim /etc/httpd/conf.d/https.conf
<VirtualHost 172.25.9.11:443>
ServerAdmin root@server9.example.com
ServerName server9.example.com
DocumentRoot /var/www/html
</VirtualHost>
(d) We have to copy 7 lines from ssl.conf file to https.conf file.
Click on Next ---> Don't change the default size ---> Next ---> No
--->The keys are generated in
their directories.
Other useful commands :
# httpd -t (to check the web server configuration file
for syntax errors)
(iii) Open the mail configuration file and at last type as below.
# vim /etc/postfix/main.cf
myhostname = server9.example.com
mydomain = example.com
myorigin = $mydomain
inet_interfaces = $myhostname, localhost
mydestination = $myhostname, localhost.$localdomain, localhost, $mydomain
home_mailbox = Maildir /
(save and exit this file)
(iv) Open the another configuration file and at last type as below.
# vim /etc/dovecot/dovecot.conf
protocols = imap pop3 lmtp
(save and exit this file)
(v) Restart the mail server services.
# service postfix restart (to restart the postfix
deamon in RHEL - 6)
# service dovecot restart (to restart the
dovecot deamon in RHEL - 6)
# chkconfig postfix on (to enable the postfix deamon
at next boot in RHEL - 6)
# chkconfig dovecot on (to enable the dovecot deamon at next
boot in RHEL - 6)
# systemctl restart postfix doveco0t (to restart the postfix and
dovecot deamons in RHEL - 6)
# systemctl enable postfix dovecot (to enable the
deamons at next boot in RHEL - 6)
(vi) Add the service to the IP tables and firewall.
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 25 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 25 -j ACCEPT
# service iptables save
# service iptables restart
In RHEL - 7 :
# firewall-cmd --permanent --add-port=25/tcp
# firewall-cmd --complete-reload
(vii) Send a test mail to the user.
# mail -s testmail raju
Hi this is a test mail
ok bye... bye .... (exit and send the mail
by Ctrl + d )
(viii) Login as raju user and check the mail.
# su - raju
$ ls
$ cd Maildir
$ ls
$ cd new
$ cat <mail name>
6. How to configure mail server as null client in RHEL - 7 ?
(i) Open the configuration file and at last type as below.
# vim /etc/postfix/main.cf
relayhost = [client9.example.com]
inet_interfaces = loopback-only
mynetworks = 127.0.0.0/8 [ : : 1]/128
myorigin = server9.example.com
mydestination =
local_transport = error : local delivery disabled (save and
exit this file)
# mail -s "hello" <user name1><user name2><<File name> (send the mail with attached
file to
the 2 users)
# postfixcheck (to verify the mail configuration file for
syntax errors)
iSCSI provides Remote Block or File Storage. Most data centers keep their storage in centralised SAN
racks. iSCSI provides an inexpensive alternative to proprietary SAN hardware.
3. What is the terminology of iSCSI?
iSCSI supports sending SCSI commands from clients (initiators) over IP to SCSI storage devices
(targets) on remote systems (servers). iqn is a iSCSI qualified name or number.
The format of iqn is "iqn.yyyy-mm.<domain name in reverse order>label is used to identify
initiators and targets communicate through port number 3260.
4. What is the profile of iSCSI?
Package : iscsi* (for RHEL-6), target* (for RHEL-7 server) and iscsi-utils* (for
RHEL-7 Client)
Configuration files : /etc/tgt/target.conf (for RHEL - 6) and
/etc/target/saveconfig.json (for RHEL - 7)
Deamons : tgtd (for RHEL-6) and target (for RHEL-7 server) and iscsi,
iscsid (for RHEL-7)
Port number : 3260
5. How to configure the iSCSI server?
(i) Create one partition and create the LVM with that partition.
# fdisk <device name>
: n (new partition) ---> Enter ---> Enter ---> Enter ---> +<size in MB/GB/TB> ---> w
(write the changes into the disk)
# partprobe (to write the changes
into the partition table)
# pvcreate <disk partition name> (to create the physical volume)
# vgcreate <physical volume name> (to create the volume
group)
# lvcreate -s <extent size> -n <logical volume name><vg name> (to create the logical
volume)
(ii) Install the iSCSI package by # yum install scsi-target-utils -y command in RHEL - 6 or
Install the iSCSI package by # yum install target* -y command in RHEL - 7.
(iii) Start the iSCSI deamon and enable the deamon at next boot time.
# service tgtd restart (to start the iSCSI
deamon in RHEL - 6)
# chkconfig tgtd on (to enable the iSCSI deamon at next
boot in RHEL - 6)
# systemctl start target (to start the target deamon in
RHEL - 7)
# systemctl enable target (to enable the target deamon at next
boot in RHEL - 7)
(iv) Configure the iSCSI storage.
In RHEL - 6 :
#vi /etc/tgt/targets.conf
default-driver iscsi
<target iqn.2015-06.com.example:server9.target1>
backing-store <iSCSI partition name>
write-cache off
</target>
In RHEL - 7 :
# targetcli (to get the configuration window and displays "/>"
prompt appears)
/> ls (to see the
configuration contents)
/> /backstores/block create <block storage name><the above created volume name>
(create the
block storage)
/> /iscsi create iqn.2015-06.com.example:server9 (to create the lun number not the
lun name)
# systemctl enable iscsid iscsi (to enable the iscsi client deamons at
next boot in RHEL - 7)
(v) To connect iSCSI target we can use following command , we need to mention server ip and iqn
name.
In RHEL - 6 :
# iscsiadm -m node -T iqn.2015-06.com.example:server9.target1–p <IP address of the
server>login
In RHEL - 7 :
# iscsiadm --mode node --targetname iqn.2015-06.com.example:server9 --portal <IP
address of the
server> : 3260 --login
(vi) Check the new remote disk name by # fdisk -l command.
(vii) Create the required size partition using # fdisk, # partprobe commands.
(viii) Create the required type of file systems by # mkfs.ext4 <above created partition name>
command.
(ix) Create a mount point for the above file system by # mkdir /mnt/iscsi command.
(x) Open the /etc/fstab file and put en entry of the above file system information.
# vim /etc/fstab
<partition name> or <UUID> /mnt/iscsi ext4 _netdev 0 0 (save and
exit this file)
(xi) Mount the all the partitions which are having entries in /etc/fstab file by # mount -a
command.
(xii) Check all the mounted file systems by # df -hT command.
(xiii) To disconnect iSCSI target we can use following commands. Don't forget that logout from the
target.
In RHEL - 6 :
# iscsiadm -m node -T iqn.2015-06.com.example:server9.target1–p <IP address of the
server>logout
In RHEL - 7 :
# iscsiadm --mode node --targetname iqn.2015-06.com.example:server9 --portal <IP
address of the
server> : 3260 --logout
(xiv) Restart the client system by # init 6 command.
(xv) After reboot check the remote file system by # df -hT command.
(where database . * means granting permissions on all the contents like tables, indexes,
views,
synonyms and others)
7. How to update the table in the database with new data?
mysql or mariadb > update <table name><field name>=<new value> where <primary key field
name>="<value>";
Example : mysql or mariadb > update mydetails name="bangaram" where name='raju';
8. How to delete the table from the database?
mysql or mariadb > drop table <table name>;
Example : mysql or mariadb > drop table mydetails;
9. How to connect the remote database from our system?
# mysql -u root -h <host name> -p (here we have to enter the
password)
Example : # mysql -u root -h server9.example.com -p
(If the database is configured as localhost database, then server will not allow remote database
connections and Permission denied message will be displayed on the screen)
10. How to add mysqld service to IPtables and mariadb service to firewall?
In RHEL - 6 :
# iptables -A INPUT -i eth0 -p tcp -m tcp --deport 3306 -j ACCEPT
# iptables -A OUTPUT -i eth0 -p tcp -m tcp --deport 3306 -j ACCEPT
# service iptables save
# service iptables restart
# chkconfig iptables on
In RHEL - 7 :
# firewall-cmd --permanent --add-port=3306
# firewall-cmd --complete-reload
# vim /etc/rsyslog.conf
*.* /var/log/secure
(save and exit this file)
* Then restart the log server deamons in RHEL - 6 and RHEL - 7.
# service rsyslog restart (to restart the log server deamon in
RHEL - 6)
# systemctl restart rsyslog (to restart the log server
deamon in RHEL - 7)
5. What is log file?
Log file is file that contains messages about that system, including the kernel, services and
applications running on it, ....etc., There are different log files for different information. These files are very
useful when trying to troubleshoot a problem with systems.
Almost all log messages are stored in /var/log directory. Only root user can read these log
messages. We can use less or more commands to read these log files. The messages will be generated only
when rsyslog service is running, otherwise the log messages will not be generated.
The different types of log files and their locations :
/var/log/messages -----> System and general messages and DHCP log messages.
/var/log/authlog -----> Authentication log messages.
/var/log/secure -----> Security and authentication and user log messages.
/var/log/maillog -----> Mail server log messages.
/var/log/cron -----> Cron jobs log messages.
/var/log/boot.log -----> All booting log messages.
/var/log/httpd -----> All Apache web server log messages.
/var/log/mysqld.log -----> Mysql database server log messages.
/var/log/utmp or /var/log/wtmp -----> All the user's login messages.
/var/log/Qmail -----> Qmail log messages.
/var/log/kernel.log -----> All kernel related log messages.
/var/log/samba -----> All samba server log messages.
/var/log/anakonda.log -----> Linux installation log messages.
/var/log/lastlog -----> Recent login information for all users.
# lastlog (to see the log messages of the above
log file)
/var/log/yum.log -----> All package installation log messages generated by # yum or # rpm
commands.
/var/log/cups -----> All printer and printing related log messages.
/var/log/ntpstat -----> All ntp server and services log messages.
/var/log/spooler -----> Mail, printer and cron jobs spooling messages.
/var/log/sssd -----> System security service deamon log messages.
/var/log/audit.log -----> SELinux log messages.
# dmesg (to see the boot log messages)
# tailf or # tail -f /var/log/secure (to check or watch the log files
continuously)
# vim /etc/rsyslog.conf (we can change the log messages default
destinations)
* Whenever we change the contents of the /etc/rsyslog.conf file, then we have to restart the
rsyslog service.
* There are 7 types of priority messages. We can change the default destination of those log files.
For that
open rsyslog server configuration file and we have enter the rules as follows.
# vim /etc/rsyslog.conf
<priority type> . <priority name> <new destination of the log files> (save and exit this
file)
# logger <type any text> (to send that text into /var/log/messages files and to
test whether logging
service is running or not)
# logrotate (to create the log files with datewise)
* Generally in log messages the fields are,
Date & Time : From which system : command name or change : Execution of the
command
# yum install tmpwatch -y (to install the tmpwatchpackage to execute the below command)
# tmpwatch (to monitor the /tmp directory)
# logwatch (to monitor the log messages)
# yum install watch -y (to install the watch package to execute the below command)
# watch <command> (to watch the specified command results continuously)
# mkdir mode=755 /ram (to give the permissions to the directory while creating
that directory)
# journalctl (it tracks all the log files between two different timings and save
by default
in /run/log location)
* /run/log is mounted on tmpfs file system ie., if the system is rebooted the whole information in
that
location will be deleted or erased.
This chain handles all packets that are addressed to your server and also to control the
behaviour for incoming connections. For example, if a user attempts to SSH into your
PC/server, iptables will attempt to match the IP address and port to a rule in the input chain.
(ii) OUTPUT table :
This chain contains rules for traffic created by your server. This chain is used for outgoing
connections. For example, if you try to ping google.com, iptables will check its output chain to see what the
rules are regarding ping and google.combefore making a decision to allow or deny the connection
attempt.
(iii) FORWARD table :
This chain is used for incoming connections that aren’t actually being delivered locally. Think
of a router – data is always being sent to it but rarely actually destined for the router itself; the data is just
forwarded to its target. Unless you’re doing some kind of routing, NATing, or something else on your
system that requires forwarding, you won’t even use this chain.This chain is used to deal with traffic
destined for other servers that are not created on your server. This chain is basically a way to configure your
server to route requests to other machines.
4. What are the meanings of REJECT, DROP and ACCEPT ?
REJECT :
REJECT means server receives the FTP request from the specified IP address and rejects that
request and
also send the acknowledgement.
DROP :
DROP means server receives the FTP requests from the specified IP address and drop the request
without sending any acknowledgement.
ACCEPT :
ACCEPT means server receives the FTP requests from the specified IP address and allow that
system for FTP services.
5. What is the configuration file of IP tables and what are the options available in IP tables
command?
/etc/sysconfig/iptables is the configuration file of IP tables.
# iptables <options><chain> firewall-rule (to execute the IP
tables)
The options are as follows.
-A -----> Add or append the rule.
-p -----> Indicates the protocol for that rule (tcp, udp, icmp, ....etc.;).
-s -----> Indicates the source of the packet (IP address, Network ID or Hostname).
-d ----->Indicates the destination of the packet.
-j -----> 'Jump to target' indicates the interface through which the incoming packets are
coming through the INPUT , FORWARD and PREROOTING chain.
-o -----> 'Output Interface' indicates the interface through which the outgoing packets are
sent through the INPUT, FORWARD and PREROOTING chain.
-sport or -source-port -----> Source port for -p tcp or -p udp.
-dport or -destination-port -----> Destination port for -p tcp or -p udp.
6. How to allow a ping from outside to inside and inside to outside?
# iptables -A INPUT -p icmp --icmp-type echo-request -j ACCEPT
# iptables -A OUTPUT -p icmp --icmp-type echo-reply -j ACCEPT
# iptables -A OUTPUT -p icmp --icmp-type echo-request -j ACCEPT
# iptables -A INPUT -p icmp --icmp-type echo-reply -j ACCEPT
7. In how many ways can we protect the network?
There are 4 ways to protect the network.
(i) SELinux
(ii) IP tables
(iii) Firewalld
(iv) TCP wrappers
IP tables and firewalld both are used to protect our systems services from outside. But we can use
only one way at a time.
8. How to configure the firewalld?
(i) Install the firewalld package by # yum install firewalld* -y command.
(ii) Check whether the firewalld package is installed or not by # rpm -qa firewalld
command.
(iii) Check the status of the firewalld by executing the below commands.
# systemctl status firewalld or # firewall-cmd --status
Examples of IP tables commands :
# service iptables status (to check the IP
tables status)
# service iptables start (to start the
IP tables)
# service iptables stop (to stop the
IP tables)
# service iptables restart (to restart
the IP tables)
# service iptables save (to save the iptable rules
permanently)
# chkconfig iptables on (to enable the iptables
at next boot)
# chkconfig iptables off (to disable the iptables
at next boot)
# iptables -A INPUT -i eth0 -p tcp --deport 22 -j ACCEPT (to add the rules to the
existing
iptables to allow ssh)
where -A ---> Add or append a rule to the INPUT chain for incoming traffic.
-i eth0 ---> Incoming packets through the interface eth0 will be verified against this
added new rule.
-p tcp -deport 22 ---> protocol is tcp and the destination port is 22.
-j ACCEPT ---> Accept the packet.
# iptables -A INPUT -p tcp -m state --state NEW -m tcp --deport 80 -j ACCEPT
# ldd <service name with full path> (to display all the loaded modules of the
specified service)
# ldd /usr/sbin/sshd (to display all the loaded modules of the sshd
service)
# ldd /usr/sbin/sshd | grep -i libwrap.so (to check whether libwrap.so module is loaded or not)
To configure the TCPWRAPPER :
(i) Open /etc/hosts.deny or /etc/hosts.allow file by # vim /etc/hosts.deny or hosts.allow
commands.
* The above files are to be edited or modified to enable or disable the tcpwrapper services the
users.
# vim /etc/hosts.deny (Go to last line and type as below)
sshd : 172.25.9.11 or system9.example.com (to deny the specified host or
hostname)
sshd : ALL (to deny all the
clients)
sshd : ALL EXCEPT *.eample.com (to deny all the clients except
all the systems of
example.com domain)
(ii) save and exit this file.
(iii) Open /etc/hosts.allow by # vim /etc/hosts.allow command and go to last line and type as
below.
sshd : 172.25.9.11 172.25.6.11 (to allow 2
systems only)
(iv) save and exit this file.
* If the client system's entry is there in both /etc/hosts.deny and /etc/hosts.allow files, then the
TCPWRAPPER will look /etc/hosts.allow file first. Then it will look /etc/hosts.deny file. If there is an
entry in both the files, then it will allow the system because based on the above rule first it will read
/etc/hosts.allow file and allow the system. It won't read the /etc/hosts.deny file.
26. Virtualization
1. What is virtualization?
Virtualization allows multiple operating system instances to run concurrently on a single computer;it is
a means of separating hardware from a single operating system. Each “guest” OS is managed bya
Virtual Machine Monitor (VMM), also known as a hypervisor. Because the virtualization system sitsbetween
the guest and the hardware, it can control the guests’ use of CPU, memory, and storage,even allowing
a guest OS to migrate from one machine to another.
2. What are types of virtualizations available in Linux?
RHEL - 5 : RHEL - 6 & 7 :
xen kvm
64 bit 64 bit
VT-Enabled VT-Enabled
Intel/AMD Intel/AMD
2 GB RAM 2 GB RAM
6 GB Hard disk 6 GB Hard disk
3. What are the packages of virtualization and how to install the packages?
(i) qemu (It is used to provide user level KVM virtualization and disk image also)
(ii) virt (It is used to provide virtualization software)
(iii) libvirt (It is used to provide the libraries for virtualization software)
(iv) python (This package provides the host and server libraries for interacting with Hypervisor
and
Host system)
# yum install qemu* virt* libvirt* python* -y (to install the
virtualization softwares)
4. How to start the virtualization manager and how to create a new virtual machine?
(i) Go to Applications -----> System Tools -----> Virtual Machine Manager
(ii) Vitual Machine Manager is used to check and displays the available virtual machines. It is
also used to create the new virtual machines.
(iii) To create a new virtual machine first click on monitor icon, then enter the virtual machine
name, Select Local and Select Forward.
(iv) Click on Browse Local, Select the guest O/S " . iso " image file and Select Forward.
5. What are the packages of Virtualization Hypervisor and how to install the packages?
(i) "virtualization hypervisor" (provides the foundation to host virtual machines includes
the libvirt and
qemu- kvm package)
(ii) "virtualization client" (provides the support to install and manage virtual
machines includes virsh, virt-install, virt-manager, virt-
top and virt-viewer packages)
(iii) "virtualization tools" (provides tools for offline management of virtual machines
includes the
libguestfs package)
(iv) "virtualization platform" (provides an interface to access and control virtual machines
includes the libvirt, libvirt-client and
virt-who packages)
Installation of Virtualization Hypervisor :
# yum group install "virtualization hypervisor" "virtualization client" "virtualization tools"
"virtualizatio
n platform" -y
# virsh destroy <virtual machine name> (to delete the virtual machine)
# virsh suspend <virtual machine name> (to pause the virtual machine)
# virsh resume <virtual machine> (to start the paused virtual machine)
# virsh net-list (to see all the available virtual machines)
# virsh net-define /root/<virtualnetname.xml> (to define a virtual network using xml file)
# virsh net-autostart <virtualnet name> (to set the virtual network autostart at reboot)
# virsh net-start <virtual net name> (to start the virtual network)
# rht-vmctl fullreset all (to reset all the virtual machines as new
machines)
# rht-vmctl reset server (to reset the server virtual machine)
# rht-vmctl reset client (to reset the client virtual machine)
# pushcourse all <system hostname> (to send the server and client virtual
machines to the
specified system)
(1) We get requests from production, database, Q A people like creating volumes, file
system creation, increase and (or) decrease the volume sizes, provide permissions, redundancy, put
the volume into cluster to provide high availability,
(2) sometimes destroy or remove the volumes, backup and restore whenever necessary,
(3) We also get some troubleshooting issues like volume not started, volume not
accessible, file system crashed, mount point deleted, disks failed, volume manager
deamons are not working, configuration files missed, crashed, disk groups not deporting
and not importing, volume started but users are unable to access file systems on those
volumes,...etc.,
(c) Coming to Veritas Cluster : (from 6 months)
(1) We get requests like node adding, resource adding, service group adding, adding
service groups and resources to existing service groups, mount points adding, adding
NIC cars, IP addresses, adding volumes, disk groups, freezing and unfreezing
services groups and also get some troubleshooting issues like cluster not running, if
resources faulted then restart the service groups, communication failed between two
systems, Gab is not running, llt not running, and configuration files main.cf
crashed or missed and resources are not started, ... etc.
(d) I also write small scripts to perform internal routine jobs, document preparation,
handover mails checking, how many tickets issued, how many tickets solved and how many
jobs pending, ....etc.,
(e) I also supports in application deployment, database deployment and others.
3. What are the tools you are using?
(i) netstat, vmstat, iostat, nmap and top for performance monitoring tools.
(ii) cron and at for job scheduling.
(iii) Remedy tool for ticketing system.
(iv) Veritas Netbackup, Tivoli, .... etc., for backing purpose
(v) Outlook for internal mailing.
4. What are the storage boxes using?
(i) NetApps, VMC, Clarian and EMC2.
(ii) Emulex, Qlogic (HBA cards).
5. What are the Applications are you using?
(i) Databases (Oracle 10g, 11g and Mysql).
(ii) Oracle Applications like ERP packages (Oracle 11i and 12).
(iii) SAP applications.
(iv) Datawarehousing, ....etc.,
6. What is your company hierarchy?
Me -----> Team Lead or Tech Lead -----> Manager -----> Delivery Manager -----> Asia head
7. What level are you supporting?
Linux Administrator as Level 2.
8. What are your shif timings?
General shift -----> 09:00 - 18:00 hrs.
Shifts : One shift from USA and two shifts from India operations upto last 2 months and now all the
operations are from India only and data centre operations from USA only.
1 st shift from 07:00 - 15:00 hrs, 2 nd shift from 15:00 - 23:00 hrs, 3 rd shift from 21:00 -
07:00 hrs.
9. What is your team size?
Total 18 members. For each shift 5 members each and 3 members on weekly off.
10. What about tickets issues and tickets frequency?
(i) 7 - 8 tickets daily and Max. 10 per day.
In those 85 - 90% are CPU utilization full, memory full, file system full, login problems and
sometimes node down issues.
(ii) General tickets severity - 3, severity - 2, severity - 1.
We are not resolved severity level - 1 tickets.
(iii) Incidents :
Severity level - 1 should be solved within 1 hour (Immediate).
Severity level - 2 should be solved within 6 hours.
Severity level - 1 should be solved within 24 hours.
(e) If all the ways are not possible then inform to team lead or tech lead or manager to
increase the memory (swap space). If it is also not possible then taking higher authority's
permissions to increase the physical memory. For those we contact the server vendor
and co-ordinate with them through data centre people to increase the RAM size.
27. How to replace the failed hard disk?
(a) Check whether the disk is failed or not by # iostat -En | grep -i hard/soft command.
(b) If hard errors are above 20 then we will go for replacement of the disk.
(c) If the disk is from SAN people then we will inform to them about the replacement of the disk.
If it is internal disk then we raise the CRQ to replace the disk.
(d) For this we will considered two things.
(i) whether the system is within the warranty.
(ii) without warranty.
(e) We will directly call to the toll free no. of the system vendor and raise the ticket. They will
issue the case no. This is the no. we have to mention in all correspondences to vendor
regarding this issue.
(f) If it is having warranty they asks rack no. system no. and other details and replace the hard
disk with co- ordinate of the data centre people.
(g) If it is not having warranty, we have to solve the problem by our own or re-agreement to
extend the warranty and solve that problem.
28. How to replace the processor?
(a) Check the processor's status using # lscpu or # dmidecode -t processor commands.
(b) If it shows any errors then we have to replace the processor.
(c) Then raise the case to vendor by toll free no. with higher authorities permission.
(d) The vendor will give case no. for future references.
(e) They also asks rack no. system no. of the data centre for processor replacement.
(f) We will inform to the Data centre people to co-ordinate with vendor.
29. How replace the failed memory modules?
Causes :
(a) The system is continuously rebooting .
(b) When in peak business hours, if the heavy applications are running the system get panic
and rebooted. This is repeating regularly.
Solution :
(a) First we check how much RAM present in the system with # dmidecode -t memory
command.
(b) Then we raise the case to vendor with the help of higher authorities.
(c) Then the vendors will provide the case no. for future reference.
(d) They will also asks rack no. system no. to replace the memory.
(e) we will inform the data centre people to co-ordinate with the vendor.
30. What is your role in DB patching?
In Database patching the following teams will be involved.
(i) Database Administrator (DBA) team.
(ii) Linux Administrators team.
(iii) Monitoring team.
(iv) Application team.
(i) DBA team :
This is the team to apply the patches to the databases.
(ii) Linux team :
This team is also involved if any problems occur. If the database volume is having a mirror we
should first break the mirror and then the DBA people will apply the patches. After 1 or 2 days
there is no problem again we need sync the data between mirrored volume to patch applied
volume. If there is no space for patch we have to provide space to DBA team.
(iii) Monitoring team :
This team should receive requests or suggestions to ignore any problems occurs. After applied
the patch if the system is automatically rebooted then monitoring team will raise the ticket
"Node down" to system administrators team. So, to avoid those type of tickets we have to
sent requests to ignore those type alerts.
(iv) Application team :
For applying any patches, the databases should not be available to application. So, if
suddenly database is not available then application may be crashed. So, first the application
should be stopped. This will be done by application team.
31. What is SLA?
A service-level agreement (SLA) is simply a document describing the level of service expected by a
customer from a supplier, laying out the metrics by which that service is measured and the remedies or
penalties, if any, should the agreed-upon levels not be achieved. Usually, SLAs are between companies and
external suppliers, but they may also be between two departments within a company .
32. What is Problem Management?
The objective of Problem Management is to minimize the impact of problems on the organisation.
Problem Management plays an important role in the detection and providing solutions to problems
(work around& known errors) and prevents their reoccurrence.
A 'Problem' is the unknown cause of one or more incidents, often identified as a result of multiple
similar
incidents.A 'Known error' is an identified root cause of a Problem.
33. What is Incident Management?
An 'Incident' is any event which is not part of the standard operation of the service and which causes
or may cause, an interruption or a reduction of the quality of the service.
The objective of Incident Management is to restore normal operations as quickly as possible with the
least possible impact on either the business or the user, at a cost-effective price.
Inputs for Incident Management mostly come from users, but can have other sources as well like
management Information or Detection Systems. The outputs of the process are RFC’s (Requests for
Changes), resolved and closed Incidents, management information and communication to the customer.
34. What is Change Management?
Change management is a systematic approach to dealing with change, both from the perspective of
an organization and on the individual level. change management has at least three different aspects,
including adapting to change, controlling change, and effecting change. A proactive approach to
dealing with change is at the core of all three aspects.In an information technology (IT) system environment,
change management refers to a systematic approach to keeping track of the details of the system (for
example, what operating system release is running on each computer and which fixes have been applied).
35. What is Request Management?
service request management (SRM) is the underlying workflow and processes that enable an IT
procurement or service request to be reliably submitted, routed, approved, monitored and delivered. SRM is
the process of managing a service request through its lifecycle from submission through delivery and follow-
up.
SRM may be manual or automated. In a manual system, a user calls a help desk to request a service,
and help desk personnel create a service ticket to route the service request. In an automated system,
the user submits a request through an online service catalog, and the application software
automatically routes the request through the appropriate processes for approval and service delivery. These
systems also typically enable users to track the status of their service requests, and management to monitor
service delivery levels for quality control purposes.
36. What is grep?
(i) grep means Globally search for Regular Expression.
(ii) Using grep we can filter the results to get a particular information.
(iii) We can get only information about what string we have specified in grep command.
37. What are pipes and filters in Linux?
Pipes :
(a) Pipes are nothing but adding two commands and make as one command.
(b) Normally we cannot combine two commands, but using pipes we get one command by
combining two commands.
(c) So, we can get the results as what we required.
Filters :
(a) Filters are nothing but filtering the results what we required.
(b) Using filters we can get exact results depends upon what we specified in the expression.
(c) So, there is no wastage of time because it filters results what we specified in the command
expression.
38. What is the full form of COMPUTER ?
C ----->Commonly
O -----> Operated
M -----> Machine
P -----> Particularly
U ----->Used
T ----->Technical and
E ----->Educational
R -----> Research
39. What is the command in sar to monitor NIC devices received/transmitted packets?
# sar -n DEV 1 5
This will show 5 consecutive output each with a time interval of 1 sec for all the ethernet devices
40. What is Linux Kernel?
It acts as an interpreter between Linux OS and its hardware. It is the fundamental component of Linux
OS and contains hardware drivers for the devices installed on the system. The kernel is a part of the system
which loads first and it stays on the memory.
41. What are the main parameters effect on server performance?
The one of the most important task of any Linux Admin includes performance monitoring which
includes a parameter "Load Average" or "CPU Load".
42. What is load average?
Load Average is the value which represents the load on your system for a specific period of time. Also
it can be considered the ratio of the number of active tasks to the number of available CPUs.
43. How to check?
We can use either top or uptime command to view the output of the load average as shown below.
# uptime
00:07:00 up 4 days, 6:14, 1 user, load average: 0.11, 0.14, 0.09
# top
top - 00:07:12 up 4 days, 6:15, 1 user, load average: 0.09, 0.13, 0.09
44. What are the three values?
As you can see three values representing the load average column. These show the load on your
system over a significant period of time (one or current, five and fifteen minutes averages).
45. How do you know your system has a high load?
The most important question as in most cases I have seen how do you determine your system has high
load.
Does a high value represents high load average and that your system requires attention?
What is the threshold value for load average?
How can we conclude if the load average value is good or bad?
A Central Processing Unit in earlier days used to be having only one processor and the core concept
was not their in those days. But with the advancement in technology and the urge of higher speed to meet up
demands of IT industry multiple processor were integrated in the same CPU making it multi-processor.
However increasing the no. of processor did increased the working speed of many tasks and
performance but it also leads to increase in size, complexity and heat issues. So, in order to continue
improvement of performance the core concept was introduced.
Instead of having two CPUs and a motherboard capable of hosting them, two CPUS are taken together
and combined to form a dual core processor which will utilize an individual socket using less power and size
capable of performing the same amount of task as dual processor CPU.
Bottom Line is that Load value depends on the no. of cores in your machine. For example a dual core is
relevant to 2 processor or 2 cores and quad core is relevant to 4 processor or four cores as the maximum value
for load.
46. How do I check the no. of cores on my Linux system?
The information which you see under /proc/cpuinfo can be confusing at times. If you run the below
command
# less /proc/cpuinfo | grep processor
processor :0
processor :1
processor :2
processor :3
processor :4
processor :5
So as per the above command my system has 16 processors in it. However it really has 8 processors
with hyper threading enabled. The hyper threading presents 2 logical CPUs to the operating system for
each actual core so it effectively doubles the no. of logical CPU in your system.
47. How to find if hyper threading is enabled
Look out for "ht" in the flags section inside cpuinfo with the below command
# less /proc/cpuinfo | grep flags | uniq | grep -i "ht"
flags : fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts
acpi mmx fxsr sse sse2 ss ht tm syscall nx rdtscp lm constant_tsc nonstop_tsc pni monitor
ds_cpl vmx est tm2 ssse3 cx16 xtpr sse4_1 sse4_2 popcnt lahf_lm.
The fields we need to compare to find the no. of core are "physical id" and "core id". Run the below
command
# less /proc/cpuinfo | grep "physical id" | sort|uniq | wc -l
2
# less /proc/cpuinfo | grep "core id" | sort|uniq | wc -l
4
So the no. of cores would be 2x4 = 8 cores.
48. What do you understand the Load Average?
If the number of active tasks utilizing CPU is less as compared to available CPU cores then the load
average can be considered normal but if the no. of active tasks starts increasing with respect to available
CPU cores then the load average will start rising.For example,
# uptime
00:43:58 up 212 days, 14:19, 4 users, load average: 6.07, 7.08, 8.07
49. How to check all the current running services in Linux?
To find the status of any single service :
# service vsftpd status
vsftpd (pid 5909) is running...
To get the status of all the running services :
# service --status-all | grep running
acpid (pid 5310) is running...
atd (pid 6528) is running...
auditd (pid 5012) is running...
Avahi daemon is not running
Avahi DNS daemon is not running
The Pegasus CIM Listener is running.
The Pegasus CIM Object Manager is running.
crond (pid 6242) is running...
dcerpcd (pid 5177) is running...
eventlogd (pid 5223) is running...
In case you don't use grep you will be able to see all the services on your machine :
# service --status-all
NetworkManager is stopped
acpid (pid 5310) is running...
anacron is stopped
atd (pid 6528) is running...
auditd (pid 5012) is running...
automount is stopped
Avahi daemon is not running
Avahi DNS daemon is not running
hcid is stopped
sdpd is stopped
You can also check the active ports along with their services using :
# netstat -ntlp
Active Internet connections (only servers)
Protocol Recv-Q Send-Q Local Address Foreign Address State
PID/Program name
tcp 0 0 0.0.0.0:52961 0.0.0.0:* LISTEN
5223/eventlogd
tcp 0 0 0.0.0.0:5988 0.0.0.0:* LISTEN
6116/cimserver
tcp 0 0 0.0.0.0:5989 0.0.0.0:* LISTEN
6116/cimserver
tcp 0 0 0.0.0.0:678 0.0.0.0:* LISTEN
5160/rpc.statd
tcp 0 0 0.0.0.0:14247 0.0.0.0:* LISTEN
6460/java
tcp 0 0 127.0.0.1:199 0.0.0.0:* LISTEN
5857/snmpd
tcp 0 0 0.0.0.0:135 0.0.0.0:* LISTEN
5177/dcerpcd
50. How do you check Linux machine is Physical or Virtual remotely?
There is no hard and fast rule to check whether the machine is physical or virtual but still we do have
some commands which can be used for the same purpose.
The command used to view all the required hardware related information for any Linux machine is
# dmidecode
But the output would be very long and hard to find out the specific details looking for. So, let's narrow
it down.
Physical Servers:
# dmidecode -s system-product-name
System x3550 M2 -[7284AC1]-
Now to get more details about the system
# dmidecode | less (And search for "System Information")
System Information
Manufacturer: IBM
Product Name: System x3550 M2 -[7284AC1]-
Version: 00
Wake-up Type: Other
SKU Number: XxXxXxX
Family: System x
Virtual Servers :
# dmidecode -s system-product-name
VMware Virtual Platform
# dmidecode | less
System Information
Manufacturer: VMware, Inc.
Product Name: VMware Virtual Platform
Version: None
Wake-up Type: Power Switch
SKU Number: Not Specified
Family: Not Specified
On a virtual server running VMware you can run the below command to verify :
# lspci | grep -i vmware
00:0f.0 VGA compatible controller: VMware SVGA II Adapter
51. How to find the bit size of your linux machine?
# uname -m
i686
# uname -m
x86_64
If we get i386, i586 and i686 that signifies your machine is 32-bit but if we
getx86_64 or ia64 then your machine will be 64-bit.
# getconf LONG_BIT
32
# getconf LONG_BIT
64 (Here we get an output of bit size either 32 or 64)
52. How can you add a banner or login message in Linux?
By editing these two files
/etc/issue
/etc/motd
53. What is the difference between normal kernel and kernel-PAE?
kernel in 32 bit machine supports max of 4 GB RAM, whereas
kernel PAE in 32 bit linux machine supports till 64 GB RAM
54. Tell me the command to find all the commands in your linux machine having only 2 words like ls, cp,
cd etc.
# find /bin /sbin/usr/bin /usr/sbin -name ?? -type f
55. Which file is generally used to configure kickstart?
anaconda.cfg
56. Which log file will you check for all authentication related messages?
/var/log/secure
57. What is the command used to find the process responsible for a particular running file?
# fuser filename
# lsof filename
58. What is the command to take remote of any Linux machine?
# rdesktop
59. What are the three values shown in load average section of top command?
It shows the current, 5 min back and 15 min back load average value.
60. How to check all the process running by a particular user?
# ps -u<username>
61. What is an orphan process?
An orphan process is a process that is still executing, but whose parent has died.
62. What is a defunct process?
These are also termed as zombie process. These are those process who have completed their execution
but still has an entry in the process table. When a process ends, all of the memory and resources associated
with it are de-allocated so they can be used by other processes.After the zombie is removed, its process
identifier (PID) and entry in the process table can then be reused.
Zombies can be identified in the output from the Unix ps command by the presence of a "Z" in the
"STAT" column
63. How do you limit maximum connections in your apache server?
Change the below parameter value inside httpd.conf
MaxClients 256
64. Which command do you use to download a file from fp or http website using CLI?
# wget path_to_the_file
65. What is the default port for ssh? How will you change it to some other random port no.?
SSH port no. by default is 22. To change the default port no. we need make required changes inside
sshd_config file in the below mentioned line
#Port 22 (Uncomment the above line and define the new port no)
Restart the services for changes to take effect.
66. What is the difference between A record and CNAME record in DNS?
A record :
It is the Address records also known as host records
Points to the IP address reflecting the domain
Used for forward lookup of any domain name
For example:
Our website is configured on 50.63.202.15 IP so the A record of my domain name will point towards
that IP.
Every time a query for golinuxhub.com is made the internet will lookup for contents stored on the
machine with 50.63.202.15 this IP.
CNAME Record :
It is short abbreviation for Canonical Name
Provides an alias name for same hostname
Helps create subdomains
NOTE: You cannot create a CNAME record for the domain name itself (it should be done with A record)
For example:
golinuxhub.com is a domain name whereas www.golinuxhub.com is a sub domain name.
# systemctl enable httpd (to enable the webserver deamon at next boot
in RHEL - 7)
(xxi) Add the webserver service to IPtables and Firewall.
In RHEL - 6 :
# setup
Select Firewall configuration -----> Select HTTP and HTTPS to the firewall
# service iptables save
# service iptables restart
# chkconfig iptables on
In RHEL - 7 :
# firewall-cmd --permanent --add-service=http
# firewall-cmd --permanent --add-service=https
# firewall-cmd --complete-reload
4. How to install on client system using kickstart file?
(i) Boot the client system using RHEL - 6 DVD and press Esc key.
(ii) Then it prompts us boot : screen.
(iii) Type the following information about the kickstart file, its server and also assign some IP
address to the client system to communicate with kickstart server.
boot : linux ip=< IP address to the client> netmask=<netmask of that IP> ks=fp://< IP
address of the kickstart server>/<kickstart file name with full path>
(press Enter key)
* Then the installation will continue by taking the installation information from the kickstart
file.
5. In how many ways can we install RedHat Linux through network?
(i) FTP
(ii) NFS
(iii) HTTP
(iv) PXE
6. How to install RedHat Linux though FTP?
(i) First configure the FTP server and copy the entire RedHat Linux DVD in that FTP document
root directory.
(ii) Installation of Linux through network requires one boot.iso image or RHEL DVD.
To make a DVD/Pendrive bootable using boot.iso image :
(a) Download the boot.iso image from redhat website.
# cdrecord /root/boot.iso (/root/boot.iso is the path of
boot.iso image)
(b) Copy the boot.iso image into DVD or pendrive.
# dd if=/root/boot.iso of=/dev/sdb1 (/dev/sdb1 is the address of the USB
or pendrive)
(iii) Boot the system with the above created boot.iso image and press Esc key to get the boot :
prompt.
(iv) Then execute the below command to install the O/S.
boot : linux askmethod (Press Enter key)
(v) Select the preferred language for installation (for example English).
(vi) Select the Keyboard layout as US.
(vii) Select the urloption for the installation media (for example FTP/NFS/HTTP).
(viii) Select IPv4 or IPv6 to define network settings and select dynamic or static options.
(ix) Assign the same range IP address and netmask to the client system to communicate with
server.
(x) Then specify the FTP server IP address and path of the installation media to install the
O/S.
7. How to install RedHat Linux through NFS?
(i) Make an entry in /etc/exports to export the RHEL media.
# vim /etc/exports
<installation media directory> <network ID>(rw, sync)
(save and exit this file)
Example :
# vim /etc/dhcp/dhcpd.conf
Go to line number 47 and edit the line as below.
subnet 172.25.9.0 netmask 255.255.255.0 {
range 172.25.9.50 172.25.9.200;
* comment on next two lines
option routers 172.25.9.11;
option broadcast-address 172.25.9.255;
default-lease-time 600;
max-lease-time 7200;
allow booting;
allow bootp;
next-server 172.25.9.11;
filename "Pxelinux.0";
authoritative;
(save and exit this file)
# service dhcpd restart
# chkconfig dhcpd on
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --deport 67 -j ACCEPT
# iptables -A OUTPUT -m state --state NEW -m tcp -p tcp --deport 68 -j
ACCEPT
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --deport 67 -j ACCEPT
# iptables -A OUTPUT -m state --state NEW -m tcp -p tcp --deport 68 -j
ACCEPT
(h) Configure the TFTP server.
# yum install tftp* syslinux* -y
# vim /etc/xinetd.d/tft
* Go to disable=yes line and make it as no (save and
exit this file)
# cp -rvpf /media/RHEL6/isolinux/*.* /var/lib/tftpboot
# mkdir /var/lib/tftpboot/pxelinux.cfg
# cp /var/lib/tftpboot/isolinux.cfg /var/lib/ffpboot/pxelinux.cfg/default
# cp -rvpf /usr/share/syslinux/pxelinux.0 /var/lib/tftpboot
# service xinetd restart
# chkconfig xinetd on
# iptables -A INPUT -m state --state NEW -m tcp -p tcp --deport 69 -j ACCEPT
# iptables -A OUTPUT -m state --state NEW -m tcp -p tcp --deport 69 -j
ACCEPT
(i) Create the kickstart file
# yum install system-config-kickstart -y
# system-config-kickstart (create a kickstart file and save it in /var/ftp/pub
directory)
# ksvalidator /var/fp/pub/ks.cfg
(j) Specify the kickstart file location in pxelinux.cfg file.
# vim /var/lib/tftpboot/pxelinux.cfg/default
* Go to line 19 and edit the lines as below.
menu label ^ PXE SERVER
menu default
kernel vmlinuz
append initrd=initrd.img linux ks=ftp://172.25.9.11/pub/ks.cfg (save and
exit this file)
(k) Restart all the services once again.
# service network restart
# chkconfig network on
# service vsfpd restart
# chkconfig vsfpd on
# service dhcpd restart
# chkconfig dhcpd on
(i) Switchover is the manual task. (i) But, Failover is a automatic task.
(ii) We can switchover service groups from online (ii) But, the failover will failover the service group to
cluster node to offline cluster node incase of the other node when Veritas Cluster heartbeat
power outage, hardware failure, schedule linkdown, damaged, broken because of some
shutdown and reboot. disaster or system hung.
7. Which the main configuration file for VCS (Veritas Cluster) and where it is stored?
' main.cf ' is the main configuration file for VCS and it is located in /etc/VRTSvcs/conf/config
directory.
8. What is the public region and private region?
when we bring the disk from O/S control to Volume Manager control in any format (either CDS,
simple or sliced), the disk is logically divided into two parts.
(a) Private region :
It contains Veritas configuration information like disk type and name, disk group name,
groupid and configdb. The default size is 2048 KB.
(b) Public region :
It contains the actual user's data like applications, databases and others.
9. There are five disks on VxVM (Veritas Volume Manager) and all are failed. What are the steps
you follow to get those disks into online?
(i) Check the list of disks in Volume manager control by # vxdisk list command.
(ii) If the above disks are not present, then bring them O/S control to VxVM control by
# vxdisksetup -i <disk names> (if data is not on those disk) or execute
# vxdiskadm command and select 2nd option ie., encapsulation method if the disks
having the data.
(iii) Even though If it is not possible, then check the disks are available at O/S level by # fdisk
-l command.
(a) If the disks are available, execute the above command once again.
(b) If the disks are not available then recognize them by scanning the hardware.
(iv) Even though if it is not possible, then reboot the system and follow the steps (i) and (ii).
10. What is the basic difference between private disk group and shared disk group?
Private disk group :
The disk group is only visible for the host on which we have created it. If the host is a part of the
cluster, the private disk group will not be visible to the other cluster nodes.
Shared disk group :
The disk group is sharable and visible to the other cluster nodes.
11. How will you create private disk group and shared disk group?
# vxdg init <disk group name><disk media name>=<O/S disk name> (to create the
private disk group)
# vxdg -s init <disk group name><disk media name>=<O/S disk name>(to create the shared disk
group)
12. How will you add new disk to the existing disk group?
we can do this in two ways.
(i) Run # vxdiskadm command, which will open menu driven program to do various disk
operations. Select add disk option and give disk group name and disk name.
(ii) # vxdg -g <disk group name> adddisk <disk media name>=<O/S disk name>
Example: # vxdg -g appsdg adddisk disk02=/dev/sdb
13. How will you grow or shrink the volume/file system? What is the meaning of grow by, grow to,
shrink by and shrink to options?
(i) We can grow the volume/file system by,
# vxassist -g appsdg growby or growto 100GB appsvol (or)
# vxresize -g appsdg +100GB appsvol alloc = <disk name>
(ii) We can shrink the volume/file system by,
# vxassist -g appsdg shrinkby 20GB appsvol
# vxassist -g appsdg shrinkto 20GB appsvol (or)
# vxresize -g appsdg -10GB appsvol (to shrink by the size 10GB)
# vxresize -g appsdg 10GB appsvol (to shrink to the size 10GB)
Meanings :
growby :
This will be used to grow the file system by adding new size to the existing file system.
growto :
This will be used to grow the file system upto the specified new size. This will not be added
the new size to the existing one.
shrinkby :
This will be used to shrink the file system by reducing the new size from the existing file
system size.
shrinkto :
This will be used to shrink the file system upto the specified new size. This will not be reduced
the file system new size from the existing one.
14. If vxdisk list command gives you disk status as " error ". What are the steps you follow to make
respective disk online?
This issue is mainly because of fabric disconnection. So, execute # vxdisk scandisks command.
Otherwise unsetup the disks using # /etc/vx/bin/vxdiskunsetup and setup the disks again using
# /etc/vx/bin/vxdisksetup command.
Note :/etc/vx/bin/vxdiskunsetup will remove the private region from the disk and destroy the data. So,
18. Define LLT and GAB. What are the commands to create them?
LLT :
(i) LLT means Low Latency Transport protocol
(ii) It monitor the kernel to kernel communication.
(iii) It maintain and distribute the network traffic within the cluster.
(iv) It uses heartbeat between the interfaces.
GAB :
(i) GAB means Global Atomic Broadcasting.
(ii) It maintain and distribute the configuration information of the cluster.
(iii) It uses heartbeat between the disks.
Commands :
# gabconfig -a (to check the status of the GAB, ie., GAB
is running or not)
If port ' a ' is listening, means GAB is running, otherwise GAB is not running.
If port ' b ' is listening, means I/O fencing is enabled, otherwise I/O fencing is
disabled.
If port ' h ' is listening means had deamon is working, otherwise had deamon is
not working.
# gabconfig -c n 2 (to start the GAB in 2 systems in the cluster,
where 2 is seed no.)
# gabconfig -u (to stop the GAB)
# cat /etc/gabtab (to see the GAB configuration information and
the it contains as, )
gabconfig -c n x (where x is a no. ie., 1, 2, 3, ....etc.,)
# lltconfig -a (to see the status of the llt)
# lltconfig -c (to start the llt)
# lltconfig -u (to stop the llt)
# lltstat -nvv (to see the traffic status between the interfaces)
# llttab -a (to see the cluster ID)
# haclus -display (to see all the information on the cluster)
# cat /etc/llttab (to see the llt configuration and the entries are as,)
Cluster ID, host ID, interface MAC address, ...etc.,
# cat /etc/llthosts (to see the no. of nodes present in the cluster)
19. How to check the status of the Veritas Cluster?
# hastatus -summary
20. Which command is used to check the syntax of the main.cf?
# hacf -verify /etc/VRTSvcs/conf/config
21. How will you check the status of the individual resources of Veritas Cluster (VCS)?
# hares -state <resource name>
22. What is the use of # hagrp command?
# hagrp command is used doing administrative actions on service groups like, on-line service group,
off-line service group and switch, ...etc.,
Non-critical, then it switch over and we have to manually switch over the resource group to another
available system.
31. What are the dependencies between resources in a Cluster?
If one resource depends on other resource, then there is a dependency between those resources.
Example : NIC (Network Interface Card) is hardware component nothing but hardware resource. The
IP address is a software component nothing but software resource and it depends on NIC card. The
relationship between NIC and IP address is Parent - Child relationship. The resource which one is
starts first, that one is called Parentresource and the remaining dependency resources are called Child
resource.
32. What are the minimum requirements for or in VCS?
(i) Minimum two identical (same configuration) systems.
(ii) Two switches (Optical Fibre Channel).
(iii) Minimum three NIC cards. (Two NICs for private network and one NIC for public network).
(iv) One common storage.
(v) Veritas Volume Manager with license.
(vi) Veritas Cluster with license.
33. What are the Veritas Cluster deamons?
(i) had :
(a) It is the main deamon in Veritas Cluster for high availability.
(b) It monitors the cluster configuration and whole cluster environment.
(c) It interacts with all the agents and resources.
(ii) hashadow :
(a) It always monitor the had deamon.
(b) It's main functionality is logging about the cluster.
35. What are the main configuration files in a Cluster?
* /etc/VRTSvcs/conf/config/main.cf and
* /etc/VRTSvcs/conf/config/types.cf are the main configuration files in Cluster.
36. What are the main log files in a Cluster?
(i) /var/VRTSvcs/log/Engine_A.log (logging about when the cluster started, when
failed, when failover
occurs, when switchover forcefully, ...etc.,)
(ii) /var/VRTSvcs/log/hashadow_A.log (logging about the hashadow deamon)
(iii) /var/VRTSvcs/log/agent_A.log (logging bout agents)
37. What are the Cluster components?
(i) Cluster.
(ii) Service groups.
(iii) Resources.
(iv) Agents.
(v) Events.
38. What is your role in the Cluster?
Normally we will get requests like,
(i) Add a node.
(ii) Add a resource.
(iii) Add a service group.
(iv) Add a resource to the existing service group.
(v) Add mount points.
And sometimes we get some troubleshooting issues like,
(i) had deamon is not running.
(ii) Split barin issue.
(iii) If the resources are faulted, then restart the service groups and moving service groups from
one node to another.
(iv) Cluster is not running.
(v) Communication failed between two nodes.
(vi) GAB and LLT are not running.
(vii) Resource not started.
(viii) main.cf and types.cf files corrupted.
(ix) I/O fencing (a locking mechanism to avoid the split brain issue) is not enabled (at disk
level / SAN level).
(x) And the locks are,
(a) engine.lock
(b) ha.lock
(c) agent.lock
39. What are the statuses of a service group?
(i) online
(ii) offline
(iii) partial
* If the non-critical resource is failed, then the status of the service group may be in partial
status.
* If the critical resource is failed, then the status of the service group may be in offline
status.
40. How to move the service group from one node to another node manually?
(i) Stop the application.
(ii) Stop the database.
(iii) Unmount the file system.
(iv) Stop the volume.
(v) Deport the disk group.
(vi) Import the disk group.
(vii) Start the volume.
(viii) Mount the file system.
(ix) Start the database.
(x) Start the application.
41. How to rename a disk group in VxVM in stepwise?
(i) Stop the application.
(ii) Stop the database.
(iii) Unmount the file system.
(iv) Stop the volume.
(v) Deport the disk group.
(vi) Rename the disk group.
(vii) Import the disk group.
(ix) Start the volume.
(x) Mount the file system.
(xi) Start the database.
(xii) Start the application.
42. How to create a volume with 4 disks?
(i) Bring the disks to O/S control by scanning the Luns using the following the command,
# echo "---" > /sys/class/scsi_host/< lun no. >/scan (to scan the lun no.)
(ii) Bring those disk from O/S control to VxVM control.
(a) If we want to preserve the data, then bring the disks to VxVM control using
encapsulation method by
# vxdiskadm (here we get the options to do this and select 2nd option ie.,
Encapsulation)
(b) If we don't want to preserve the data, then bring the disks to VxVM control using
initialization method by # vxdisksetup -i <disk 1 name> (for example #
vxdisksetup -i /dev/sda)
# vxdisksetup -i <disk 2 name> (for example # vxdisksetup -i
/dev/sdb)
# vxdisksetup -i <disk 3 name> (for example # vxdisksetup -i
/dev/sdc)
# vxdisksetup -i <disk 4 name> (for example # vxdisksetup -i
/dev/sdd)
# vxdisk list (to see VxVM controlled disks)
(iii) Create a disk group.
Attributes :
# hagrp -modify appssg system list={ sys A0, sys B0} (to add sys A and sys B attributes to
service group)
# hagrp -modify appssg autostart list={ sys A} (to start the sys A attributes
automatically)
# hagrp -modify appssg enabled 1 or 0 (1 means start and 0 means not to start
automatically)
(iii) Creating resources and adding them to the service group and specify their attributes.
For file system :
(a) /mnt/apps (the mount point)
(b) /appsvol (the volume name)
(c) /appsdg (the disk group)
# hares -add dg-apps diskgroup appssg (to add the diskgroup resource
to a service group)
(where dg-apps is resource name, diskgroup is a keyword and appssg is a service
group name)
# hares -modify dg-apps diskgroup appsdg (to add the diskgroup attribute to a
service group)
# hares -modify dg-apps enable 1 (to enable the resource)
# hares -add dg-volume volume appssg (to add the volume resource
to a service group)
# hares -modify dg-volume volume appsvol (to add the volume attribute to a
service group)
# hares -modify dg-volume diskgroup appsdg (to add the diskgroup to the volume)
# hares -modify dg-volume enable 1 (to enable the volume resource)
# hares -modify dg-volume critical 1 (to make the resource as critical)
# hares -add dg-mnt mount appssg (to add the mount point resource to a
service group)
# hares -modify dg-mnt blockdevice=/dev/vx/rdsk/appsdg/appsvol (to add the block
device resource
to a service group)
# hares -modify dg-mnt fstype=vxfs (to add the mount point attributes to a
service group)
# hares -modify dg-mnt mount=/mnt/apps (to add the mount point
directory attribute to a
service group)
# hares -modify dg-mnt fsckopt=% y or %n (to add the fsck attribute either yes or
no to
service group)
(iv) Create links between the above diskgroup, volume and mount point resources.
# hares -link parent-res child-res
# hares -link dg-appdg dg-volume
# hares -link dg-volume dg-mnt
47. What is meant by freezing and unfreezing a service group with persistent and evacuate options?
Freezing :
If we want to apply patches to the system in a cluster, then we have to freeze the service group
because first stop the service group, if it is critical, the service group will move automatically to another
system in Cluster. So, we don't want to move the service group from one system to another system,
we have to freeze the service group.
Unfreeze :
After completing the task, the service group should be unfreezed because, if the is crashed or down
and the resources are critical, then the service group cannot move from system 1 to system 2 due to freezed
the service group and results in not available of application. If unfreezed the service group after
maintenance, the service group can move from system 1 to system 2. So, if system 1 failed, the
system2 is available and application also available.
Persistent option :
If the service group is freezed with persistent option, then we can stop or down or restart the
system. So, there is no loss of data and after restarted the system, the service group is remains in
freezed state only.
Example : # hasys -freeze -persistent <system name>
# hasys -unfreeze -persistent <system name>
Evacuate :
If this option is used in freezed service group system, if the system down or restarted the persisted
information is evacuated, ie., before freeze all the service groups should be moved from system 1 to
another system 2.
48. What are the layouts are available in VxVM and how they will work and how to configure?
(i) There are 5 layouts available in VxVM. They are RAID-0, RAID-1, RAID-5, RAID-0+1 and
RAID-1+0.
RAID-0 :
We can configure RAID-0 in two ways.
(a) Stripped (default).
(b) Concatenation.
Stripped :
(i) In this minimum two disks required to configure.
(ii) In this the data will write on both the disks parallelly. ie., one line in one disk and 2nd line on
2nd disk, ...etc.,
(iii) In this the data writing speed is fast.
(iv) In this there is no redundancy for data.
Concatenation :
(i) In this minimum one disk is required to configure.
(ii) In this the data will write in first disk and after filling of first disk then it will write on 2nd disk.
(iii) In this the data writing speed is less.
(iv) In this also there is no redundancy for data.
RAID-1 :
(I) It is nothing but mirroring.
(ii) In this minimum 4 disks are required to configure.
(iii) In this same data will be written on disk1 and disk 3, disk 2 and disk4.
(iv) If disk 1 failed, then we can recover the data from disk3 and if disk 2 failed, then we can
recover the data from disk 4. So, there is no data loss or we can minimize the data loss.
(v) In this half of the disk space may be wasted.
RAID-5 :
(i) It is nothing but stripped with distributed parity.
(ii) In this minimum 3 disks required to configure.
(iii) In this one line will write on disk 1 and 2nd line write on disk 2 and the parity bit will write
on disk3. The parity bit will write on 3 disk simultaneously. If disk 1 failed then we can recover the
data from disk2 and parity bit from disk 3. So, in this data will be more secured.
(iv) In this disk utilization is more when compared to RAID-1, ie., 1/3 rd of disk space may be
wasted.
(v) This RAID-5 will be configured for critical applications like Banking, Financial, SAX and
Insurance...etc., because the data must be more secured.
Creating a volume with layout :
# vxassist -g <diskgroup name> make <volume name><size in GB/TB> layout=<mirror/raid
5/raid 1>
Example : # vxassist -g appsdg make appsvol 50GB layout=raid 5 (the default is RAID-5
in VxVM)
Logs :
* If the layout is mirror, then log is DRL.
* If the layout is RAID-5, then the log is RAID-5 log.
* The main purpose of the log is fast recovery operation.
* We have to specify whether the log is required or not in all types of layouts except RAID-5
because the logging is default in RAID-5.
* If we want to configure RAID-5 without logging then,
# vxassist -g <diskgroup name> make <volume name> 50GB, nolog layout=raid 5
* If the layout is other than RAID-5 then,
# vxassist -g <diskgroup name> make <volume name> 50GB, log layout=mirror
* If we want to add the log to the existing volume then,
# vxassist -g <diskgroup name> addlog logtype=drl or raid5
* If we want to remove the log from the existing volume then,
# vxassist -g <diskgroup name> rmlog <volume name>
49. What is read policy and how many types of read policies available?
Read policy means, how the disk or volume should be read when accessing the data.
Types of read policies :
(i) Select
(ii) Prefer
(iii) Round Robin
* By default the read policy is Round Robin.
# vxvol -g <diskgroup name> rdpol = < select/prefer/roundrobin <volume name>
50. What is your role in VxVM?
Normally, we get requests from application, development, production and QA people like,
(i) Create a volume.
(ii) Increase the volume.
(iii) Decrease the volume.
(iv) Provide Redundancy by implementing RAID-1 or RAID-5.
(v) Provide the required permissions.
(vi) Put the volume in the Virtual machine.
(vii) Put the volume in the Cluster.
(viii) Provide high availability to the applications and databases.
(ix) Sometimes destroy or remove the volume.
(x) Backup and restore the data whenever necessary.
And sometimes we get some troubleshooting issues like,
(i) Volume is not started.
(ii) Volume is not accessible.
(iii) Mount point deleted.
License :
(i) All the licenses are stored in /etc/vx/licenses directory and we can take backup of this
directory and restore it back, if we need reinstall the server.
(ii) Removing VxVM package will not remove the installed license.
(iii) To install license # vxlicinst command is used.
(iv) To see the VxVM license information by # vxlicrep command.
High availability clusters provide highly available services by eliminating single points of failureand by failing
over services from one cluster node to another in case a node becomes inoperative.
Typically, services in a high availability cluster read and write data (via read-write mounted file systems).
A high availability cluster must maintain data integrity as one cluster node takes over control of a service from
another cluster node.
Node failures in a high availability cluster are not visible from clients outside the cluster.
High availability clusters are sometimes referred to as failover clusters.
4. What is Load Balancing Cluster?
Load-balancing clusters dispatch network service requests to multiple cluster nodes to balance the request load
among the cluster nodes.
Load balancing provides cost-effective scalability because you can match the number of nodes according to
load requirements. If a node in a load-balancing cluster becomes inoperative, the load-balancing software
detects the failure and redirects requests to other cluster nodes.
Node failures in a load-balancing cluster are not visible from clients outside the cluster.
Load balancing is available with the Load Balancer Add-On.
5. What is a High Performance Cluster?
High-performance clusters use cluster nodes to perform concurrent calculations.
A high-performance cluster allows applications to work in parallel, therefore enhancing the performance of the
applications.
High performance clusters are also referred to as computational clusters or grid computing.
6. How many nodes are supported in Red hat 6 Cluster?
A cluster configured with qdiskd supports a maximum of 16 nodes. The reason for the limit is because
of scalability; increasing the node count increases the amount of synchronous I/O contention on the
shared quorum disk device.
7. What is the minimum size of the Quorum Disk?
The minimum size of the block device is 10 Megabytes.
8. What is the order in which you will start the Red Hat Cluster services?
In Red Hat 4 :
# service ccsd start
# service cman start
# service fenced start
service clvmd start (If CLVM has been used to create clustered volumes)
# service gfs start
# service rgmanager start
In RedHat 5 :
# service cman start
# service clvmd start
# service gfs start
# service rgmanager start
In Red Hat 6 :
# service cman start
# service clvmd start
# service gfs2 start
# service rgmanager start
9. What is the order to stop the Red Hat Cluster services?
In Red Hat 4 :
# service rgmanager stop
# service gfs stop
# service clvmd stop
# service fenced stop
# service cmanstop
# service ccsd stop
In Red Hat 5 :
# service rgmanager stop
# servicegfsstop
# service clvmd stop
# servicecman stop
In Red Hat 6 :
# service rgmanagerstop
# service gfs2 stop
# service clvmdstop
# service cman stop
10. What are the performance enhancements in GFS2 as compared to GFS?
Better performance for heavy usage in a single directory
Faster synchronous I/O operations
Faster cached reads (no locking overhead)
Faster direct I/O with preallocated files (provided I/O size is reasonably large, such as 4M blocks)
Faster I/O operations in general
Faster Execution of the df command, because of faster statfs calls
Improved atime mode to reduce the number of write I/O operations generated by atime when compared with
GFS
GFS2 supports the following features.
extended file attributes (xattr)
the lsattr() and chattr() attribute settings via standard ioctl() calls
nanosecond timestamps
GFS2 uses less kernel memory.
GFS2 requires no metadata generation numbers.
Allocating GFS2 metadata does not require reads. Copies of metadata blocks in multiple journals are managed
by revoking blocks from the journal before lock release.
GFS2 includes a much simpler log manager that knows nothing about unlinked inodes or quota changes.
The gfs2_grow and gfs2_jadd commands use locking to prevent multiple instances running at the same time.
The ACL code has been simplified for calls like creat() and mkdir().
Unlinked inodes, quota changes, and statfs changes are recovered without remounting the journal.
11. What is the maximum file system support size for GFS2?
GFS2 is based on 64 bit architecture, which can theoretically accommodate an 8 EB file system.
However, the current supported maximum size of a GFS2 file system for 64-bit hardware is 100 TB.
The current supported maximum size of a GFS2 file system for 32-bit hardware for Red Hat Enterprise Linux
Release 5.3 and later is 16 TB.
NOTE: It is better to have 10 1TB file systems than one 10TB file system.
12. What is the journaling filesystem?
A journaling filesystem is a filesystem that maintains a special file called a journal that is used to repair any
inconsistencies that occur as the result of an improper shutdown of a computer.
In journaling file systems, every time GFS2 writes metadata, the metadata is committed to the journal before it
is put into place.
This ensures that if the system crashes or loses power, you will recover all of the metadata when the journal is
automatically replayed at mount time.
GFS2 requires one journal for each node in the cluster that needs to mount the file system. For example, if you
have a 16-node cluster but need to mount only the file system from two nodes, you need only two journals. If
you need to mount from a third node, you can always add a journal with the gfs2_jadd command.
13. What is the default size of journals in GFS?
When you run mkfs.gfs2 without the size attribute for journal to create a GFS2 partition, by default a
128MB sizejournal is created which is enough for most of the applications
In case you plan on reducing the size of the journal, it can severely affect the
performance. Suppose you reduce the size of the journal to 32MB it does not take much file system activity to
fill an 32MB journal, and when the journal is full, performance slows because GFS2 has to wait for writes to the
storage.
14. What is a Quorum Disk?
Quorum Disk is a disk-based quorum daemon, qdiskd, that provides supplemental heuristics to determine node
fitness.
With heuristics you can determine factors that are important to the operation of the node in the event of a
network partition
For a 3 node cluster a quorum state is present until 2 of the 3 nodes are active i.e. more than half. But
what if due to some reasons the 2nd node also stops communicating with the 3rd node? In that case under a
normal architecture the cluster would dissolve and stop working. But for mission critical environments
and such scenarios we use quorum disk in which an additional disk is configured which is mounted on
all the nodes with qdiskd service running and a vote value is assigned to it.
So suppose in above case I have assigned 1 vote to qdisk so even after 2 nodes stops communicating
with 3rd node, the cluster would have 2 votes (1 qdisk + 1 from 3rd node) which is still more than half
of vote count for a 3 node cluster. Now both the inactive nodes would be fenced and your 3rd node
would be still up and running being a part of the cluster.
15. What is rgmanager in Red Hat Cluster and its use?
This is a service termed as Resource Group Manager
RGManager manages and provides failover capabilities for collections of cluster resources called services,
resource groups, or resource trees
it allows administrators to define, configure, and monitor cluster services. In the event of a node failure,
rgmanager will relocate the clustered service to another node with minimal service disruption.
16. What is luci and ricci in Red Hat Cluster?
luci is the server component of the Conga administration utility
Conga is an integrated set of software components that provides centralized configuration and management of
Red Hat clusters and storage
luci is a server that runs on one computer and communicates with multiple clusters and computers via ricci
With quorum rules enforced, only one of the partial clusters can use the shared storage, thus protecting data
integrity.
Quorum doesn't prevent split-brain situations, but it does decide who is dominant and allowed to function in
the cluster.
quorum can be determined by a combination of communicating messages via Ethernet and through a quorum
disk.
22. What are Tie-breakers in Red Hat Cluster?
Tie-breakers are additional heuristics that allow a cluster partition to decide whether or not it is quorate in the
event of an even-split - prior to fencing.
With such a tie-breaker, nodes not only monitor each other, but also an upstream router that is on the same
path as cluster communications. If the two nodes lose contact with each other, the one that wins is the one that
can still ping the upstream router.That is why, even when using tie-breakers, it is important to ensure that
fencing is configured correctly.
CMAN has no internal tie-breakers for various reasons. However, tie-breakers can be implemented using the
API.
23. What is fencing in Red Hat Cluster?
Fencing is the disconnection of a node from the cluster's shared storage.
Fencing cuts off I/O from shared storage, thus ensuring data integrity.
The cluster infrastructure performs fencing through the fence daemon, fenced.
When CMAN determines that a node has failed, it communicates to other cluster-infrastructure components
that the node has failed.
fenced, when notified of the failure, fences the failed node.
24. What are the various types of fencing supported by High Availability Add On?
Power fencing — A fencing method that uses a power controller to power off an inoperable node.
storage fencing — A fencing method that disables the Fibre Channel port that connects storage to an
inoperable node.
Other fencing — Several other fencing methods that disable I/O or power of an inoperable node,
including IBM Bladecenters, PAP, DRAC/MC, HP ILO, IPMI, IBM RSA II, and others.
25. What are the lock states in Red Hat Cluster?
A lock state indicates the current status of a lock request. A lock is always in one of three states:
Granted — The lock request succeeded and attained the requested mode.
Converting — A client attempted to change the lock mode and the new mode is incompatible with an
existing lock.
Blocked — The request for a new lock could not be granted because conflicting locks exist.
A lock's state is determined by its requested mode and the modes of the other locks on the same
resource.
26. What is DLM lock model?
DLM is a short abbreviation for Distributed Lock Manager.
A lock manager is a traffic cop who controls access to resources in the cluster, such as access to a GFS file
system.
GFS2 uses locks from the lock manager to synchronize access to file system metadata (on shared storage)
CLVM uses locks from the lock manager to synchronize updates to LVM volumes and volume groups (also on
shared storage)
In addition, rgmanager uses DLM to synchronize service states.
without a lock manager, there would be no control over access to your shared storage, and the nodes in the
cluster would corrupt each other's data.
top - 17:51:07 up 1 day, 2:56, 27 users, load average: 5.33, 29.71, 28.33
Tasks: 1470 total, 1 running, 1469 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.1%sy, 0.0%ni, 99.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 264114424k total, 253006956k used, 11107468k free, 66964k buffers
Swap: 33554424k total, 3260k used, 33551164k free, 245826024k cached
Explanation: This line gives us a brief detail of all the tasks running/sleeping/stopped currently in the
system along with the CPU Usage
Value Meaning
us user cpu time (or) % CPU time spent in user space
sy system cpu time (or) % CPU time spent in kernel space
ni user nice cpu time (or) % CPU time spent on low priority processes
id idle cpu time (or) % CPU time spent idle
wa io wait cpu time (or) % CPU time spent in wait (on disk)
hi hardware irq (or) % CPU time spent servicing/handling hardware interrupts
si software irq (or) % CPU time spent servicing/handling software interrupts
steal time - - % CPU time in involuntary wait by virtual cpu while hypervisor is servicing another
st
processor (or) % CPU time stolen from a virtual machine
NOTE: You can enable/disable the marked blue line by pressing "m".
top - 17:51:07 up 1 day, 2:56, 27 users, load average: 5.33, 29.71, 28.33
Tasks: 1470 total, 1 running, 1469 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.1%sy, 0.0%ni, 99.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 264114424k total, 253006956k used, 11107468k free, 66964k buffers
Swap: 33554424k total, 3260k used, 33551164k free, 245826024k cached
Explanation: The next line shows your memory(RAM and swap) usage and capacity.
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+
COMMAND
13916 stmprd 18 0 903m 129m 9936 S 51.4 0.1 3:07.01 java
13921 stmprd 18 0 901m 128m 9936 S 49.8 0.0 3:02.92 java
13825 stmprd 18 0 951m 190m 9932 S 49.5 0.1 3:07.13 java
13856 stmprd 20 0 978m 197m 9936 S 49.2 0.1 3:05.89 java
13853 stmprd 18 0 921m 150m 9932 S 48.5 0.1 3:09.14 java
13875 stmprd 18 0 907m 132m 9940 S 48.5 0.1 3:09.49 java
13937 stmprd 25 0 926m 165m 9936 S 48.2 0.1 3:10.31 java
13919 stmprd 18 0 917m 153m 9936 S 47.5 0.1 3:05.92 java
13879 stmprd 25 0 921m 160m 9936 S 47.2 0.1 3:08.43 java
13908 stmprd 25 0 901m 131m 9932 S 47.2 0.1 3:12.23 java
13905 stmprd 25 0 907m 137m 9932 S 46.6 0.1 2:59.85 java
The left sections shows you the details of the process running along with the below details.
Fields/Column Description
PID Process Id
USER The effective user name of the task's owner
PR The priority of the task
The nice value of the task. A negative nice value means higher priority, whereas a positive nice
NI value means lower priority. Zero in this field simply means priority will not be adjusted in
determining a task's dispatchability
The task's share of the elapsed CPU time since the last screen update, expressed as a
%CPU
percentage of total CPU time.
%MEM A task's currently used share of available physical memory
TIME+ Total CPU time the task has used since it started
The status of the task which can be one of:
'D' = uninterruptible sleep
'R' = running
S
'S' = sleeping
'T' = traced or stopped
'Z' = zombie
RES The non-swapped physical memory a task has used
SHR The amount of shared memory used by a task
Command Display the command line used to start a task or the name of the associated program
top - 18:12:41 up 115 days, 8:48, 4 users, load average: 0.04, 0.05, 0.00
Tasks: 328 total, 1 running, 327 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.1%sy, 0.0%ni, 99.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 49432728k total, 2062356k used, 47370372k free, 310072k buffers
Swap: 2097144k total, 0k used, 2097144k free, 1297672k cached
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+
COMMAND
1561 deepak 17 0 3984 780 468 S 0.0 0.0
0:00.00 man
1564 deepak 19 0 8704 964 816 S 0.0 0.0
0:00.00 sh
1566 deepak 23 0 8704 464 316 S 0.0 0.0
0:00.00 sh
1571 deepak 16 0 8452 892 712 S 0.0 0.0
0:00.01 less
31328 deepak 15 0 110m 2348 1264 S 0.0 0.0
0:00.20 sshd
31329 deepak 16 0 27676 2564 1816 S 0.0 0.0
0:00.02 bash
31422 deepak 15 0 109m 2360 1260 S 0.0 0.0
0:00.14 sshd
31423 deepak 15 0 27548 2500 1784 S 0.0 0.0
0:00.02 bash
7. Change delay between terminal refresh
By default the top terminal is set for auto refresh after every 3 seconds but if you want you can change
it as per your requirement.
Press "d" when top is running. You should get a prompt as shown below in blue color.
top - 18:14:55 up 115 days, 8:50, 4 users, load average: 0.01, 0.04, 0.00
Tasks: 328 total, 1 running, 327 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.1%sy, 0.0%ni, 99.9%id, 0.0%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 49432728k total, 2063828k used, 47368900k free, 310072k buffers
Swap: 2097144k total, 0k used, 2097144k free, 1297728k cached
Change delay from 3.0 to: 2.0 [Hit Enter]
PID USER PR NI VIRT RES SHR S %CPU %MEM TIME+
COMMAND
5359 root 34 19 0 0 0 S 0.7 0.0 9431:58
kipmi0
1795 root 15 0 29492 2300 1524 R 0.3 0.0 0:00.20
top
1 root 15 0 10352 692 580 S 0.0 0.0 0:02.16
init
Verify the changes. You must see the screen buffer getting refresh much earlier or just to verify you can
provide a higher value of delay and observer the refresh rate on the terminal
8. No. of task to be displayed
By default this option is set to unlimited that is the reason your terminal is fully covered with list of
tasks when you run the top command. Any how you can list the no of tasks to be visible once you run top
command.
Press "n"when top is running. You should get a prompt as shown below in blue color
top - 18:18:07 up 115 days, 8:54, 4 users, load average: 0.01, 0.03, 0.00
Tasks: 328 total, 1 running, 327 sleeping, 0 stopped, 0 zombie
Cpu(s): 0.0%us, 0.2%sy, 0.0%ni, 99.7%id, 0.1%wa, 0.0%hi, 0.0%si, 0.0%st
Mem: 49432728k total, 2063348k used, 47369380k free, 310072k buffers