-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Web GUI is not loading #1452
Comments
Can you confirm your port setting is correct?
|
Yes that should be right. I have all of my containers in sequential order of ports. I can change that and see if it makes a difference |
Can you check if the port is open and visible from the host? Also may need to clear the browser cache. Also, check the Transmission log to see if any error there. Also the route table by |
I'm getting a similar issue, and when I try to go to the Web GUI I get a 404 error `404: Not Found 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.` |
So interesting update i was able to access the webpage if i use 127.0.0.1 but i cant access it when i use the machines ip |
I think there is something not right with your route, can you post that? |
this is what i get when looking at the port this is what i get with ip r default via 192.168.1.1 dev eno1 proto static metric 100 |
try -> ip r get |
Error: any valid prefix is expected rather than "host". this was my result |
replace host ip by the actual host ip, eg 192.168.x.x , I can't get <> work on the GitHub editor for some reason |
ah my bad local 192.168.1.4 dev lo src 192.168.1.4 uid 1000 |
result of |
1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 100 0 |
Are you issuing at the host level instead of inside the container? |
these commands are from inside the host |
please try to issue it inside the container |
ash-5.0# ip addr |
|
bash-5.0# ip r |
In the browser what url are you using to access the GUI? |
try just ->192.168.1.4:9010 |
That is correct it does not load. |
What is the host? VM/Raspberry pi, etc? |
its a full ubuntu server |
But 127.0.0.1:9010 works ok? |
on that server it does work. obviously doesn't work from another computer on the same network. |
|
NETWORK ID NAME DRIVER SCOPE |
|
This fixed my issue. Thank You! |
Glad you got it working @drenfro87 👏 I think the issues of @mjw210 @theincredibleman and @planetrocky will be fixed by removing There's been a bunch of issues after upgrading to 3.x so I'm trying to work through them. I do have high hopes that it will be worth it in the long run though 🤞 |
@haugene I can confirm that removing Tested with a container built with pulling tag |
@haugene, yup, that did it 👏 |
@haugene that helped on my end as well, thanks! |
Seems you've all got it settled then 🎉 |
I am having a similar issue with my Web UI not displaying. I followed along with the solutions above but did not resolve. (command Input) (output) (browser) Sorry if this is a stupid question. |
so your local ip in your lan is really on the
what is your docker host ip and ip of machine you are browsing from? |
I am on a vps, here are the results of "ip addr" 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 |
which machine is that from? and I'm assuming you have setup the container on the vps, but accessing it from somewhere else.. thats the thing, you need to add the source network |
That is from the VPS that has Docker installed. which address is the source that i need to add? |
here are the results of "ip addr" from main cpu 1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000 |
what is the ip of the machine from which you are using the browser to access transmission? |
what do you mean with main cpu? |
i mean it is the computer im browsing. |
Then you should add that range to Local network setting
…On Wed, Nov 10, 2021 at 9:58 GustoNOOB19 ***@***.***> wrote:
i mean it is the computer im browsing.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1452 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA7OFYXSROYKYURJC3ZX6ULULG7R3ANCNFSM4TG6UGGA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
Tried |
hmm, you can try using the proxy container for access |
working now! I need to add a third ip. Thanks for the responses. |
Can I ask which IPs were needed in the end?
…On Thu, Nov 11, 2021 at 5:21 GustoNOOB19 ***@***.***> wrote:
working now! I need to add a third ip. Thanks for the responses.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#1452 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AA7OFYXTS2HORHWE35SLS7TULLH3RANCNFSM4TG6UGGA>
.
Triage notifications on the go with GitHub Mobile for iOS
<https://apps.apple.com/app/apple-store/id1477376905?ct=notification-email&mt=8&pt=524675>
or Android
<https://play.google.com/store/apps/details?id=com.github.android&referrer=utm_campaign%3Dnotification-email%26utm_medium%3Demail%26utm_source%3Dgithub>.
|
VPN of browsing machine |
Ah |
hey what did u add ? i'm having the same problem and tried a lot of methods still the web ui doesnt work |
you don't happen to run on macOS do you? latest docker versions have problems ..check #2723 |
I'm using debian server |
Describe the problem
I tried to change my vpn over to custom since the PIA nextgen change stopped it from working. transmission seems to be working since I can contact it via sonarr and radarr. It also is processing the downloads but I am unable to access the website.
Add your docker run command
transmission-vpn-radarr:
container_name: transmission-vpn-radarr
image: haugene/transmission-openvpn
cap_add:
- NET_ADMIN
devices:
- /dev/net/tun
restart: always
ports:
- "9010:9091"
dns:
- 1.1.1.1
- 1.0.0.1
volumes:
- /etc/localtime:/etc/localtime:ro
- /docker/transmission-vpn-radarr:/data
- /docker/shared-radarr:/shared
- /media/Unicron/Unsorted/radarr:/data/completed
- /media/Unicron/Unsorted/temp:/data/incomplete
- /media/Unicron/Unsorted/watch:/data/watch
- '~/docker/pia/US Chicago.ovpn:/etc/openvpn/custom/default.ovpn'
environment:
- OPENVPN_PROVIDER=CUSTOM
- OPENVPN_USERNAME=*******
- OPENVPN_PASSWORD=*******
- PUID=1000
- PGID=1004
- TZ=America/Chicago
- TRANSMISSION_RPC_AUTHENTICATION_REQUIRED=true
- TRANSMISSION_RPC_HOST_WHITELIST="127.0.0.1,192.168.."
- TRANSMISSION_RPC_PASSWORD=*******
- TRANSMISSION_RPC_USERNAME=******
- TRANSMISSION_UMASK=002
- LOG_TO_STDOUT=true
Logs
2020-11-02T03:07:16.707364161Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197295 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.707371550Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197297 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.707378865Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197300 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710548261Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197301 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710578680Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197303 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710587938Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197292 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710595583Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197296 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710603046Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197298 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710610349Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197299 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710617701Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197302 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710624934Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197304 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.710644700Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197305 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711209943Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197306 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711230910Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197309 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711241383Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197310 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711248920Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197313 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711256321Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197316 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711272760Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197318 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711280727Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197320 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711288117Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197307 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711297130Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197308 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711304693Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197322 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711312014Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197311 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711319389Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197312 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711331834Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197314 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711341544Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197323 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711350887Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197315 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711360048Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197326 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711369289Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197317 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711384650Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197319 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711394403Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197328 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711410035Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197321 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711419870Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197324 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711509916Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197325 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711534027Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197327 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711544829Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197329 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711554141Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197331 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711563406Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197330 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711578676Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197332 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711587526Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197333 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711596024Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197334 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711605893Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197335 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711614691Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197336 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711623136Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197337 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711646303Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197338 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:07:16.711655643Z Sun Nov 1 21:07:16 2020 Authenticate/Decrypt packet error: bad packet ID (may be a replay): [ #197339 ] -- see the man page entry for --no-replay and --replay-window for more info or silence this warning with --mute-replay-warnings,
2020-11-02T03:09:34.512221087Z Sun Nov 1 21:09:34 2020 event_wait : Interrupted system call (code=4),
2020-11-02T03:09:34.515136397Z Sun Nov 1 21:09:34 2020 /sbin/ip addr del dev tun0 10.17.112.3/24,
2020-11-02T03:09:34.558367606Z Sun Nov 1 21:09:34 2020 /etc/openvpn/tunnelDown.sh tun0 1500 1558 10.17.112.3 255.255.255.0 init,
2020-11-02T03:09:34.561293811Z Sending kill signal to transmission-daemon,
2020-11-02T03:09:34.568592361Z Sun Nov 1 21:09:34 2020 SIGTERM[hard,] received, process exiting,
2020-11-02T03:09:37.626107527Z mknod: /dev/net/tun: File exists,
2020-11-02T03:09:37.628389269Z Using OpenVPN provider: CUSTOM,
2020-11-02T03:09:37.628648890Z No VPN configuration provided. Using default.,
2020-11-02T03:09:37.628723836Z Setting OpenVPN credentials...,
2020-11-02T03:09:37.707276318Z Sun Nov 1 21:09:37 2020 OpenVPN 2.4.9 x86_64-alpine-linux-musl [SSL (OpenSSL)] [LZO] [LZ4] [EPOLL] [MH/PKTINFO] [AEAD] built on Apr 20 2020,
2020-11-02T03:09:37.707328466Z Sun Nov 1 21:09:37 2020 library versions: OpenSSL 1.1.1g 21 Apr 2020, LZO 2.10,
2020-11-02T03:09:37.707338101Z Sun Nov 1 21:09:37 2020 NOTE: the current --script-security setting may allow this configuration to call user-defined scripts,
2020-11-02T03:09:37.709389453Z Sun Nov 1 21:09:37 2020 CRL: loaded 1 CRLs from file [[INLINE]],
2020-11-02T03:09:37.747129060Z Sun Nov 1 21:09:37 2020 TCP/UDP: Preserving recently used remote address: [AF_INET]154.21.23.11:1198,
2020-11-02T03:09:37.747168284Z Sun Nov 1 21:09:37 2020 UDP link local: (not bound),
2020-11-02T03:09:37.747177796Z Sun Nov 1 21:09:37 2020 UDP link remote: [AF_INET]154.21.23.11:1198,
2020-11-02T03:09:37.756206127Z Sun Nov 1 21:09:37 2020 WARNING: this configuration may cache passwords in memory -- use the auth-nocache option to prevent this,
2020-11-02T03:09:37.831257369Z Sun Nov 1 21:09:37 2020 [chicago411] Peer Connection Initiated with [AF_INET]154.21.23.11:1198,
2020-11-02T03:09:39.048241088Z Sun Nov 1 21:09:39 2020 TUN/TAP device tun0 opened,
2020-11-02T03:09:39.048281513Z Sun Nov 1 21:09:39 2020 /sbin/ip link set dev tun0 up mtu 1500,
2020-11-02T03:09:39.049765258Z Sun Nov 1 21:09:39 2020 /sbin/ip addr add dev tun0 10.7.112.5/24 broadcast 10.7.112.255,
2020-11-02T03:09:39.051114646Z Sun Nov 1 21:09:39 2020 /etc/openvpn/tunnelUp.sh tun0 1500 1558 10.7.112.5 255.255.255.0 init,
2020-11-02T03:09:39.055890785Z Up script executed with tun0 1500 1558 10.7.112.5 255.255.255.0 init,
2020-11-02T03:09:39.055944981Z Updating TRANSMISSION_BIND_ADDRESS_IPV4 to the ip of tun0 : 10.7.112.5,
2020-11-02T03:09:39.058303091Z Updating Transmission settings.json with values from env variables,
2020-11-02T03:09:39.119472861Z Using existing settings.json for Transmission /data/transmission-home/settings.json,
2020-11-02T03:09:39.119499654Z Overriding bind-address-ipv4 because TRANSMISSION_BIND_ADDRESS_IPV4 is set to 10.7.112.5,
2020-11-02T03:09:39.119510311Z Overriding download-dir because TRANSMISSION_DOWNLOAD_DIR is set to /data/completed,
2020-11-02T03:09:39.119519694Z Overriding incomplete-dir because TRANSMISSION_INCOMPLETE_DIR is set to /data/incomplete,
2020-11-02T03:09:39.119528737Z Overriding rpc-authentication-required because TRANSMISSION_RPC_AUTHENTICATION_REQUIRED is set to True,
2020-11-02T03:09:39.119537929Z Overriding rpc-host-whitelist because TRANSMISSION_RPC_HOST_WHITELIST is set to 127.0.0.1,192.168..,
2020-11-02T03:09:39.119546902Z Overriding rpc-password because TRANSMISSION_RPC_PASSWORD is set to ********,
2020-11-02T03:09:39.119555793Z Overriding rpc-port because TRANSMISSION_RPC_PORT is set to 9091,
2020-11-02T03:09:39.119564636Z Overriding rpc-username because TRANSMISSION_RPC_USERNAME is set to **********,
2020-11-02T03:09:39.119573534Z Overriding umask because TRANSMISSION_UMASK is set to 2,
2020-11-02T03:09:39.119582367Z Overriding watch-dir because TRANSMISSION_WATCH_DIR is set to /data/watch,
2020-11-02T03:09:39.125588966Z sed'ing True to true,
2020-11-02T03:09:39.137747677Z Enforcing ownership on transmission config directories,
2020-11-02T03:09:39.149670584Z Applying permissions to transmission config directories,
2020-11-02T03:09:39.161066989Z Setting owner for transmission paths to 1000:1004,
2020-11-02T03:09:40.275369665Z Setting permission for files (644) and directories (755),
2020-11-02T03:09:41.251650572Z Setting permission for watch directory (775) and its files (664),
2020-11-02T03:09:41.256204912Z ,
2020-11-02T03:09:41.256224483Z -------------------------------------,
2020-11-02T03:09:41.256235121Z Transmission will run as,
2020-11-02T03:09:41.256244754Z -------------------------------------,
2020-11-02T03:09:41.256253947Z User name: abc,
2020-11-02T03:09:41.256262961Z User uid: 1000,
2020-11-02T03:09:41.256271804Z User gid: 1004,
2020-11-02T03:09:41.256280714Z -------------------------------------,
2020-11-02T03:09:41.256289932Z ,
2020-11-02T03:09:41.256305022Z STARTING TRANSMISSION,
2020-11-02T03:09:41.256786927Z Transmission startup script complete.,
2020-11-02T03:09:41.262112388Z Sun Nov 1 21:09:41 2020 Initialization Sequence Completed,
Host system:
Ubuntu and Docker version 19.03.12, build 48a66213fe
The text was updated successfully, but these errors were encountered: