I have a squid and apt-cacher running on a transparent server, and I'm trying to set up net booting.
I'm following the guide: https://help.ubuntu.com/community/Installation/Netboot
Unfortunately, when I tried to start dnsmasq, I got the error:
Code:
dnsmasq: failed to create listening socket: Address already in use
Following internet advice, I tried:
Code:
root@kimende-s:~# netstat -anlp | grep -w LISTEN
and found that dnsmasq was listed even though it was throwing this error.
So I decided to purge it.
After purging (and then restarting, to try and clear any problems) I noticed that it was still listed:
Code:
root@kimende-s:~# netstat -anlp | grep -w LISTEN
tcp 0 0 0.0.0.0:3142 0.0.0.0:* LISTEN 2388/perl
tcp 0 0 10.42.43.1:53 0.0.0.0:* LISTEN 4489/dnsmasq
tcp 0 0 0.0.0.0:22 0.0.0.0:* LISTEN 2375/sshd
tcp 0 0 127.0.0.1:631 0.0.0.0:* LISTEN 2723/cupsd
tcp 0 0 0.0.0.0:3128 0.0.0.0:* LISTEN 2655/(squid)
tcp6 0 0 :::22 :::* LISTEN 2375/sshd
tcp6 0 0 ::1:631 :::* LISTEN 2723/cupsd
Does anyone know why it's still listed even though it's uninstalled?
Last time I was having problems with named...
This is a brand new install... only changes were those mentioned: installing squid and apt-cacher.
Note: I'm using Network Manager as my router. I think this comes with named? I'm not sure...
Bookmarks