Installation Cockpit/Apache Flashcards
1
Q
Command: Betriebssystem updaten
A
sudo dnf -y update
2
Q
Command: Apache installieren
A
sudo dnf -y install httpd
3
Q
Command: Dienst starten und zu Autostart hinzufügen
A
sudo systemctl enable httpd –now
4
Q
Command: Dienststatus anzeigen
A
sudo systemctl status httpd
5
Q
Command: Firewallregeln hinzufügen
A
sudo firewall-cmd –permanent –add-service=http(s)
6
Q
Command: Firewallregeln neustarten
A
sudo firewall-cmd –reload
7
Q
Command: Cockpit installation
A
sudo dnf -y install cockpit
8
Q
Command: Service starten
A
sudo systemctl start cockpit.socket
9
Q
Command: Service in Autostart hinzufügen
A
sudo systemctl enable cockpit.socket
10
Q
Command: Dienststatus anzeigen
A
sudo systemctl status cockpit.socket