Welcome to ExamTopics
ExamTopics Logo
- Expert Verified, Online, Free.

Unlimited Access

Get Unlimited Contributor Access to the all ExamTopics Exams!
Take advantage of PDF Files for 1000+ Exams along with community discussions and pass IT Certification Exams Easily.

Exam EX200 topic 1 question 10 discussion

Actual exam question from RedHat's EX200
Question #: 10
Topic #: 1
[All EX200 Questions]

SIMULATION -
Configure a HTTP server, which can be accessed through
http://station.domain40.example.com.
Please download the released page from http://ip/dir/example.html.

Show Suggested Answer Hide Answer
Suggested Answer: See explanation below.
# yum install -y httpd
# chkconfig httpd on
# cd /var/www/html
# wget http://ip/dir/example.html
# cp example.com index.html
# vim /etc/httpd/conf/httpd.conf
NameVirtualHost 192.168.0.254:80
<VirtualHost 192.168.0.254:80>
DocumentRoot /var/www/html/
ServerName station.domain40.example.com
</VirtualHost>

Comments

Chosen Answer:
This is a voting comment (?) , you can switch to a simple comment.
Switch to a voting comment New
corpio
Highly Voted 2 years, 11 months ago
This is Discontinued in rhcsa in 2021
upvoted 12 times
...
airphreak
Highly Voted 3 years, 4 months ago
dnf install -y httpd systemctl enable httpd cd /var/www/html wget http://ip/dir/example.html mv example.html index.html systemctl start httpd
upvoted 11 times
Mayowa15
1 year, 4 months ago
I think it is a good idea to use #cp instead of #mv
upvoted 1 times
...
...
Community vote distribution
A (35%)
C (25%)
B (20%)
Other
Most Voted
A voting comment increases the vote count for the chosen answer by one.

Upvoting a comment with a selected answer will also increase the vote count towards that answer by one. So if you see a comment that you already agree with, you can upvote it instead of posting a new comment.

SaveCancel
Loading ...