RedHat EX300 Actual Free Exam Questions & Community Discussion

  • Exam Code/Number: EX300
  • Exam Name/Title: Red Hat Certified Engineer - RHCE (v6+v7)
  • Certification Provider: RedHat
  • Corresponding Certification: RHCE
  • Exam Questions: 88
  • Updated On: Jul 10, 2026
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
Webserver.
Implement a webserver for the site http://serverX.example.com
Download the webpage from http://station.network0.example.com/pub/rhce/rhce.html Rename the downloaded file in to index.html Copy the file into the document root Do not make any modification with the content of the index.html Clients within my22ilt.org should NOT access the webserver on your systems
Correct Answer:
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
Webpage content modification.
Implement website for serverX.examp">http://serverX.example.com/owndir
Create a directory named as "owndir" under the document root of webserver Download station.network0.example.com/pub">http://station.network0.example.com/pub/rhce/restrict.html Rename the file into ondex.html The content of the owndir should be visible to everyone browsing from your local system but should not be accessible from other location
Correct Answer:
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
Script1.
Create a script on serverX called /root/random with the following details When run as /root/random postconf, should bring the output as "postroll" When run as /root/random postroll, should bring the output as "postconf" When run with any other argument or without argument, should bring any other argument or without argument, should bring the stderr as "/root/random postconf|postroll"
Correct Answer:
CORRECT TEXT
Make on /storage directory that only the user owner and group owner member can fully access.
Correct Answer:
chmod 770 /storage
Verify using : ls -ld /storage
Note:
Preview should be like: drwxrwx--- 2 root sysusers 4096 Mar 16 18:08 /storage To change the permission on directory we use the chmod command. According to the question that only the owner user (root) and group member (sysusers) can fully access the directory so:
chmod 770 /archive
CORRECT TEXT
Configure the samba server, share /common, which can be browsed. The user harry can only read it. If it is needed, the password for harry is harryuser.
Correct Answer:
CORRECT TEXT
Add a cron schedule to take full backup of /home on every day at 5:30 pm to /dev/st0 device.
Correct Answer:
1. vi /var/schedule
30 17 * * * /sbin/dump -0u /dev/st0 /dev/hda7
2. crontab /var/schedule
3. servicecrond restart
We can add the cron schedule either by specifying the scripts path on /etc/crontab file or by creating on text file on crontab pattern.
cron helps to schedule on recurring events. Pattern of cron is: Minute Hour Day of Month Month Day of Week Commands
0-59 0-23 1-31 1-12 0-7 where 0 and 7 mean Sunday.
Note * means every. To execute the command on every two minutes */2.
CORRECT TEXT
In accordance with the following requirements to deploy ssh login service:
harry belongs to example.com which can remote login your systems.
However, users of remote.test cannot use ssh login to your machine.
Correct Answer:

Notice:
tcp_wrappers has two configuration files and their priority level is /etc/hosts.allow->/etc/hosts.deny
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
SSH configuration.
Configure SSH access on your virtual hosts as follows.
Clients within my22ilt.org should NOT have access to ssh on your systems
Correct Answer:

Save and Exit (:wq)
Then run this:

Optional:
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
Configure SCSI storage.
Create a new 1 GB target on your serverX.example.com
The block device name should be data_block
The server should export an iscsi disk called iqn.2014-10.com.example:serverX This target should only be allowed to desktop
.
Correct Answer:
0
0
0
10