Этот коммит содержится в:
Ihar Hancharenka 2024-06-25 22:37:03 +03:00
родитель bf68684a26
Коммит 979d3af02f
8 изменённых файлов: 50 добавлений и 10 удалений

Просмотреть файл

@ -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/

Просмотреть файл

@ -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 <pwd>
127.0.0.1:6379> ?
redis-cli 6.0.16
To get help about Redis commands type:

Просмотреть файл

@ -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

3
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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -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

Просмотреть файл

@ -0,0 +1,2 @@
2024
https://habr.com/ru/articles/823776/