-
[Support] Linuxserver.io - diskover
Just went through this after many years of running Elastic v5.x Now running Diskover v2.3.3 with ElasticSearch (Official template) on v8.19.7. Some notes... I had to chmod 777 -Rmy appdata/discover folder to get it to create an active node, 775 didn't work Don't forget to chown -R 1000:0 /mnt/user/appdata/elasticsearch/data I'm running a macvlan custom bridge, so ES_HOST needed to get updated in the web settings since it didn't seem to come over from the compose template? localhost doesn't work in this instance, as I would have expected. Had to configure the elastic user with a password even though I set an env var ELASTIC_PASSWORD using the command line password change ./elasticsearch-reset-password -u elastic -i ... from there the ES_USER and ES_PASS were set in the web settings. HTTPS was enabled by default on port 9200 In my case, I'm not internet facing at all with this setup, so ES_HTTPS was set true with ES_SSLVERIFICATION set false I also had to start my index from the docker shell: python3 /app/diskover/diskover.py -i diskover-[crawlindexname] /data And with that, I'm off to the races. HTH someone.
-
unRAID 6 NerdPack - CLI tools (iftop, iotop, screen, kbd, etc.)
I had the same issue... re-linking/aliasing to the existing libraries (libssl.so.1.1 and libcrypto.so.1.1) fixed the issue. A simple `ls -la` helped me figure out what libraries I had... root@Tower:~# cd /usr/lib64/ root@Tower:/usr/lib64# ln -s libssl.so.1.1 libssl.so.1 root@Tower:/usr/lib64# ln -s libcrypto.so.1.1 libcrypto.so.1 root@Tower:/usr/lib64# ldd /usr/bin/iperf3 linux-vdso.so.1 (0x00007ffe68998000) libiperf.so.0 => /usr/lib64/libiperf.so.0 (0x00001474185ba000) libssl.so.1 => /usr/lib64/libssl.so.1 (0x0000147418525000) libcrypto.so.1 => /usr/lib64/libcrypto.so.1 (0x000014741824b000) libm.so.6 => /lib64/libm.so.6 (0x00001474180fe000) libc.so.6 => /lib64/libc.so.6 (0x0000147417f19000) libz.so.1 => /lib64/libz.so.1 (0x0000147417d02000) libdl.so.2 => /lib64/libdl.so.2 (0x0000147417cfb000) libpthread.so.0 => /lib64/libpthread.so.0 (0x0000147417cd9000) /lib64/ld-linux-x86-64.so.2 (0x00001474187f2000) root@Tower:/usr/lib64# iperf3 -s ----------------------------------------------------------- Server listening on 5201 -----------------------------------------------------------
jakebg313
Members
-
Joined
-
Last visited