Configure and restart Unravel
Configure basic options
Set these properties in
/usr/local/unravel/etc/unravel.properties
as follows. If you don't find the property in the file, add it.com.unraveldata.cluster.type=DB com.unraveldata.python.enabled=false com.unraveldata.tagging.enabled=true com.unraveldata.cluster.type=DB com.unraveldata.onprem=false logreceiver.force_unravel_cluster_id=true
Configure Unravel with Azure MySQL
Set the following Unravel properties for Azure MySQL in
/usr/local/unravel/etc/unravel.properties
. Check Azure MySQL resource page for property values.unravel.jdbc.username=
Server admin login name
unravel.jdbc.password=Server admin login password
unravel.jdbc.url=jdbc:mysql://Server name
:3306/unravel_mysql_prod unravel.jdbc.url.params=useSSL=true&requireSSL=falseInstall MySQL JDBC connector driver in Unravel classpath.
wget https://dev.mysql.com/get/Downloads/Connector-J/mysql-connector-java-5.1.47.tar.gz -O /tmp/mysql-connector-java-5.1.47.tar.gz cd /tmp tar xvzf /tmp/mysql-connector-java-5.1.47.tar.gz sudo mkdir -p /usr/local/unravel/share/java sudo cp /tmp/mysql-connector-java-5.1.47/mysql-connector-java-5.1.47.jar /usr/local/unravel/share/java
Create database and tables for Unravel. Enter MySQL Server admin login password when prompted.
mysql --host=
Server name
--port=3306 --userServer admin login name
--password -e 'create database unravel_mysql_prod' /usr/local/unravel/dbin/db_schema_upgrade.sh sudo /usr/local/unravel/install_bin/db_initial_inserts.sh | /usr/local/unravel/install_bin/db_access.sh
Configure Unravel with Azure Databricks
Navigate to Workspace > Admin Console > Access Control and enable Personal Access Tokens.
Navigate to Workspace > User Settings > Access Tokens and click Generate New Token. Choose
indefinite
for the token lifetime.Install Unravel agents on Workspace and update Unravel config with Workspace details:
/usr/local/unravel/bin/databricks_setup.sh --add-workspace -i
Workspace id
-nWorkspace name
-tWorkspace token
-s https://Workspace location
.azuredatabricks.net -uUnravel VM Private IP address
:4043
Restart Unravel
Restart all Unravel services
service unravel_all.sh restart
Log in to Unravel UI
http://
Unravel VM Address
:3000