Ubuntu - IPv6 auf einem Apache, MySQL Server ausschalten
Posted by Guenny onKurztipp zum Wochenende, zum Thema Ipv6 und Apache/MySQL.
IPv6 auf einem Apache Server ausschalten
Um IPv6 auf einem Apache2 Server abzuschalten genügt ein einfacher Eintrag in der ports.conf.
Hier muss das vorhandene Listen 80 angepasst werden.
nano /etc/apache2/ports.conf
Listen 0.0.0.0:80
sudo service apache2 restart
Ipv6 bei einem MySQL Server deaktivieren
Beim MySQL Server verhält es sich ähnlich, wie beim Apache. Es genügt in der Hauptkonfiguration die Listenadresse zu setzen.
nano /etc/mysql/my.con
bind-address = 0.0.0.0
sudo service mysql restart
Das könnte dich auch interessieren
Trackbacks
Trackback specific URI for this entryThis link is not meant to be clicked. It contains the trackback URI for this entry. You can use this URI to send ping- & trackbacks from your own blog to this entry. To copy the link, right click and select "Copy Shortcut" in Internet Explorer or "Copy Link Location" in Mozilla.
No Trackbacks
Comments
Display comments as Linear | ThreadedHuskynarr on :
Guenny on :