1

I'm a new volunteer at a university radio station after the old network tech walked out.

I cannot connect to the radios CentOS server on 192.168.1.119 which hosts our Icecast broadcast program which means we are not broadcasting anything across all channels. When I search in Chrome I get a basic error message of:

192.168.1.119 didn't send any data

ERR_EMPTY_RESPONSE

I've tried the basics and deleted the cache but I can't seem to figure out why I don't have access. Additionally I only have a very basic knowledge of CentOS and networking. Any help would be appreciated.

techraf
  • 4,243
  • 8
  • 29
  • 44
  • 1
    Please make sure Icecast is running. `ps aux|grep icecast` and `netstat -plant|grep icecast` should give you an idea if anything is running and on which port. Feel free to stop by the #icecast channel on Freenode - http://icecast.org/contact/#contact-info - for more interactive help. – TBR Oct 07 '16 at 14:05
  • @TBR Appreciate the reply, but can't really understand what I'm looking for when I input the commands. Any idea what specifically I need? – Alex Hamilton Oct 07 '16 at 15:06

1 Answers1

-1

I have googled your issue and someone has come up with the following solution that you could try. I will need to assume you are using a Windows operating system but please correct this if not so.

First you need to start command prompt with admin rights.

Once you have command prompt up and running, try these commands:

Run below commands one by one.

ipconfig /release
ipconfig /all
ipconfig /flushdns
ipconfig /renew

netsh int ip set dns
netsh winsock reset

Then restart your PC.

What this will do is release your IP, renew your IP and flush your DNS settings and reset your winsock.

I found this solution and full guide on this website here

SleepyMan
  • 134
  • 2
  • It clearly says **CentOS** not Windows -- your answer is so far off, it's not even wrong. – TBR Oct 07 '16 at 14:07
  • From what I understand, the IceCast service is running on CentOS but the client browser he is using could be Windows as he stated he is using Chrome. Hence why I said I am assuming and needs correcting if not so to which I can edit my response. – SleepyMan Oct 07 '16 at 14:09
  • Yes sorry should have stated. IceCast is running on CentOS but I'm using a windows client to access it, – Alex Hamilton Oct 07 '16 at 14:50
  • 1
    Tried all these steps and no change sadly. I should point out that its not just this client that cannot reach the server, all other networked PCs within the radio station cannot reach it either. Additionally, no one attempting to connect to the streaming application can hear what we are broadcasting – Alex Hamilton Oct 07 '16 at 14:57
  • Are you able to run the commands that TBR suggested to see if the service is actually running and listening on the interface? This would be run on the CentOS server itself. – SleepyMan Oct 07 '16 at 15:01
  • [link] (https://postimg.org/image/ob93lb14h/) this is the response I get from those commands. – Alex Hamilton Oct 07 '16 at 15:07
  • I see two icecast daemons and one of them (pid 4368) uses 99.9% CPU. There are three vi editors witch edit icecast config at one time. Reboot this server and it resolves the problem. – Mikhail Khirgiy Oct 07 '16 at 18:38
  • Reboot is not the answer, this is not Windows where it's easier to invoke the nuclear option than anything else. `killall icecast` should terminate both processes. `/etc/init.d/icecast start` would be the command to start Icecast after that. – TBR Oct 09 '16 at 00:08