[WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Supplementary Tools for Kodi (https://forum.kodi.tv/forumdisplay.php?fid=116) +--- Thread: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app (/showthread.php?tid=126297) |
RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - aoommen - 2015-07-21 Thanks a ton for building this, makes interacting with all the different apps that constitute a HTPC much easier definitely with this. A lot better than Maraschino in IMHO. I am running it on unRaid 6.0 in a docker container. One question though I got everything else configured but the SMART monitoring doesn't seem to work, how do I configure the Computer Stats app. The error says "Successfully imported psutil (2, 2, 1), upgrade to 3.0.0 or higher" and "smartmontools: Required package 'smartmontools' is not installed, or 'smartctl' component is not on the system path. Please install and try again." Log says this: Code: 2015-07-20 20:50:44 modules.stats ERROR Pulling logged in info local variable 'duser' referenced before assignment What am I doing wrong? Thanks in advance. [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-07-21 (2015-07-21, 04:16)aoommen Wrote: Thanks a ton for building this, makes interacting with all the different apps that constitute a HTPC much easier definitely with this. A lot better than Maraschino in IMHO. I am running it on unRaid 6.0 in a docker container. Hi. Thank you for the kind words. As you can see from the log you have psutil 2.2.1, you need to upgrade to the latest version. Have you installed smartmoontools? What happens if you try to call smartmoontools manually from the command line? Edit: doesn't seem like smartmoontools is installed in the docker file. RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - aoommen - 2015-07-21 (2015-07-21, 08:41)hellow Wrote: Hi. Thank you for the kind words. As you can see from the log you have psutil 2.2.1, you need to upgrade to the latest version. Hi hellow - could you quickly walk me through how I would upgrade the psutils version on unraid and how to install the smartmontools in the docker file (is there a container for smartmontools). Sorry relatively inexperienced Linux user here and also very new to the docker platform. If you could like an article which explains how to do it or if you could give me a quick step by step list of directions, I would appreciate it very much. Thanks. Edit: I have asked this in the unRaid forum as well - in smdion's docker thread, since I saw him online - thought I might try my luck for a quick response. Thanks. [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-07-21 (2015-07-21, 20:58)aoommen Wrote:(2015-07-21, 08:41)hellow Wrote: Hi. Thank you for the kind words. As you can see from the log you have psutil 2.2.1, you need to upgrade to the latest version. I'm probably worse then you are.. The dockerfile needs to be changed, I would have installed psutil via pip and smartmoontools via apt-get. Unless there are some other way to installed this without ssh access. I'm sure you can get better support from the unraid thread regarding this. RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - brando56894 - 2015-08-12 How easy would it be to change the URL of the page for nzbget and transmission? I've been running into an issue with my webserver where I run everything as reverse proxies, everything works fine except for nzbget and transmission, since they don't offer options to change the webroot like sickrage and couchpotato do. The problem I have is that the aforementioned programs collide with their htpc counterparts since the address for HTPC is https://myserver.us/, I was using Apache 2.4 but it was becoming a PITA so I switched over to NginX. If someone can show me how to setup a redirect from https://myserver.us/htpc to https://myserver.us I'd do that also since it requires no code changes within HTPC manager. Code: location /nzbget { If I change the location of nzbget to nzbget1 like I had with apache I just get a 404 because nginx is looking in my www directory instead of accessing the page served on another host, if I change the location of transmission to transmission1 I get a 502 bad gateway error. RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-08-12 Its not hard, but it isnt something i would recommend. You have to do alot of work for this to work and you will probably end up breaking something anyway. It would also be a hassle everytime there is a upgrade. This should be solved with nginx config. Im no expert but i think this should work. Code: location / { As for the nzbget and transmission i would just use something like this: nzbget.mysite.us (2015-08-12, 04:42)brando56894 Wrote: How easy would it be to change the URL of the page for nzbget and transmission? I've been running into an issue with my webserver where I run everything as reverse proxies, everything works fine except for nzbget and transmission, since they don't offer options to change the webroot like sickrage and couchpotato do. The problem I have is that the aforementioned programs collide with their htpc counterparts since the address for HTPC is https://myserver.us/, I was using Apache 2.4 but it was becoming a PITA so I switched over to NginX. If someone can show me how to setup a redirect from https://myserver.us/htpc to https://myserver.us I'd do that also since it requires no code changes within HTPC manager. RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - brando56894 - 2015-08-12 I figured that would be the case. As for your first suggestion, I already have that set up, in case I'm missing something lol, and that's what's causing the issue. As for your suggestion of using a subdomain, I would have to purchase that in addition to my primary domain, correct (I'm new to self-hosting)? I'm also using a cheap SSL cert that only covers one domain and no sub-domains :/ Here's the server block of my nginx.conf Code: server { RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-08-12 You have to check that with the company you purchased your domain from. I got subdomains from my provider. (2015-08-12, 15:24)brando56894 Wrote: I figured that would be the case. As for your first suggestion, I already have that set up, in case I'm missing something lol, and that's what's causing the issue. As for your suggestion of using a subdomain, I would have to purchase that in addition to my primary domain, correct (I'm new to self-hosting)? I'm also using a cheap SSL cert that only covers one domain and no sub-domains :/ RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - brando56894 - 2015-08-12 I got mine from Dyn and I do have subdomains (don't know why I thought I didn't have any since I have been using them for years as redirects to a DDNS host lol). I also have my DNS from them (plan on using my own DNS server once my contact with them expires at the end of the year), but I do have DNSmasq setup on my router (Verizon FIOS router, more like a host file than true DNS I guess) and I have either BIND or DNSmasq setup in my Apache jail (not using the local jailed DNS currently), so would I setup a subdomain on Dyn's page and create the record like this? nzbget.mydomain.us CNAME mydomain.us then create a virtual host in Nginx with the server name as nzbget.mydomain.us? RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - lordairivis - 2015-08-14 I'm running the latest version (just updated tonight) on my Synology NAS and HTPC-Manager is not able to contact SABnzbd+, CouchPotato Custom, or SickBeard when SSL is enabled. These all previously worked when SSL is disabled. [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-08-14 (2015-08-14, 05:47)lordairivis Wrote: I'm running the latest version (just updated tonight) on my Synology NAS and HTPC-Manager is not able to contact SABnzbd+, CouchPotato Custom, or SickBeard when SSL is enabled. These all previously worked when SSL is disabled. Hi. Maybe provide some logs? RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - brando56894 - 2015-08-17 sure thing, IDK why I didn't think of that myself haha RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - EmilGH - 2015-08-31 I'm a n00b to HTPC, but I'm absolutely in love with it! It has already solved a bunch of "management" challenges I have with my ever growing home media server project... Keep up the good work! RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - hellow - 2015-09-01 (2015-08-31, 21:40)EmilGH Wrote: Hi, Please report any issues/questions regarding my fork to this http://forum.kodi.tv/showthread.php?tid=221715 and delete this post RE: [WIP] HTPC-Manager Beta, Manage XBMC, Sabnzbd, SickBeard with one app - Slick789 - 2015-09-14 This is probably a pretty stupid question, that I'm going to regret asking.. Is there an Android App? How do I get this on my tablet, all I see is that it works on a tablet but no more discussion on the topic. Thanks in Advance! |