So while I am using Ubuntu Bionic Beaver (v 18 LTS Release) I have the exact same issue. I noted that the error you mentioned occurred for me. The installer hung at the error: "INFO jdbc.Driver: Embedded Neo4j support not enabled org/neo4j/graphdb/GraphDatabaseService"
For me I re-installed Ubuntu and then started all over again. Below are the steps I took to get this all working:
1. Installed Java
A. sudo apt-get purge openjdk-\*
B. sudo apt-get update
C. sudo apt-get install oracle-java8-installer
D. sudo apt-get install oracle-java8-set-default
2. Set the Variables:
A. export JAVA_HOME=/usr/lib/jvm/java-8-openjdk-amd64/
To determine the path type:
update-alternative --list java
3. Install MySQL:
A. sudo apt-get install mysql-server
B. sudo mysql-secure_installation
4. I had to change my Root accounts login method:
A. ALTER USER 'root'@'localhost' IDENTIFIED WITH mysql_native_password BY 'password';
Where the red text is a secure password you set for the Root account for the mysql server
B. FLUSH PRIVILEGES;
C. SELECT user,authentication_string,plugin,host FROM mysql.user;
The output should show the Root account as mysql_native_password under the "plugin" header
5. I installed NEO4J (may not be needed)
A. wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
B. echo 'deb http://debian.neo4j.org/repo stable/' >/tmp/neo4j.list
C. sudo mv /tmp/neo4j.list /etc/apt/sources.list.d
D. sudo apt-get update
E. sudo apt-get install neo4j=3.1.4 <-- This installs Community Edition