|
****Nick and Artie listening thread 1/27 listening thread**** Friday night, sitting in a drinking gin and juice, let's get this party started!
Started by j shmuck on
, 18 posts
by 4 people.
Answer Snippets (Read the full thread at dawgsaloon):
In for Rick & Arnie soon Here we go rock me like a baby gorilla Nice, Kate Upton in the game Originally Posted by Douchebag 007 Have you seen his creepy twitter photo?
http://twitter.com/Buck Originally Posted by jms397 Have you seen his creepy twitter... .
|
|
Have there been any tests of this? My tinnitus seems to be more noticeable when I've been listening with headphones. I don't play either at extreme volumes.
Started by RickH on
, 20 posts
by 16 people.
Answer Snippets (Read the full thread at stevehoffman):
I'm not aware of any tests greater concerns about headphone listening....
I agree , people tend to listen louder than they think they are that said Variables to listen loud & Haedphones seem to be what get's my ears "tired" ....
On the radio.
|
|
How can you find out which process is listening on a port on Windows?
Started by Readonly on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
It's the old Sysinternals app that Microsoft bought.
I "listening"
Use TCPView if you want a GUI for this.
|
Ask your Facebook Friends
|
Is there a way to determine what program is listening to some port, TCP or UDP, in Linux?
Started by whitequark on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
Netstat -pln | grep 'Port number' --> from this info you can fetch the PID ps aux | grep 'PID' --... .
Ss -tlp
Quicker than netstat.
Take a look at this and this page.
Netstat -lp
is the command you want, but you need to be root to see all the data .
|
|
What's the simplest way to check if anything is listening on net.tcp://localhost:8801/ Preferably using WCF
Started by satanowicz on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Can You show me some code to do this?.
Simply open a Socket (or TcpClient ) and try connecting to that endpoint .
I don't think WCF is the best way to do that .
|
|
I want to see if something is listening on a port on localhost. I was going to use nc and check the exit code.
Something like this:
echo "" | nc localhost 14881 echo $?
Any other suggestions?
Started by Rory McCann on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at serverfault):
Netstat -ano | egrep LISTEN | egrep tcp | egrep $PORTNUMBER
lsof -i :14881.
Might not be listening on localhost or it might be blocked by iptables:
netstat -ln | grep :14881 echo switches to netstat.
|
|
Hi,
I have been trying to build and configure ntp clients and server , and used this line in the ntp.conf for the clients:
restrict default ignore
Still, I see that my client is listening on the local network interface. From the system log:
Listening ...
Started by Adam Matan on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Read the Controlling Access to Your Server section at this FreeBSD article
If you want to deny all machines from accessing your NTP server, add [that line to the server]
You might want to recheck with these ... .
From what i recollect, thats a server line.
|
|
Hi,
I'm having a problem where a TCP socket is listening on a port, and has been working perfectly for a very long time - it's handled multiple connections, and seems to work flawlessly. However, occasionally when calling accept() to create a new connection...
Started by Thomi on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
For anything that might be causing it to stop listening..
|
|
MAHABONE BUDDAYS!
Started by disneyspy on
, 23 posts
by 10 people.
Answer Snippets (Read the full thread at ronfez):
Buddays I'd like to distance myself from this thread.
The unoffical unoffical? this thread isnt unoffical enough.
|
|
I have an app that doesn't properly stop listening on a port.
How do I force it to stop so I can open the application again/use that port again?
Started by bobber205 on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at serverfault):
Yup - get TCPView from SysInternals, find the application and... .
The
<pid>
can be found by doing a
ps aex
at the command line .
If the application is running under unix,
Kill -9 <pid>
will forcefully kill a process releasing all it's resources .
|