unofficial mirror of bug-guix@gnu.org 
 help / color / mirror / code / Atom feed
* bug#66290: transmission-daemon-service-type not serving web interface
@ 2023-10-01  9:00 elaexuotee--- via Bug reports for GNU Guix
  2023-11-25 23:39 ` bug#66290: Alan Manuel Gloria
  0 siblings, 1 reply; 6+ messages in thread
From: elaexuotee--- via Bug reports for GNU Guix @ 2023-10-01  9:00 UTC (permalink / raw)
  To: 66290

The documentation for transmission-daemon-service-type makes it sound like the
web interface should be up and running:

       Once the service is started, users can interact with the daemon
    through its Web interface (at ‘http://localhost:9091/’) ...

However, the daemon throws 404 when accessing said url:

    404: Not Found

    Couldn't find Transmission's web interface files!

    Users: to tell Transmission where to look, set the TRANSMISSION_WEB_HOME environment variable to the folder where the web interface's index.html is located.

    Package Builders: to set a custom default at compile time, #define PACKAGE_DATA_DIR in libtransmission/platform.c or tweak tr_getClutchDir() by hand.

Anyone else seeing this?

Just for good measure, here is my config:

    (transmission-daemon-configuration
      (rpc-authentication-required? #t)
      (rpc-username "transmission")
      (rpc-password "xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx")
      (rpc-whitelist-enabled? #t)
      (rpc-whitelist          '("::1" "127.0.0.1" "192.168.*"))
      (encryption 'require-encrypted-connections)
      (alt-speed-down (* 1024 1)) ; 1MB/s
      (alt-speed-up   512)
      (alt-speed-time-enabled? #t)
      (alt-speed-time-day      'weekdays)
      (alt-speed-time-begin    (* 60 8))
      (alt-speed-time-end      (* 60 19))
      (watch-dir-enabled? #t)
      (watch-dir          "/var/lib/transmission-daemon/torrents"))




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66290:
  2023-10-01  9:00 bug#66290: transmission-daemon-service-type not serving web interface elaexuotee--- via Bug reports for GNU Guix
@ 2023-11-25 23:39 ` Alan Manuel Gloria
  2023-11-26  0:16   ` bug#66290: Alan Manuel Gloria
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Manuel Gloria @ 2023-11-25 23:39 UTC (permalink / raw)
  To: 66290

[-- Attachment #1: Type: text/plain, Size: 204 bytes --]

I am seeing the same thing once I updated Guix. This was not broken a year
ago. Unfortunately, Guix maintainers are slow enough that your best bet is
to simply downgrade to a Guix commit from a year ago.

[-- Attachment #2: Type: text/html, Size: 236 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66290:
  2023-11-25 23:39 ` bug#66290: Alan Manuel Gloria
@ 2023-11-26  0:16   ` Alan Manuel Gloria
  2023-11-29 16:50     ` bug#66290: transmission-daemon-service-type not serving web interface Clément Lassieur
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Manuel Gloria @ 2023-11-26  0:16 UTC (permalink / raw)
  To: 66290; +Cc: Clément Lassieur

[-- Attachment #1: Type: text/plain, Size: 701 bytes --]

The necessary files are in the "gui" output, with a relative path of
"/share/transmission/public_html". It seems to have been fixed by Clément
Lassieur <clement@lassieur.org> in commit
27ec9eeceb971afe11aae4f24ceb8764f1735634 (who I CCed to this) which
predates this bug report and my own experience, which is weird, implying
that the fix has somehow gotten broken again afterwards somehow.

On Sun, Nov 26, 2023 at 7:39 AM Alan Manuel Gloria <almkglor@gmail.com>
wrote:

> I am seeing the same thing once I updated Guix. This was not broken a year
> ago. Unfortunately, Guix maintainers are slow enough that your best bet is
> to simply downgrade to a Guix commit from a year ago.
>

[-- Attachment #2: Type: text/html, Size: 1062 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66290: transmission-daemon-service-type not serving web interface
  2023-11-26  0:16   ` bug#66290: Alan Manuel Gloria
@ 2023-11-29 16:50     ` Clément Lassieur
  2023-11-30  2:44       ` Alan Manuel Gloria
  0 siblings, 1 reply; 6+ messages in thread
From: Clément Lassieur @ 2023-11-29 16:50 UTC (permalink / raw)
  To: Alan Manuel Gloria; +Cc: 66290

On Sun, Nov 26 2023, Alan Manuel Gloria wrote:

> The necessary files are in the "gui" output, with a relative path of "/share/transmission/public_html". It seems to have been fixed by Clément
> Lassieur <clement@lassieur.org> in commit 27ec9eeceb971afe11aae4f24ceb8764f1735634 (who I CCed to this) which predates this bug report
> and my own experience, which is weird, implying that the fix has somehow gotten broken again afterwards somehow.
>
> On Sun, Nov 26, 2023 at 7:39 AM Alan Manuel Gloria <almkglor@gmail.com> wrote:
>
>  I am seeing the same thing once I updated Guix. This was not broken a year ago. Unfortunately, Guix maintainers are slow enough that
>  your best bet is to simply downgrade to a Guix commit from a year ago.

Hi, does it work if you just run `transmission-daemon -f` (and maybe you
can try `guix shell -CN transmission -- transmission-daemon -f` to be
sure the correct one is used) and browse http://localhost:9091?

Also, on which guix commit are you?

Thanks,
Clément




^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66290: transmission-daemon-service-type not serving web interface
  2023-11-29 16:50     ` bug#66290: transmission-daemon-service-type not serving web interface Clément Lassieur
@ 2023-11-30  2:44       ` Alan Manuel Gloria
  2023-11-30 10:17         ` Clément Lassieur
  0 siblings, 1 reply; 6+ messages in thread
From: Alan Manuel Gloria @ 2023-11-30  2:44 UTC (permalink / raw)
  To: Clément Lassieur; +Cc: 66290

[-- Attachment #1: Type: text/plain, Size: 1430 bytes --]

Just did a `guix pull` and rebuilt the system with `guix system
reconfigure` (which took a few days, seems there was a lot of changes), and
now the transmission web UI is working. So probably I was just before that
change.

Can probably close this bug.


On Thu, Nov 30, 2023 at 12:51 AM Clément Lassieur <clement@lassieur.org>
wrote:

> On Sun, Nov 26 2023, Alan Manuel Gloria wrote:
>
> > The necessary files are in the "gui" output, with a relative path of
> "/share/transmission/public_html". It seems to have been fixed by Clément
> > Lassieur <clement@lassieur.org> in commit
> 27ec9eeceb971afe11aae4f24ceb8764f1735634 (who I CCed to this) which
> predates this bug report
> > and my own experience, which is weird, implying that the fix has somehow
> gotten broken again afterwards somehow.
> >
> > On Sun, Nov 26, 2023 at 7:39 AM Alan Manuel Gloria <almkglor@gmail.com>
> wrote:
> >
> >  I am seeing the same thing once I updated Guix. This was not broken a
> year ago. Unfortunately, Guix maintainers are slow enough that
> >  your best bet is to simply downgrade to a Guix commit from a year ago.
>
> Hi, does it work if you just run `transmission-daemon -f` (and maybe you
> can try `guix shell -CN transmission -- transmission-daemon -f` to be
> sure the correct one is used) and browse http://localhost:9091?
>
> Also, on which guix commit are you?
>
> Thanks,
> Clément
>

[-- Attachment #2: Type: text/html, Size: 2003 bytes --]

^ permalink raw reply	[flat|nested] 6+ messages in thread

* bug#66290: transmission-daemon-service-type not serving web interface
  2023-11-30  2:44       ` Alan Manuel Gloria
@ 2023-11-30 10:17         ` Clément Lassieur
  0 siblings, 0 replies; 6+ messages in thread
From: Clément Lassieur @ 2023-11-30 10:17 UTC (permalink / raw)
  To: Alan Manuel Gloria; +Cc: 66290-done

On Thu, Nov 30, 2023, at 2:44 AM, Alan Manuel Gloria wrote:
> Just did a `guix pull` and rebuilt the system with `guix system reconfigure` (

> which took a few days,
!!

> seems there was a lot of changes), and now the transmission web UI is working. So probably I was just before that change.
> 
> Can probably close this bug.

Alright, closed!




^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2023-12-11 10:46 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-10-01  9:00 bug#66290: transmission-daemon-service-type not serving web interface elaexuotee--- via Bug reports for GNU Guix
2023-11-25 23:39 ` bug#66290: Alan Manuel Gloria
2023-11-26  0:16   ` bug#66290: Alan Manuel Gloria
2023-11-29 16:50     ` bug#66290: transmission-daemon-service-type not serving web interface Clément Lassieur
2023-11-30  2:44       ` Alan Manuel Gloria
2023-11-30 10:17         ` Clément Lassieur

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).