- Home
- RedHat Certification
- EX300 Exam
- RedHat.EX300.dumpsfiles Dumps
Free RedHat EX300 Exam Dumps Questions & Answers
| Exam Code/Number: | EX300Join the discussion |
| Exam Name: | Red Hat Certified Engineer - RHCE (v6+v7) |
| Certification: | RedHat |
| Question Number: | 88 |
| Publish Date: | Jul 13, 2026 |
|
Rating
100%
|
|
Total 88 questions
CORRECT TEXT
There were two systems:
system1, main system on which most of the configuration take place
system2, some configuration here
MariaDB
Restore a database on serverX from the backup file
classroom.com/pub/rhce/backup.m">http://classroom.com/pub/rhce/backup.mdb The database name should be Contacts. It should be access only within the localhost Set a password for root user as "Postroll". Other than the root user, the user Andrew is able to read the query from the above mentioned database. The user should be authenticated with the password as
"Postroll".

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 TEXT
Configure an email server domain30.example.com, and it requests to send and receive emails from the local server or the user harry can send or receive emails from network. The email of user harry is
/var/spool/mail/harry. Please note: the DNS server has already been MX record analyzed.

CORRECT TEXT
RHCE Test Configuration Instructions
Information for the two systems you will use in test is the following:
system1.group3.example.com: is one of the main sever. system2.group3.example.com: mainly used as a client.
Password for both of the two systems is atenorth
System's IP is provided by DHCP, you can regard it as normal, or you can reset to Static IP in accordance with the following requirements:
system1.group3.example.com: 172.24.3.5
system2.group3.example.com: 172.24.3.10
The subnet mask is 255.255.255.0
Your system is a member of DNS domain group3.example.com. All systems in DNS domain group3.example.com are all in subnet 172.24.3.0/255.255.255.0, the same all systems in this subnet are also in group3.example.com, unless specialized, all network services required to be configured can be accessed by systems of domain group3.
host.group3.example.com provides a centralized authentication service domain GROUP3.EXAMPLE.COM, both system1 and system2 have already been pre-configured to be the client for this domain, this domain provides the following user account:
Firewall is enabled by default, you can turn it off when deemed appropriate, other settings about firewall may be in separate requirements.
Your system will be restarted before scoring, so please ensure that all modifications and service configurations you made still can be operated after the restart without manual intervention, virtual machine instances of all examinations must be able to enter the correct multi-user level after restart without manual assistance, it will be scored zero if the test using virtual machine system cannot be restarted or be properly restarted.
Corresponding distribution packages for the testing using operating system Red Hat Enterprise Linux version can be found in the following link:
http://server1.group3.example.com/rhel
Part of the requirements include host security, ensure your host security limit does not prevent the request to allow the host and network, although you correctly configured the network service but would have to allow the host or network is blocked, this also does not score.
You will notice that some requirements which clearly do not allow services be accessed by service domain my133t.org, systems of this domain are in subnet 172.25.1.0/252.255.255.0, and systems of these subnets also belong to my 133t.org domain.
PS: Notice that some test questions may depend on other exam questions, for example, you might be asked to perform a series of restrictions on a user, but this user creation may be required in other questions. For convenient identification, each exam question has some radio buttons to help you identify which questions you have already completed or not completed. Certainly, you do not need to care these buttons if you don't need them.
Configure NFS service
Configure the NFS service on the system1, as required:
1. Share the directory /public in read only way, just can be accessed by systems in domain11.example.com at the same time.
2. Share the directory /protected in rad and write way, Kerberos security encryption required, you can use the key provided by the following URL:
http://host.domain11.example.com/materials/nfs_server.keytab
3. The directory /protected should contain the sub directory named project and the owner name is deepak;
4. User deepak can access /protected/project in read and write ways

CORRECT TEXT
Add a cron schedule to take full backup of /home on every day at 5:30 pm to /dev/st0 device.
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.