Redis user permissions (ACL) and python connection

 Recently, I was working on setting up a redis cluster along with separate users for readwrite and readonly. I setup the readonly user using the below privileges (ACLs):   user redisreadonly on >mySuperSecretPassword ~* resetchannels -@all +@read +ping +asking   Once this is setup, I wrote a simple program in python to connect to the redis cluster using the readonly credentials and print the number of keys.   #!/usr/bin/env python3 """ pip3 install redis """ from redis.cluster import RedisCluster, ClusterNode # ─────── Cluster connection ─────── startup_nodes = [ ClusterNode("redis_host_1", 6379), ClusterNode("redis_host_2", 6379), ClusterNode("redis_host_3", 6379) ] rc = RedisCluster(startup_nodes=startup_nodes,decode_responses=True,username='redisreadonly',password='mySuperSecretPassw...

11.5.9 Desupported from 1st July 2008

Yesterday, I was analysing CPU patches for a 11.5.9 instance. That is when I found out that 11.5.9 is desupported as far as CPU patches are concerned since July 2008. Below is the extract from the July 2008 CPU advisory for EBS (Note 605117.1).

Oracle E-Business Suite Release 11.5.9 has been desupported as of 01-July-2008.
Hence, there would not be any further CPUs released by Oracle for 11.5.9. To verify this, I checked the Oct 2008 CPU advisory for EBS (note 738921.1), which expectedly did NOT contain any CPUs for 11.5.9.


Comments

Popular posts from this blog

Interesting Oracle Applications (EBS) Interview Questions

Modify retention period of workflow queues

Check if UTL_FILE and FND_FILE are working fine