Wiley Quiz Questions Flashcards
Which web server is used in the popular LAMP stack?
Apache
A ________ runs in background and listens for client connection requests for a single application.
Daemon
Which open-source database provided fast performance and became a popular choice for web applications?
MySQL
How does a server know what client request is sent to which application daemon?
Ports
What popular open source web server can also perform as a load balancer?
nginx
The nginX web server can also perform as a load balancer and send client requests to multiple backend web servers
What format does MongoDB use to store data elements in the database?
JSON
Which part of the Linux mail process is responsible for sending emails to remote hosts?
MTA
The MTA package is responsible for connecting with remote mail hosts to deliver email messages
Which part of the Linux mail process allows you to create filters to automatically redirect incoming mail messages?
MDA
The MDA allows you to create filters to match email messages to redirect to other folders
What protocol should you use to mount folders from remote Linux servers on your local Linux server?
NFS
The NFS protocol is used to share folder areas on the network with clients
The ________ software package allows your Windows workstations to mount a folder stored on a Linux server.
Samba
Which two software packages are used in Linux to maintain log files?
rsyslogd
journald
Which software program should you load on your Linux server to synchronize its time with a standard time server?
ntpd
What software package allows a Linux server to print to a network printer?
CUPS
If you see the named program running in background on your Linux server, what service does it provide?
Hostname resolution
Which authentication package used to be called by the name “Yellow Pages”?
NIS
What package do you need to install to allow your Linux server to provide IP addresses to clients on your local network?
DHCPd
The _______ package allows you to create a secure tunnel across a private network to access your local network remotely.
OpenSSH
The OpenSSH package allows you to use certificates to establish a secure connection between two devices on the network
What server role should you implement to block your local network clients from accessing sports websites during business hours?
A web proxy
A web proxy server allows you to intercept client web requests and block any requests based on rules you define
What server role should you implement to increase performance on your company’s website?
A load balancer
A _______ allows your developers to easily deploy applications between development, test, and production.
A container
You are looking at a directory that you have not viewed in a long time and need to determine which files are actually directories. Which command is the best one to use?
ls -F
append an indicator code of / to every directory name, so therefore it is the best choice
You are using the ls command to look at a directory file’s metadata but keep seeing metadata for the files within it instead. What command option will rectify this situation?
-d
The -d switch on the ls command will allow you to view a directory file’s metadata instead of seeing metadata for the files managed by that directory
You have just created an empty directory called MyDir. Which command most likely did you use?
mkdir -v MyDir
The mkdir -v command creates a directory and lets you know whether or not it was successful
You have a file that is over 10GB in size, and it needs to be backed up to a locally attached drive. What is the best utility to use in this situation?
The rsync utility allows you to perform fast local copies, so for a big file it is the best utility to use in this case