Win: 3. Install Graphlytic
Install Graphlytic
Graphlytic is installed as a console application in Windows.
Unzip Graphlytic installation file "graphlytic-<version>.zip" into home Graphlytic directory (for example: c:\graphlytic\)
Configure Graphlytic
Graphlytic's configuration is stored in the "conf/graphlytic.conf" file. Default configuration is as follows:
# where Graphlytic stores its data
main.dataDir=..
/data/
# where Graphlytic stores log files
main.logDir=..
/data/logs/
# where Graphlytic stores external widgets
main.widgetsDir=..
/widgets/
# where Graphlytic stores external icons
main.iconsDir=..
/icons/
# login page logo title
site.logo.title=Graphlytic
#HSQLDB schema name
hsql.schema=GRAPHLYTIC
# Bolt connection to Neo4j
neo4j.connector.bolt=bolt:
//localhost
:7687
neo4j.connector.username=neo4j
neo4j.connector.password=admin
#encryption of the connection to DB. Neo4j 4 requires ssl to be explicitly enabled and configured. It does not accept default self-signed Neo4j 3 certificates.
neo4j.connector.encrypted=
false
# User entered password strength
passwords.strength.minLength=8
passwords.strength.minLowerCaseLetters=1
passwords.strength.minUpperCaseLetters=1
passwords.strength.minNumbers=1
passwords.strength.minSpecialCharacters=1
Edit configuration file "graphlytic.bat" to use HTTP or HTTPS (or both) for connecting to the Graphlytic web application. This is an optional step (default config is HTTP and HTTPS both enabled).
@ECHO
OFF
REM disable or enable HTTP/HTTPS. To disable comment or remove line
SET HTTP_PORT=
8080
SET HTTPS_PORT=
8443