Mac: 3. Install Graphlytic

Install Graphlytic

Create the installation directory:

$ mkdir /Users/Shared/Graphlytic

Copy the installation package and unpack it:

$ cp ~/Downloads/graphlytic-<version>.tar.gz /Users/Shared/Graphlytic
$ cd /Users/Shared/Graphlytic
$ tar zxvf graphlytic-<version>.tar.gz

Configure Graphlytic

Graphlytic's configuration is stored in the "conf/graphlytic.conf" file.

The configuration contains (among other options):

  • Location of important directories like logs, custom icons, and widgets.

  • Default Neo4j Bolt connection.

  • Default SMTP connection.

  • Default password strength.

  • Branding options.

For all options and examples of how to use them please refer to Configuration.

To change Graphlytic's default configuration run this command (this is an optional step):

vi /Users/Shared/Graphlytic/conf/graphlytic.conf

HTTP vs. HTTPS configuration

To change the starting script's configuration run this command (this is an optional step):

$ vi /Users/Shared/Graphlytic/bin/graphlyticc

Edit the starting script file 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).

#!/bin/sh
 
# use this script to start GL from console
 
# disable or enable HTTP/HTTPS. To disable comment od remove line
#HTTP_PORT=8080
HTTPS_PORT=8443