Jump to content

Repooc

Members
  • Posts

    17
  • Joined

  • Last visited

Posts posted by Repooc

  1. {
        "providers" : [
            {"name":"Allmusic","url":"https://www.allmusic.com/search/all/","prefix":"/a"},
            {"name":"Discogs","url":"https://www.discogs.com/search/?q=","prefix":"/di"},
            {"name":"Duck Duck Go","url":"https://duckduckgo.com/?q=","prefix":"/d"},
            {"name":"iMDB","url":"https://www.imdb.com/find?q=","prefix":"/i"},
            {"name":"TheMovieDB","url":"https://www.themoviedb.org/search?query=","prefix":"/m"},
            {"name":"Reddit","url":"https://www.reddit.com/search?q=","prefix":"/r"},
            {"name":"Qwant","url":"https://www.qwant.com/?q=","prefix":"/q"},
            {"name":"Repooc Search","url":"https://search.MYDOMAIN.HERE/?q=","prefix":"/z"},
            {"name":"Soundcloud","url":"https://soundcloud.com/search?q=","prefix":"/so"},
            {"name":"Spotify","url":"https://open.spotify.com/search/results/","prefix":"/s"},
            {"name":"TheTVDB","url":"https://www.thetvdb.com/search?q=","prefix":"/tv"},
            {"name":"Trakt","url":"https://trakt.tv/search?query=","prefix":"/t"}
        ]
    }

    It does show up in the options list in Search Options but doesnt seem to work is all, like the search.js isnt parsing the providers file or something?

     

  2. 7 hours ago, testdasi said:

    Hey easy with the attitude buddy! I thought you were trying to adapt another docker to work with Unraid so just wanted to let you know that it is already on CA.

    Now assuming you are using the CA docker (and not from somewhere else), all you need to do is:

    1. Mariadb docker for a sql db
    2. phpmyadmin docker to create the Firefly db and user
    3. Enter the information you set up from (1) and (2) into the docker template

    That's it. No special skill required.

     

     

     

    I was actually not trying to have an attitude as I felt I was receiving an attitude with your previous response actually lol.  So I guess I took the comment like you were being condescending and was trying to politely say I don't need that type of reply if that was the case.  I will look at the posts here since my reply and see if I can get it up and running and will report back after and let you know I got it going or not.  Thanks for responding and trying to assist.

    3 hours ago, Gog said:
    
    
    Host path 1: 	/mnt/cache/cache_only/appdata/fireflyb/export/
    Container Path: /var/www/firefly-iii/storage/export 
    Host Path 2: 	/mnt/cache/cache_only/appdata/fireflyb/upload/
    Container Path: /var/www/firefly-iii/storage/upload 
    Host Port 1: 	 5080
    Container Port: 80
    Host Key 1: 	 /mnt/cache/cache_only/appdata/fireflyb/
    Container Variable: FIREFLY_PATH
    Host Key 2: 	 7.60.0
    Container Variable: CURL_VERSION
    Host Key 3: 	 1.1.1pre6
    Container Variable: OPENSSL_VERSION
    Host Key 4: 	 XXX
    Container Variable: APP_KEY - CHANGE! Random value of exactly 32 characters. Used to encrypt the database. Cannot be changed later on. Make sure you dont lose the key!
    Host Key 5: 	 local
    Container Variable: APP_ENV
    Host Key 6: 	 192.168.1.12
    Container Variable: DB_HOST
    Host Key 7: 	 3306
    Container Variable: DB_PORT - Database_PORT: 3306
    Host Key 8: 	 fireflydb
    Container Variable: DB_DATABASE
    Host Key 9: 	 firefly
    Container Variable: DB_USERNAME
    Host Key 10: 	 XXX
    Container Variable: DB_PASSWORD - Password for the DB_USERNAME

    in case you still need it

    I appreciate the info and will report back when I get time to see if I got it up and running tyvm for trying to assist.

  3. 14 hours ago, Gog said:

    An upgrade from a couple months back broke my docker config, the variable names changed.  I got it back up but I had to mess around a bit. 

     

    If you are trying a new install I can copy my docker config here tonight.

    Be nice for some setup assistance.  I am usually good about getting this stuff going but not sure what I am missing as setup directions seem to be a bit lacking or I'm just overlooking stuff.

    14 hours ago, testdasi said:

    I believe FireFly III docker is already available on Unraid Community Apps. I got it to work without any special skill required.

    Yes there is an unraid template but unless you have some insight on what I am missing or updated instructions, this comment isn't very helpful as this isn't a very helpful post unless you are offering help but I didn't get that feeling from your post.

  4. On 2/21/2019 at 4:51 AM, dj_sim said:

    I will attempt to post this to github

     

    In the meantime I'd like to get the nginx config working, but I am very lost.

    There is no template on the linuxserver letsencrypt docker for the subdomain.conf file and I cannot find one in google.

     

    Can someone help with this please?

    Did you get this docker working at all as I just tried and it doesnt seem to work correctly.  I installed a postgres11 container and it doesnt appear that was the issue.  Something to do with FIREFLY_PATH that it automatically fills in or something.

    If anyone has had success installing this app via the template provided in the community app please let me know what I may have misconfigured.

  5. I am having issues getting this to work with the MySQL docker image available in the community applications section... I am not new to unraid but I am by no means a pro.  If someone has gotten this app to work with dockers on their unraid setup, a little help would be appreciated...

    I keep getting connection refused or something can't recall now... I was able to connect to the mysql setup with MySQL Workbench but Clarkson would fail on docker start no matter what I used for credentials.

     

    Edit:  I have now gotten the 2 to communicate... just can't seem to register the initial account as I am getting a 500 error in the logs.

    To fix the first issue was to make sure to use the 5.7.26 tag of the mysql docker

     

    Edit2:  Not sure what the issue was but I nuked everything and started over and got it installed... Thanks anyways as I prob didn't give much time for posts lol

  6. I had found a post where someone posted a handy bash script to list your nic ports with link status in which i had plugged in to the router/switch and was able to see which was connected.

     

    #!/bin/bash
    for ETH in $(find /sys/devices/ -type d -iname "eth[0-9]"); do
      port=$(basename $ETH);
      export $(cat $ETH/device/uevent);
      link_status=$(cat $ETH/operstate);
      desc=$(lspci -d $PCI_ID| cut -d ':' -f3)
      pci_bus=$(echo $PCI_SLOT_NAME|sed -e 's#0000:##')
      echo -e "Found NIC: $port\n  Name:   $desc\n  PCI id:  $PCI_ID\n  PCI bus: $pci_bus\n  Status:  $link_status\n"
    done

    Can't recall the original author that posted this but credit goes to them.

  7. 1 minute ago, saarg said:

    If they are in separate groups, you can pass one through and let unraid use the others. 

    If you use the method I mentioned, you use the PCI ID and not the vendor ID. This way you can pass hide which part of the card you want to pass through.

    Only thing different to the normal stubbing, is that you have to manually add the device tag in the xml. You can't choose it in the other devices list. 

    Sounds like this is what I am aiming for...

     

     

    This is the IOMMU group info for my nic, not sure if there is a way to figure out which corresponds to which port...

    IOMMU group 13:	[14e4:1639] 01:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
                    [14e4:1639] 01:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
    IOMMU group 14:	[14e4:1639] 02:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
                    [14e4:1639] 02:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)

     

    Would this be my append line then?

    append xen-pciback.hide=(02:00.0)(02:00.1) initrd=/bzroot

     

    Would this be what I need in my VM xml then???

    <hostdev mode='subsystem' type='pci' managed='yes'>
      <driver name='vfio'/>
      <source>
        <address domain='0x0000' bus='0x02' slot='0x00' function='0x0'/>
      </source>
    </hostdev>
    <hostdev mode='subsystem' type='pci' managed='yes'>
      <driver name='vfio'/>
      <source>
        <address domain='0x0000' bus='0x02' slot='0x00' function='0x1'/>
      </source>
    </hostdev>

     

  8. On 2/25/2017 at 2:42 PM, saarg said:

    You can use the pcie number to stub instead of the whole card. This is what I have in my syslinux.cfg for 3 of my 4 ports.

     

    
    xen-pciback.hide=(04:00.3)(04:00.2)(04:00.1)

     

    If you have made the VM previous to adding the network cards, you might have to add them manually. At least I had to in my Ubuntu server VM. What is the output of the below command in the VM.

     

    
    lspci

     

    So does this mean I can pass 2 of my 4 ports on a nic to my vm's and let unraid have the other 2 this way or do i still need a seperate nic to do this with and pass the whole care even though in my device list, the card has 2 ports in each of their own groups but with same vendor id.

  9. I too would like to hear about this as well as I have an r710 and my groups are somewhat similar and assume I could pass 2 of the 4 ports through...

    IOMMU group 13:	[14e4:1639] 01:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
    [14e4:1639] 01:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
    IOMMU group 14:	[14e4:1639] 02:00.0 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)
    [14e4:1639] 02:00.1 Ethernet controller: Broadcom Inc. and subsidiaries NetXtreme II BCM5709 Gigabit Ethernet (rev 20)

     

×
×
  • Create New...