MattFaz

Members
  • Posts

    61
  • Joined

  • Last visited

About MattFaz

  • Birthday May 6

Converted

  • Gender
    Male
  • Location
    Australia

Recent Profile Visitors

2376 profile views

MattFaz's Achievements

Rookie

Rookie (2/14)

9

Reputation

1

Community Answers

  1. I'm getting the same error and cannot figure out why either. My Unraid Server is at 192.168.0.25, using bridge for MongoDB and br0 for the UniFi Network Application but I don't believe that should be an issue. I've tried moving MongoDB to the same network (using br0) and it didn't change anything. MongoDb: docker run -d --name='MongoDB' --net='bridge' -e TZ="Australia/Sydney" -e HOST_OS="Unraid" -e HOST_HOSTNAME="Tower" -e HOST_CONTAINERNAME="MongoDB" -l net.unraid.docker.managed=dockerman -l net.unraid.docker.icon='https://raw.githubusercontent.com/jason-bean/docker-templates/master/jasonbean-repo/mongo.sh-600x600.png' -p '27017:27017/tcp' -v '/mnt/user/appdata/mongodb/':'/data/db':'rw' 'mongo:4.4' 0f7783e566a2de9b4d39d316d114ed69b88110c2e8abb76078e130bad6178db5 I create the user etc. by connecting to the console of that MongoDB container and running the 2 commands: db.getSiblingDB("UniFi").createUser({ user: "UniFi", pwd: "xxxxx", roles: [{ role: "dbOwner", db: "UniFi" }] }); db.getSiblingDB("UniFi_stat").createUser({ user: "UniFi", pwd: "xxxxx", roles: [{ role: "dbOwner", db: "UniFi_stat" }] }); unifi-network-application: docker run -d --name='unifi-network-application' --net='br0' --ip='192.168.0.99' -e TZ="Australia/Sydney" -e HOST_OS="Unraid" -e HOST_HOSTNAME="Tower" -e HOST_CONTAINERNAME="unifi-network-application" -e 'TCP_PORT_8443'='8443' -e 'UDP_PORT_3478'='3478' -e 'UDP_PORT_10001'='10001' -e 'TCP_PORT_8080'='8080' -e 'UDP_PORT_1900'='1900' -e 'TCP_PORT_8843'='8843' -e 'TCP_PORT_8880'='8880' -e 'TCP_PORT_6789'='6789' -e 'UDP_PORT_5514'='5514' -e 'MONGO_USER'='UniFi' -e 'MONGO_PASS'='xxxxx' -e 'MONGO_HOST'='192.168.0.25' -e 'MONGO_PORT'='27017' -e 'MONGO_DBNAME'='UniFi' -e 'MEM_LIMIT'='1024' -e 'MEM_STARTUP'='1024' -e 'MONGO_TLS'='' -e 'MONGO_AUTHSOURCE'='' -e 'PUID'='99' -e 'PGID'='100' -e 'UMASK'='022' -l net.unraid.docker.managed=dockerman -l net.unraid.docker.icon='https://raw.githubusercontent.com/linuxserver/docker-templates/master/linuxserver.io/img/unifi-network-application-icon.png' -v '/mnt/user/appdata/unifi-network-application':'/config':'rw' 'lscr.io/linuxserver/unifi-network-application' fe2fadf61cd8f3ff452dd6be5484be2a5f54a6a6edf1e516ed925155958431fb I just get this in the UniFi logs: *** Waiting for MONGO_HOST 192.168.0.25 to be reachable. *** *** Defined MONGO_HOST 192.168.0.25 is not reachable, cannot proceed. *** Any help would be much appreciated. EDIT: Got it working, I had to go to Settings > Docker and make sure 'Host access to custom networks' was set to Enabled.
  2. @maddog @john_smith @AirRicB You need to setup the Postgres database yourself, it will not create one for you. You then need to provide the details when setting up the FIrefly-iii container. You can use an app like pgadmin to perform this, you don't need to create any tables. Just create the database, user, and password (if not using an existing user and pass).
  3. Do you mean on the official Firefly-iii docs? If so I'm not sure the developer himself would create the documentation but I'm sure they'd be willing to accept it if someone wrote it up and created a PR on the docs repo: https://github.com/firefly-iii/docs Hmm sorry I'm not sure, have you checked logs or inspected console when you try to login to see if it's reporting any errors? I use SWAG and access firefly via subdomain and it is working fine for me. Here is my `firefly.subdomain.conf` file if it helps: server { listen 443 ssl; listen [::]:443 ssl; server_name firefly.*; include /config/nginx/ssl.conf; client_max_body_size 0; location / { include /config/nginx/proxy.conf; include /config/nginx/resolver.conf; set $upstream_app 192.168.0.25; set $upstream_port 5555; set $upstream_proto http; proxy_pass $upstream_proto://$upstream_app:$upstream_port; proxy_set_header X-Forwarded-Proto $scheme; proxy_set_header X-Forwarded-Host $host; proxy_set_header X-Forwarded-Server $host; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; } } I'm not sure how easily you can move the old container to this new one, I've only performed fresh installs of the container and it's related data. Looking at the Github repo it looks like there may be some issues when backdating, are you trying to set the date to a date in the past? The developer advised when creating you should enter a future date, then edit to back date: https://github.com/firefly-iii/firefly-iii/issues/7683 Above I posted my .conf file if you're using SWAG, wouldn't need to deal with .env files in that case. Otherwise you could add the .env variables as a variable to the container, or create a folder path and map it to the container. This can be done when editing the container:
  4. Thanks for posting the solution @wieli99, makes sense! Glad you've been able to get it running now
  5. Are you using the Postgresql15 community app by jj9987? I just did a fresh install of that Postgres15 container and Firefly-iii and it worked without issues. Are you using the default Postgres port of 5432? I've just realised I forgot to include the DB_PORT variable so if you're using something different it may have caused issues. I've updated the template just now to add it and it should be live in the next couple hours.
  6. Hey all 👋🏼 This is a support thread for any apps hosted in my repository: https://github.com/MattFaz/unraid_templates Firefly-iii Project: https://www.firefly-iii.org/ GitHub https://github.com/firefly-iii/firefly-iii Documentation: https://docs.firefly-iii.org/ Note: You need to create the Database in PostgreSQL, it does not create it for you. Firefly-iii Data Importer Project: https://docs.firefly-iii.org/data-importer/ Github: https://github.com/firefly-iii/data-importer Documentation: https://docs.firefly-iii.org/data-importer
  7. Thanks for this container @kostecki, really like Ntfy as a self hosted solution. Is there any reason adding the extra Variable: `web-root: disable` wouldn't work as mentioned in the FAQ? I can't find any server.yml file to edit it so figured this would work...
  8. Nevermind! Settings > Management Access and provision a certificate. Worked after I did that
  9. Installing plugin provides the following output: plugin: installing: dynamix.unraid.net.plg plugin: downloading: dynamix.unraid.net.plg ... 100% plugin: downloading: dynamix.unraid.net.plg ... done Executing hook script: pre_plugin_checks Installing dynamix.unraid.net.plg 2022.11.29.0742 with Unraid API 2.54.0 plugin: downloading: dynamix.unraid.net-2022.11.29.0742.txz ... plugin: dynamix.unraid.net-2022.11.29.0742.txz download failure (SSL verification failure) Executing hook script: post_plugin_checks It then gets stuck in Pending state. How do I resolve this error?
  10. Helpful to know thanks blaine07! That guide is written by me and I didn't face the AVX issues, I will add that as a note.
  11. Would you be able to provide a guide on how you installed this plugin? I'm comfortable with the rest but really struggling at this step.
  12. Are you sure you're referring to the correct WikiJS container? The Linuxserver.io container does not ask for any Postgres host/urls. You might be referring to the selfhosters one? Which does require the steps you mentioned above.
  13. Just stumbled across the DebianBullseye container, wanted it as a good way to be able to browse personal sites while on a work device 🙈 Props to @ich777, this works really well! Super fast, easy to setup, I am super impressed. Thank you for creating this!
  14. Facing issues when trying to install wikijs, receiving the following error message: Unable to find image 'requarks/wiki:beta' locally docker: Error response from daemon: manifest for requarks/wiki:beta not found: manifest unknown: manifest unknown. See 'docker run --help'. Edit: Updated repository value from requarks/wiki:beta to requarks/wiki:latest and it installed successfully. However once you login it receives auth errors, same issue as the linuxserver.io container, must be a WikiJS issue.
  15. Exactly the same for me, currently no way to get past this that I can find.