Reply
Logi Guru II
squeezeit
Posts: 2,546
Registered: ‎09-30-2010
0

Re: My Apps have disappeared

Worth a shot to try support.  Though if the SlimDevices forum users could not help then I wouldn't put much faith in the Logitech support avenue, only because the real hard core users of third party hardware/software/os (nas, ubuntu, linux, etc..) hang out in those forums and I'm not even sure Ubuntu is even officially supported for LMS.

Logi Nu
tjjoyn
Posts: 1
Registered: ‎03-10-2012

Re: My Apps have disappeared

I had a similar issue with LMS not being able to log in to mysqueezebox.com. This was on w7 (64 bit), LMS 7.7.1, with the following symptoms:

 server log shows "Couldn't resolve IP address for: www.mysqueezebox.com" errors

 www.mysqueezebox.com is reachable from other applications

 LMS installed on another computer (running the same w7 OS) in my house works fine.

 Trace of port 53 shows no DNS traffic when the failure occurs (but the requests are seen on the working PC)

  Diagostics tab on control panel shows that everything is ok.

  Restarting the computer, uninstalling/re-installing LMS, etc doesn't fix the issue.

 

I also got the source code, and tried calling the resolver code directly with some test code:

#!/usr/bin/perl
use strict;

use AnyEvent::smileyvery-happy:NS;
use Data::smileyvery-happy:umper;

my $host = "www.mysqueezebox.com";
AnyEvent::smileyvery-happy:NS::resolver->resolve (
      $host => "a", my $cv = AnyEvent->condvar);
   warn Dumper [$cv->recv];

 

That worked fine also:

$VAR1 = [
          [
            'www.mysqueezebox.com',
            'a',
            'in',
            '50.17.234.107',
            124
          ]
        ];

 

After studying the code some more, I found the following workaround that seems to work for me:

 

a) Create a resolv.conf file (e.g. at c:\users\tom\resolv.conf) containing the needed nameserver entries. In my case, I used the google DNS servers:

nameserver 8.8.8.8
nameserver 8.8.4.4

 

b) Create a system environment variable that points to the file:

PERL_ANYEVENT_RESOLV_CONF    c:\users\tom\resolv.conf

 

c) Restart the computer (so service has access to the environment variable)

 

After that, LMS was able to log in and my apps showed up again!

 

 

  Tom

 

    

 

Logi Visitor
seancarmody
Posts: 20
Registered: ‎08-19-2011
0

Re: My Apps have disappeared

Any ideas on how to resolve this problem on either Ubuntu or Mac OSX?