Jump to content

fergalc

Members
  • Posts

    26
  • Joined

  • Last visited

Posts 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. On 12/27/2023 at 6:41 PM, Lanic0r said:

    Hello,

     

    i would like to try out the Docker "oSTICKET" by acharles21. I cant get the Docker to work. Can someone explain me how to do it? I tried everything out but it seems like it isnt working with the mariadb or another Database Docker. 

    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. On 9/2/2017 at 7:52 PM, segator said:

    Hi guys, I finally create a first version of Xpenology on a Docker

    https://github.com/segator/xpenology-docker

     

    Check it all, I have DSM & hyperbackup with unraid server working

     

     

    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. 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..!  :D

     

    best regards, fergal

     

    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..!

  6. Excelent work!!

     

    This plugin increase quality level of unraid.update system, buttons layout, etc... Great. I have no issues at all.

     

    Maybe more user friendly for veginners about a complete install with optional webserver and phpvirtualbox but really excellent work.

     

    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..!  :D

     

    best regards, fergal

×
×
  • Create New...