Current setup is one standalone server with disk mount on NetApp. PostgreSQL version: 9.4
Goal: Data should be protected from access by other sources. Scenario: One of the Netapp admins mount the Postgres LUN to another server.
One option is to stored data locally - but then it is limited by capacity (and costly) The second option is to encrypt the data.
Since 3rd party is generating the data we cant touch the schema and add crypt function on the sensitive fields - tables are also too dynamic.
What would be the best (easy to implement, least affecting on performance ) option to implement from the suggested standard options?
Would you recommend other options like: safenet , cybertec
After reading this blog
I tend to think that the File system-level encryption might be the best solution. Is it?