Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
09-13-2021 01:49 AM
let me ask...how would you run this code of block in the the notebook. since I get an error loading this script
#!/bin/sh
PROPERTIES_FILE="/databricks/spark/dbconf/java/extra.security"
DISABLED_ALGOS="SSLv3, RC4, DES, MD5withRSA, DH keySize < 1024, EC keySize < 224, 3DES_EDE_CBC, anon, NULL"
echo "Configure Databricks java for Aura access"
if [[ -f "${PROPERTIES_FILE}" ]]; then
echo "setting jdk.tls.disabledAlgorithms..."
echo "jdk.tls.disabledAlgorithms=${DISABLED_ALGOS}" | tee "${PROPERTIES_FILE}"
else
>&2 echo "ERROR failed to find ${PROPERTIES_FILE}"
fi