Everything posted by joshuaavalon
-
Unraid OS version 6.7 available
But why would it work on 6.5? Also, do I have any way to test or check it?
-
Unraid OS version 6.7 available
I update from 6.5.X to 6.7.0. The update is success. But I face some freeze from time to time. For example, 1. Connecting SSH in LAN and typing can freeze a few second once in a while. 2. Playing video file via network share also freeze a few once in a while. CPU and RAM load is < 10% and these problems did not happen before update. Does someone face similar issue?
-
[Plug-In] Community Applications
I pretty sure I killed it. I use "pgrep -f name | xargs kill" to kill it. I also use "ps aux | grep name" to ensure it is killed. I tried to refresh the page but it does not remove it either.
-
[Plug-In] Community Applications
No, I mean I kill my script in terminal using kill <PID>. But the GUI still shows it is running unless I click abort script. Is there a way to stop it in command line?
-
[Plug-In] Community Applications
How can I kill a user script? I kill the script but it still show script running in web UI.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
There can be only 1 default conf (server_name _). You can filter by server name and use * for wildcard. server { listen 443 ssl; server_name subdomain1.domain1.com; location / { proxy_pass http://192.168.1.2:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } } server { listen 443 ssl; server_name domain2.com *.domain2.com; location / { proxy_pass http://192.168.1.2:8080; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } }
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
I doubt that would work. You need the environment variable for the script to get the cert for you. Adding conf in nginx will only allow access the second domain without cert.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Use "-e EXTRA_DOMAINS". Assume you have domain1.com and domain2.com ... -e URL=domain1.com \ -e SUBDOMAINS=subdomain1,subdomain2,subdomain3 \ -e EXTRA_DOMAINS subdomain1.domain2.com,subdomain2.domain2.com,subdomain3.domain2.com ... Or you can setup a second docker behind the first docker and use Nginx to forward all the traffic. First method is simpler though.
-
[Support] Linuxserver.io - SWAG - Secure Web Application Gateway (Nginx/PHP/Certbot/Fail2ban)
Is there a way to use this with Cloudflare without manually stop the proxy? tls-sni-01 challenge keep failing until I turn off the proxy.
-
[Support] Linuxserver.io - Nextcloud
Have you check out https://docs.nextcloud.com/server/12/admin_manual/configuration_files/big_file_upload_configuration.html?
-
[Support] Linuxserver.io - Nextcloud
But I find some work around. Set ldapIgnoreNamingRules to true in config (which also not working, I set sanitizeUsername in apps/user_ldap/lib/Access.php to true) to avoid iconv(). If it still not work for you, you can set Internal Username to uid. OR https://github.com/docker-library/php/issues/240#issuecomment-327992638 (Cannot get it work, even the function work on commandline) @CHBMB May be a new tag with container that is not based alpine? Edit: For someone just want it to work. You can put Access.php under apps/user_ldap/lib/. All the changes have commented with // CHANGE
-
[Support] Linuxserver.io - Nextcloud
I am running NextCloud with Synology Directory Server for LDAP. All the LDAP setting is passed. I have also use this LDAP Server on other applications. I am trying to fix this but I don't understand `uid for 'uid=username,cn=users,dc=ldap,dc=example,dc=com' must not be an empty string`. { "reqId" : "uNAeMmGroqA1r5mYYGu3", "level" : 3, "time" : "2017-10-16T15:11:25+00:00", "remoteAddr" : "172.18.0.1", "user" : "--", "app" : "user_ldap", "method" : "POST", "url" : "\/index.php\/login?user=username", "message" : "uid for 'uid=username,cn=users,dc=ldap,dc=example,dc=com' must not be an empty string", "userAgent" : "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/61.0.3163.100 Safari\/537.36", "version" : "12.0.3.3" }{ "reqId" : "uNAeMmGroqA1r5mYYGu3", "level" : 3, "time" : "2017-10-16T15:11:25+00:00", "remoteAddr" : "172.18.0.1", "user" : "--", "app" : "index", "method" : "POST", "url" : "\/index.php\/login?user=username", "message" : "Exception: {\"Exception\":\"InvalidArgumentException\",\"Message\":\"uid must not be an empty string!\",\"Code\":0,\"Trace\":\"#0 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User\\\/Manager.php(131): OCA\\\\User_LDAP\\\\User\\\\User->__construct('', 'uid=avalonjoshu...', Object(OCA\\\\User_LDAP\\\\Access), Object(OC\\\\AllConfig), Object(OCA\\\\User_LDAP\\\\FilesystemHelper), Object(OCP\\\\Image), Object(OCA\\\\User_LDAP\\\\LogWrapper), Object(OC\\\\AvatarManager), Object(OC\\\\User\\\\Manager), Object(OC\\\\Notification\\\\Manager))\\n#1 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User\\\/Manager.php(222): OCA\\\\User_LDAP\\\\User\\\\Manager->createAndCache('uid=avalonjoshu...', '')\\n#2 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User\\\/Manager.php(248): OCA\\\\User_LDAP\\\\User\\\\Manager->createInstancyByUserName('')\\n#3 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/Access.php(829): OCA\\\\User_LDAP\\\\User\\\\Manager->get('')\\n#4 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/Access.php(807): OCA\\\\User_LDAP\\\\Access->batchApplyUserAttributes(Array)\\n#5 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/Access.php(780): OCA\\\\User_LDAP\\\\Access->fetchListOfUsers('(&(&(|(objectcl...', Array)\\n#6 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User_LDAP.php(136): OCA\\\\User_LDAP\\\\Access->fetchUsersByLoginName('username', Array)\\n#7 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User_LDAP.php(153): OCA\\\\User_LDAP\\\\User_LDAP->getLDAPUserByLoginName('username')\\n#8 [internal function]: OCA\\\\User_LDAP\\\\User_LDAP->checkPassword(*** sensitive parameters replaced ***)\\n#9 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User_Proxy.php(71): call_user_func_array(Array, Array)\\n#10 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/Proxy.php(150): OCA\\\\User_LDAP\\\\User_Proxy->walkBackends('username', 'checkPassword', Array)\\n#11 \\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User_Proxy.php(186): OCA\\\\User_LDAP\\\\Proxy->handleRequest('username', 'checkPassword', Array)\\n#12 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/User\\\/Manager.php(216): OCA\\\\User_LDAP\\\\User_Proxy->checkPassword(*** sensitive parameters replaced ***)\\n#13 \\\/config\\\/www\\\/nextcloud\\\/core\\\/Controller\\\/LoginController.php(231): OC\\\\User\\\\Manager->checkPasswordNoLogging(*** sensitive parameters replaced ***)\\n#14 [internal function]: OC\\\\Core\\\\Controller\\\\LoginController->tryLogin(*** sensitive parameters replaced ***)\\n#15 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/AppFramework\\\/Http\\\/Dispatcher.php(160): call_user_func_array(Array, Array)\\n#16 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/AppFramework\\\/Http\\\/Dispatcher.php(90): OC\\\\AppFramework\\\\Http\\\\Dispatcher->executeController(Object(OC\\\\Core\\\\Controller\\\\LoginController), 'tryLogin')\\n#17 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/AppFramework\\\/App.php(114): OC\\\\AppFramework\\\\Http\\\\Dispatcher->dispatch(Object(OC\\\\Core\\\\Controller\\\\LoginController), 'tryLogin')\\n#18 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/AppFramework\\\/Routing\\\/RouteActionHandler.php(47): OC\\\\AppFramework\\\\App::main('OC\\\\\\\\Core\\\\\\\\Control...', 'tryLogin', Object(OC\\\\AppFramework\\\\DependencyInjection\\\\DIContainer), Array)\\n#19 [internal function]: OC\\\\AppFramework\\\\Routing\\\\RouteActionHandler->__invoke(Array)\\n#20 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/private\\\/Route\\\/Router.php(299): call_user_func(Object(OC\\\\AppFramework\\\\Routing\\\\RouteActionHandler), Array)\\n#21 \\\/config\\\/www\\\/nextcloud\\\/lib\\\/base.php(1004): OC\\\\Route\\\\Router->match('\\\/login')\\n#22 \\\/config\\\/www\\\/nextcloud\\\/index.php(48): OC::handleRequest()\\n#23 {main}\",\"File\":\"\\\/config\\\/www\\\/nextcloud\\\/apps\\\/user_ldap\\\/lib\\\/User\\\/User.php\",\"Line\":129}", "userAgent" : "Mozilla\/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit\/537.36 (KHTML, like Gecko) Chrome\/61.0.3163.100 Safari\/537.36", "version" : "12.0.3.3" }
-
[Support] Linuxserver.io - Nextcloud
Create a copy of /etc/php7/php.ini from docker. Then edit it and mount it back.
-
Recycle Bin (vfs recycle) for SMB Shares
It does not work. and it logged nothing. I have a /temp share which is a network mount (V:) through smb on win 10. I copy the file and delete it through win 10 file explorer.
-
Recycle Bin (vfs recycle) for SMB Shares
How to make this work? I copy a PDF to a share and delete it on Win 10 but .Recycle.Bin does not show up. I am on 6.3.5.
-
Dynamix - V6 Plugins
plugin: updating: dynamix.system.stats.plg plugin: downloading: https://raw.githubusercontent.com/bergware/dynamix/master/archive/dynamix.system.stats.txz ... done plugin: bad file MD5: /boot/config/plugins/dynamix.system.stats/dynamix.system.stats.txz I get bad file MD5 when I tried to update.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I tried jrottenberg/ffmpeg but it outputs error after I started it ?♂️
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I know I can install package by put it to /boot/extra but I need to reboot. Is there any to install without reboot?
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
Is ffmpeg the same? If so, how could I install it myself? I know I can download the package from http://www.slackware.com/~alien/slackbuilds/ffmpeg/pkg64/current/ but how do I know what dependency I need?
-
[Plugin] CA User Scripts
If I want custom cron schedule, is the field need to field in like "* * * * * *" for every minute?
-
[DEPRECATED] Linuxserver.io - Rutorrent
Does anyone has "The request to rTorrent has timed out."? When I am not downloading, the web ui work fine. If I am downloading even 1 torrent , it shows "The request to rTorrent has timed out." after a while.
-
[Support] Linuxserver.io - Deluge
I talked with you in Discord =)
-
[Support] Linuxserver.io - Deluge
This docker seems to freeze when I try to stop it. The UI is stop but the container cannot be stop.