Question 1mediummultiple choice
Read the full Manage containers explanation →EX200 Manage containers • Complete Question Bank
Complete EX200 Manage containers question bank — all 0 questions with answers and detailed explanations.
Drag steps to the numbered slots on the right, or tap a step then tap a slot.
Drag a concept onto its matching description — or click a concept then click the description.
General system log (most non-critical messages)
Authentication and security events
Audit records from auditd
Cron job execution logs
Refer to the exhibit. $ podman ps -a CONTAINER ID IMAGE COMMAND CREATED STATUS PORTS NAMES a1b2c3d4e5f6 registry.access.redhat.com/ubi8/ubi "/bin/bash" 5 minutes ago Exited (0) 3 minutes ago mycontainer z9y8x7w6v5u4 do280/httpd "/usr/sbin/httpd -D" 2 hours ago Up 2 hours 0.0.0.0:80->80/tcp webserver
Refer to the exhibit.
$ podman inspect webserver | grep -A5 '"Ports"'
"Ports": {
"80/tcp": [
{
"HostPort": "8080"
}
]
}FROM registry.access.redhat.com/ubi8/ubi RUN yum install -y httpd COPY index.html /var/www/html/ CMD ["/usr/sbin/httpd", "-D", "FOREGROUND"]
Refer to the exhibit.
```json
{
"NetworkSettings": {
"IPAddress": "10.88.0.2",
"Gateway": "10.88.0.1",
"Ports": {
"3306/tcp": [
{
"HostPort": "3306",
"HostIp": "0.0.0.0"
}
]
}
}
}
```