Today I learned
2023-10-16 Connect to local opensearch instance
When connecting to a local opensearch instance
- get the username and password (in this case
admin
/admin
) - write
docker ps
to get at the port (in this case0.0.0.0:64199
, same aslocalhost:64199
) - if ssl is enabled (usually is), go to
https://localhost:64199
, click advanced and continue, and enter the username and password. - then open
Elasticvue
, and add all the same info there. - profit
2023-10-16 Stow
https://www.gnu.org/software/stow/manual/stow.html
Symlinks from one folder to another. Can be used to keep your home directory as a git repository, by symlinking the whole home directory into a git repository folder.
Recommended by K O.