(Notes) Notes (2020)

Up and runnig Redis and Redsmin

I use a lot of various cache technology. for example read this my topic How Linux Net Core 3.1 daemon (in VB.NET) can read/write data from/to ancient MS SQL 2005, this is my own implementation of cached WCF server, but in this topic I show simplest way to up and running own cache server for various purposes.

Install redis

# sudo apt install redis-server
# sudo systemctl enable redis-server.service

set config

# sudo vim /etc/redis/redis.conf

And bind Redis to any address (in fact expose it to inet), set password and max-memory limit. I recommend you set limit as a half of RAM.

# maxmemory 2gb
# maxmemory-policy allkeys-lru
# bind 0.0.0.0
# requirepass kiYBi7aufl4MILv1nxBqR4L6NNz

Than restart it, check port and memory.

# sudo systemctl restart redis
# sudo systemctl status redis
# sudo netstat -lnp | grep redis


Next step going inside and check how it working.

# redis-cli
#127.0.0.1:6379> auth kiYBi7aufl4MILv1nxBqR4L6NNz
OK
#127.0.0.1:6379> ping
PONG
#127.0.0.1:6379> set test "It's working!"
OK
#127.0.0.1:6379> get test
It's working!
#127.0.0.1:6379> info
...
#127.0.0.1:6379> exit

If you want connect GUI admin panel with intellisense than best way is use https://app.redsmin.com/, it's very simple even no need to install something locally to you machine, because this is lightweight javascript GUI. Even no need to approve you email, one click and you can add connectionstring to you javascript GUI panel.





Comments ( )
<00>  <01>  <02>  <03>  <04>  <05>  <06>  <07>  <08>  <09>  <10>  <11>  <12>  <13>  <14>  <15>  <16>  <17>  <18>  <19>  <20>  <21>  <22>  <23
Link to this page: //www.vb-net.com/RedisUp/Index.htm
<SITEMAP>  <MVC>  <ASP>  <NET>  <DATA>  <KIOSK>  <FLEX>  <SQL>  <NOTES>  <LINUX>  <MONO>  <FREEWARE>  <DOCS>  <ENG>  <CHAT ME>  <ABOUT ME>  < THANKS ME>