diff --git a/db/nosql/redis/client/clients.txt b/db/nosql/redis/client/clients.txt index d7d3b387a..fc793eb22 100644 --- a/db/nosql/redis/client/clients.txt +++ b/db/nosql/redis/client/clients.txt @@ -1 +1,4 @@ -https://redis.io/resources/clients/ +https://redis.io/docs/latest/develop/connect/clients/ +https://redis.io/docs/latest/develop/connect/clients/java/ +https://redis.io/docs/latest/develop/connect/clients/java/jedis/ +https://redis.io/docs/latest/develop/connect/clients/java/lettuce/ diff --git a/db/nosql/redis/client/redis-cli.txt b/db/nosql/redis/client/redis-cli.txt index 227dabfc8..a780c726f 100644 --- a/db/nosql/redis/client/redis-cli.txt +++ b/db/nosql/redis/client/redis-cli.txt @@ -1,10 +1,17 @@ -https://redis.io/docs/ui/cli/ +https://redis.io/docs/latest/develop/connect/cli/ apt/redist-tools +dnf/redis https://lightrun.com/using-the-redis-command-line/ https://cloud.google.com/memorystore/docs/redis/connect-redis-instance +2024 +https://www.baeldung.com/linux/redis-client-alone-installation + docker run -it --rm redis:latest-alpine redis-cli -h localhost -p 6379 + redis-cli -h localhost -p 6379 + auth + 127.0.0.1:6379> ? redis-cli 6.0.16 To get help about Redis commands type: diff --git a/db/nosql/redis/docker.txt b/db/nosql/redis/docker.txt index c86f53a07..c37d210fc 100644 --- a/db/nosql/redis/docker.txt +++ b/db/nosql/redis/docker.txt @@ -1 +1,23 @@ https://hub.docker.com/_/redis + +2024 +https://habr.com/ru/articles/823936/ + ... + command: redis-server --requirepass ... + ... + + sh -c ' + mkdir -p /usr/local/etc/redis && + echo "bind 0.0.0.0" > /usr/local/etc/redis/redis.conf && + echo "requirepass $REDIS_PASSWORD" >> /usr/local/etc/redis/redis.conf && + echo "appendonly yes" >> /usr/local/etc/redis/redis.conf && + echo "appendfsync everysec" >> /usr/local/etc/redis/redis.conf && + echo "user default on nopass ~* +@all" > /usr/local/etc/redis/users.acl && + echo "user $REDIS_USER on >$REDIS_USER_PASSWORD ~* +@all" >> /usr/local/etc/redis/users.acl && + redis-server /usr/local/etc/redis/redis.conf --aclfile /usr/local/etc/redis/users.acl + ' + +bind 0.0.0.0 +port 6379 +protected-mode no +save 60 1 diff --git a/db/nosql/redis/features/security.txt b/db/nosql/redis/features/security.txt new file mode 100644 index 000000000..d73c025aa --- /dev/null +++ b/db/nosql/redis/features/security.txt @@ -0,0 +1,3 @@ +2023 +https://www.geeksforgeeks.org/complete-tutorial-on-security-in-redis +https://www.geeksforgeeks.org/complete-tutorial-on-security-in-redis/#protected-mode diff --git a/devops/vcs/git/sub/yadm.txt b/devops/vcs/git/sub/yadm.txt index 226b55dda..a8a4bd1aa 100644 --- a/devops/vcs/git/sub/yadm.txt +++ b/devops/vcs/git/sub/yadm.txt @@ -56,11 +56,14 @@ bootstrap ~/.config/yadm/bootstrap configuration -~/.config/yadm/config - local.class - local.os - local.hostname - local.user +~/.config/yadm/ + config + local.class + local.os + local.hostname + local.user + encrypt + list of patterns (to encrypt) encryption https://yadm.io/docs/encryption @@ -86,7 +89,6 @@ yadm https://www.agwa.name/projects/git-crypt/ https://github.com/AGWA/git-crypt -.config/secrets .ssh/* !.ssh/authorized_keys !.ssh/known_hosts* @@ -98,4 +100,3 @@ yadm init cat yadm.files | xargs -n 1 yadm add -f yadm ci -m first yadm remote add origin git@github.com:iharh/dotfiles.git - diff --git a/net/proto/http/http2.txt b/net/proto/http/http2.txt index 4f2d58906..44b18138c 100644 --- a/net/proto/http/http2.txt +++ b/net/proto/http/http2.txt @@ -1,6 +1,8 @@ https://daniel.haxx.se/http2/ https://github.com/bagder/http2-explained +2024 +https://blog.bytebytego.com/p/ep117-what-makes-http2-faster-than 2023 https://habr.com/ru/companies/timeweb/articles/751338/ 2021 diff --git a/nontech/politics/clubs/streetoftruth/streetoftruth.txt b/nontech/politics/clubs/streetoftruth/streetoftruth.txt index 5c6131f60..1d45af857 100644 --- a/nontech/politics/clubs/streetoftruth/streetoftruth.txt +++ b/nontech/politics/clubs/streetoftruth/streetoftruth.txt @@ -29,7 +29,7 @@ Michael Mann books: Fashism, Dark Side of Democracy 2024 -RUPoliticalCultureInstitute - 06.14 - Beshwarup Sanyal - GB and India 52:00 of 1:36:03 +RUPoliticalCultureInstitute - 06.14 - Beshwarup Sanyal - GB and India of 1:36:03 https://www.youtube.com/watch?v=ca8NzmfIvY8 RUPoliticalCultureInstitute - 06.14 - Victor Mihaylovich Minin - Light and Dark Outstanding at UA of 1:57:06 https://www.youtube.com/watch?v=YCqloIKeoZc diff --git a/pl/java/libfws/spring/boot/actuator/profiling.txt b/pl/java/libfws/spring/boot/actuator/profiling.txt new file mode 100644 index 000000000..e77f9ad0c --- /dev/null +++ b/pl/java/libfws/spring/boot/actuator/profiling.txt @@ -0,0 +1,2 @@ +2024 +https://habr.com/ru/articles/823776/