milleruntime opened a new issue, #285:
URL: https://github.com/apache/fluo-uno/issues/285

   With the changes in https://github.com/apache/accumulo/pull/2197 the 
encryption plugin (`plugins/accumulo-encryption.sh`) will need to be updated. 
The script will need to generate the new properties with something like:
   <pre>
   CS=$(jar -tvf "$ACCUMULO_HOME"/lib/accumulo-core-2.*.jar | grep -o 
'org.apache.accumulo.core.*AESCryptoService' | tr / . | tail -1)
   CSF=$(jar -tvf "$ACCUMULO_HOME"/lib/accumulo-core-2.*.jar | grep -o 
'org.apache.accumulo.core.*PerTableCryptoServiceFactory' | tr / . | tail -1)
   echo "instance.crypto.opts.factory=$CSF" >> "$accumulo_conf"
   echo "general.custom.crypto.recovery.service=$CS" >> "$accumulo_conf"
   echo "general.custom.crypto.wal.service=$CS" >> "$accumulo_conf"
   echo "general.custom.crypto.key.uri=file://$encrypt_key" >> "$accumulo_conf"
   echo "table.crypto.opts.service=$CS" >> "$accumulo_conf"
   echo "table.crypto.opts.key.uri=file://$encrypt_key" >> "$accumulo_conf"
   echo "general.custom.crypto.enabled=true" >> "$accumulo_conf"
   </pre>


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: notifications-unsubscr...@fluo.apache.org.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org

Reply via email to