Hoe herstart ik een Apache 2-webserver onder een Debian / Ubuntu / CentOS / RHEL / Fedora Linux of UNIX-achtige besturingssystemen? Kunt u mij het commando geven om de Apache 2-webserver onder Linux te starten of te stoppen?
Details van instructies | |
---|---|
Moeilijkheidsgraad | Gemakkelijk (rss) |
Rootprivileges | Ja |
Vereisten | Apache 2 op Linux / Unix |
Tijd | 1m |
Apache wordt voornamelijk gebruikt om zowel statische inhoud als dynamische webpaginas op het World Wide Web weer te geven . Veel webapplicaties zijn ontworpen in afwachting van de omgeving en functies die Apache biedt. Apache kan worden gestart of opnieuw gestart met een van de volgende methoden op Linux of Unix-achtige systemen.
Log eerst in op uw webserver met de ssh-client , als de server zich niet in uw lokale datacenter bevindt:
ssh [email protected]
Typ na het inloggen de volgende opdrachten volgens uw Linux- of Unix-variant.
Debian / Ubuntu Linux specifieke commandos om Apache te starten / stoppen / herstarten
U kunt gebruik service of /etc/init.d/ commando als volgt op Debian Linux versie 7.x of Ubuntu Linux versie Ubuntu 14.10 of ouder:
Start Apache 2 webserver opnieuw, voer in:
# /etc/init.d/apache2 restart
OF
$ sudo /etc/init.d/apache2 restart
OF
$ sudo service apache2 restart
Om de Apache 2-webserver te stoppen, voer je in:
# /etc/init.d/apache2 stop
OF
$ sudo /etc/init.d/apache2 stop
OF
$ sudo service apache2 stop
Om Apache 2 webserver te starten, voer je in:
OF
$ sudo /etc/init.d/apache2 start
OF
$ sudo service apache2 start
Een opmerking over Debian / Ubuntu Linux systemd-gebruikers
Gebruik de volgende systemctl-opdracht op Debian Linux versie 8.x + of Ubuntu Linux-versie Ubuntu 15.04+ of hoger:
## Start command ##
systemctl start apache2.service
## Stop command ##
systemctl stop apache2.service
## Restart command ##
systemctl restart apache2.service
CentOS / RHEL (Red Hat) Linux versie 4.x / 5.x / 6.x of oudere specifieke commandos
## Start ##
service httpd start
## Stop ##
service httpd stop
## Restart ##
service httpd restart
CentOS / RHEL (Red Hat) Linux versie 7.x of nieuwere specifieke commandos
De meeste moderne distros gebruiken nu systemd, dus je moet de volgende systemctl gebruiken commando:
## Start command ##
systemctl start httpd.service
## Stop command ##
systemctl stop httpd.service
## Restart command ##
systemctl restart httpd.service
Alpine Linux start / stop / herstart Apache 2 met openrc
We moeten het service commando gebruiken als rootgebruiker:
# service apache2 start
# service apache2 stop
# service apache2 status
# service apache2 restart
Sessie:
* Stopping apache2 ... * Starting apache2
Algemene methode om te starten / stoppen / herstarten Apache op een Linux / Unix
🐧 Download de laatste tutorials over Linux, Open S ource & DevOps via RSS-feed of wekelijkse e-mailnieuwsbrief.
🐧 Tot nu toe 23 reacties … voeg er een toe ↓
Categorie | Lijst met Unix- en Linux-opdrachten |
---|---|
Bestandsbeheer | cat |
Firewall | Alpine Awall • CentOS 8 • OpenSUSE • RHEL 8 • Ubuntu 16.04 • Ubuntu 18.04 • Ubuntu 20.04 |
Netwerkhulpprogrammas | dig • host • ip • nmap |
OpenVPN | CentOS 7 • CentOS 8 • Debian 10 • Debian 8/9 • Ubuntu 18.04 • Ubuntu 20.04 |
Pakketbeheer | apk • apt |
Procesbeheer | bg • chroot • cron • disown • fg • jobs • killall • kill • pidof • pstree • pwdx • tijd |
Zoeken | grep • whereis • welke |
Gebruikersinformatie | groepen • id • lastcomm • laatste • l id / libuser-lid • lognaam • leden • gebruikers • whoami • wie • w |
WireGuard VPN | Alpine • CentOS 8 • Debian 10 • Firewall • Ubuntu 20.04 |