starting with jails and iocage
I always read that to use postgres inside jails I must set allow_sysvipc=1
The doc says that from FBSD11 you should use sysvmsg, sysvsem, and sysvshm instead.
Set whether a process in the jail has access to System V IPC primitives. Prior to FreeBSD 11.0, System V primitives
share a single namespace across the host and jail environments, meaning that processes within a jail would be able to communicate with, and potentially interfere with, processes outside of the jail, or in other jails. In FreeBSD 11.0 and later, this setting is deprecated. Use sysvmsg, sysvsem, and sysvshm instead.for sysvmsg, sysvsem, and sysvshm, although it says that the default value is disable, but my jails were created with value=new
sysvmsg:new
sysvsem:new
sysvshm:new
taking into account that I want several jails with postgres, what value should I use for these parameters? new?
Best regards
Jose