fergalc

Members
  • Posts

    26
  • Joined

  • Last visited

Everything posted by fergalc

  1. sorry missed your reply. ok, I got it up and running but ran into a number of issues so had to set it up on Windows/IiS then. As you have outlined, with the default docker configs osTicket never connects to the database. Here's how I got it going: Install MariaDB container with default settings except I used custom network (192.xxx.xxx.225). Then login into the containers console session and create a new user and database: mysql -u root -p CREATE USER 'osticket'@'192.xxx.xxx.9' IDENTIFIED BY 'password123456'; CREATE DATABASE osticketdb CHARACTER SET utf8mb4 COLLATE utf8mb4_bin; GRANT SELECT,INSERT,UPDATE,DELETE,CREATE,DROP,REFERENCES,ALTER,INDEX on osticketdb.* TO 'osticket'@'192.xxx.xxx.9'; flush privileges; Then install osTicket container with a custom network (192.xxx.xxx.9) and populate with the above details, in my case: docker run -d --name='osTicket' --net='br0' --ip='192.xxx.xxx.9' -e TZ="Europe/London" -e HOST_OS="Unraid" -e HOST_HOSTNAME="Tower" -e HOST_CONTAINERNAME="osTicket" -e 'TCP_PORT_80'='8080' -e 'MYSQL_HOST'='192.xxx.xxx.225' -e 'MYSQL_USER'='osticket' -e 'MYSQL_DATABASE'='osticketdb' -e 'MYSQL_PASSWORD'='password123456' -e 'INSTALL_NAME'='My Helpdesk' -e 'ADMIN_FIRSTNAME'='xxxxx' -e 'ADMIN_LASTNAME'='xxxxxx' -e 'ADMIN_EMAIL'='xxxxxx' -e 'ADMIN_USERNAME'='Administrator' -e 'MYSQL_PREFIX'='ost_' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.webui='http://[IP]:[PORT:80]' -l net.unraid.docker.icon='https://raw.githubusercontent.com/loony2392/unraid-templates/master/icons/osticket.png' -v '/mnt/user/appdata/osticketofficical':'/var/www/src/':'rw' 'osticket/osticket'
  2. I've got it working. Where is breaking down for you?
  3. I've noticed that if a monitored channel downloads a new video that happens to have an already downloaded video with the same name it will overwrite it and so on. To sum up, if content creator names all their videos the same name you'll only have the latest video as each one before has been overwritten. Anyway around this?
  4. Thanks, looking forward to trying this but waiting/hoping it'll get added to the Community Applications first to help with the variables etc...
  5. @jang430 Try this: LL Container change Host Path 2 to: /mnt/cache/downloads/complete/ebooks change Host Path 3 to: /mnt/user/Media/ebooks/ LL Settings change Download Directory: /downloads change Book Library Folder: /books
  6. Well if you had the Mac PMS and unRAID Plex Docker running at the same time and both configured to use the default port 32400 you'll run into problems. So when you turned off the Mac PMS and modified the forwarded port 32400 to your unRAID IP, did you restart the PLEX Docker? I had a similar issue running a Plex Docker and Plex on a nvidia shield tv, Remote wouldn't work on either. I turned one off and then the other and like yourself Remote still wouldn't work. It was only when I rebooted the PLEX docker that Remote started working. I now have both working but I had to change the default port on my shield and port forward the new port to it...
  7. Nice one..!! Working perfectly now, thanks... ...any idea why it's appdata folder is empty?
  8. Thanks for setting this up too... My /var/config is setup the same as kolafson and it too is empty... Although it's working fine from a browser I'm having problems accessing it from the Booksonic app. I've it setup in Bridge mode with the correct port mappings on my firewall but getting the ERROR "Connection failure. A problem occurred communicating with the server". The Booksonic App connects fine to my Subsonic docker (setup in Host mode).. I've tried to setup Booksonic in Host mode but it fails to open the webpage...
  9. Hi Trurl, I read about the issues with Ad-Blockers and settings not sticking with Chome. I've tested my issue with Firefox, Chrome and Internet Explorer 11 (no adblock) and all with the same result. Thanks for the suggestions and for taking a look...
  10. Hi guys, I thought everything was working fine on my 6.2 box, that was until I spotted some disk errors on my Cache drive. So before it failed I changed it for a SSD drive. My problem is when I try and create a Cache only share I get "Share test has been deleted." in the GUI and the following in the log: Oct 3 14:35:29 Tower emhttp: shcmd (1160): mkdir '/mnt/user/test' |& logger Oct 3 14:35:29 Tower shfs/user: err: shfs_mkdir: assign_disk: test (123) No medium found Oct 3 14:35:29 Tower root: mkdir: cannot create directory '/mnt/user/test': No medium found Oct 3 14:35:30 Tower emhttp: err: need_authorization: getpeername: Transport endpoint is not connected I even swapped back in the old Cache drive and tested with the same result. I can manually add and delete files on either of the Cache drives, just unable to add a Cache share. Would appreciate any help or advice on this please. Best Regards, Fergal tower-diagnostics-20161003-1444.zip
  11. Once you have the webserver and phpVirtualBox installed (see http://vbox.a1aina.com/install.php) you can find many tutorials on youtube of how to setup a new VM. Got it working, nice one..! Thanks..!
  12. I second this..! Plugin installed without an issue.. Thumbs up for creating the plugin..! ...but being an absolute Linux & Webserver noob would love a 'walk me thru' on the next steps to actually installing a VM..! best regards, fergal
  13. Thanks Wody, that solved it. Can this setting made permanent in Putty or saved for a Unraid session. Makes me wonder: Why didn't I have to do this in 4.7? same problem here resolved, thanks..!