31-40 Flashcards

1
Q

A systems administrator is tasked with preventing logins from accounts other than root, while the file /etc/nologin exists. Which of the following PAM modules will accomplish this task?

A. pam_login.so
B. pam_access.so
C. pam_logindef.so
D. pam_nologin.so

A

D. pam_nologin.so

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

A systems administrator has been tasked with disabling the nginx service from the environment to prevent it from being automatically and manually started. Which of the following commands will accomplish this task?

A. systemctl cancel nginx
B. systemctl disable nginx
C. systemctl mask nginx
D. systemctl stop nginx

A

C. systemctl mask nginx

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

A Linux administrator is troubleshooting an issue in which an application service failed to start on a Linux server. The administrator runs a few commands and gets the following outputs:

Output1:
Dec 23 23:14:15 root systemd(1) logsearch.service: Failed to start Logsearch.

Output2:
Logsearch.service - Log Search

Loaded: loaded (/etc/systemd/system/logsearch.service; enabled; vendor preset:enabled)

Active: failed (Result: timeout)

Process: 3267 ExecStart=/usr/share/logsearch/bin/logger …

Main PID: 3267 (code=killed, sigmal=KILL)

Based on the above outputs, which of the following is the MOST likely action the administrator should take to resolve this issue?

A. Enable the logsearch.service and restart the service.
B. Increase the TimeoutStartUSec configuration for the logsearch.sevice.
C. Update the OnCalendar configuration to schedule the start of the logsearch.service.
D. Update the KillSignal configuration for the logsearch.service to use TERM.

A

B. Increase the TimeoutStartUSec configuration for the logsearch.sevice.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

A Linux administrator has installed a web server, a database server, and a web application on a server. The web application should be active in order to render the web pages. After the administrator restarts the server, the website displays the following message in the browser: Error establishing a database connection. The Linux administrator reviews the following relevant output from the systemd init files:

[Unit]
Description=The Apache #HTTP Server
Wants=httpd-init.service
After=network.target remote-fs.target nss-lookup-target httpd-init.service mariadb.service

[Unit]
Description-MariaDB 10.5 database server
After=network.target

The administrator needs to ensure that the database is available before the web application is started. Which of the following should the administrator add to the HTTP server .service file to accomplish this task?

A. TRIGGERS=mariadb.service
B. ONFAILURE=mariadb.service
C. WANTEDBY=mariadb.service
D. REQUIRES=mariadb.service

A

D. REQUIRES=mariadb.service

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

Several users reported that they were unable to write data to the /oracle1 directory. The following output has been provided:

Filesystem | Size | Used | Available | Use% | Mounted on

/dev/sdb1 | 100G | 50G | 50G | 50% | /oracle1

Which of the following commands should the administrator use to diagnose the issue?

A. df -i /oracle1
B. fdisk -1 /dev/sdb1
C. lsblk /dev/sdb1
D. du -sh /oracle1

A

A. df -i /oracle1

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

After installing some RPM packages, a systems administrator discovers the last package that was installed was not needed. Which of the following commands can be used to remove the package?

A. dnf remove packagename
B. apt-get remove packagename
C. rpm -i packagename
D. apt remove packagename

A

A. dnf remove packagename

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

A systems administrator is checking the system logs. The administrator wants to look at the last 20 lines of a log. Which of the following will execute the command?

A. tail -v 20
B. tail -n 20
C. tail -c 20
D. tail -l 20

A

B. tail -n 20

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

An administrator is trying to diagnose a performance issue and is reviewing the following output:

avg-cpu: %user | %nice | %system | %iowait | %steal | %idle
2.00 | 0.00 | 3.00 | 32.00 | 0.00 | 63.00

Device tps | kb_read/s | kb_wrtn/s | kb_read | kb_wrtn

sdb 345.00 | 0.02 | 0.04 | 4739073123 | 23849523

sdb1 345.00 | 32102.03 | 12203.01 | 4739073123 | 23849523

System Properties:

CPU: 4 vCPU -

Memory: 40GB -

Disk maximum IOPS: 690 -
Disk maximum throughput: 44Mbps | 44000Kbps

Based on the above output, which of the following BEST describes the root cause?

A. The system has reached its maximum IOPS, causing the system to be slow.
B. The system has reached its maximum permitted throughput, therefore iowait is increasing.
C. The system is mostly idle, therefore the iowait is high.
D. The system has a partitioned disk, which causes the IOPS to be doubled.

A

B. The system has reached its maximum permitted throughput, therefore iowait is increasing.

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

A systems administrator wants to test the route between IP address 10.0.2.15 and IP address 192.168.1.40. Which of the following commands will accomplish this task?

A. route -e get to 192.168.1.40 from 10.0.2.15
B. ip route get 192.163.1.40 from 10.0.2.15
C. ip route 192.169.1.40 to 10.0.2.15
D. route -n 192.168.1.40 from 10.0.2.15

A

B. ip route get 192.163.1.40 from 10.0.2.15

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

A Linux administrator was tasked with deleting all files and directories with names that are contained in the sobelete.txt file. Which of the following commands will accomplish this task?

A. xargs -f cat toDelete.txt -rm
B. rm -d -r -f toDelete.txt
C. cat toDelete.txt | rm -frd
D. cat toDelete.txt | xargs rm -rf

A

B. rm -d -r -f toDelete.txt

How well did you know this?
1
Not at all
2
3
4
5
Perfectly