Download and install Community Edition

Download exakat

Download exakat, the latest version (check its checksums SHA256 or MD5), in a new folder, called ‘exakat’.

YouTube player

Install the graph database

In the previous folder, install the Gremlin database

mkdir exakat
cd exakat
curl -o exakat.phar 'https://www.exakat.io/versions/index.php?file=latest'
curl -o apache-tinkerpop-gremlin-server-3.4.7-bin.zip 'https://www.exakat.io/versions/apache-tinkerpop-gremlin-server-3.4.7-bin.zip'
unzip apache-tinkerpop-gremlin-server-3.4.7-bin.zip
mv apache-tinkerpop-gremlin-server-3.4.7 tinkergraph
rm -rf apache-tinkerpop-gremlin-server-3.4.7-bin.zip

# Optional : install neo4j engine.
cd tinkergraph
./bin/gremlin-server.sh install org.apache.tinkerpop neo4j-gremlin 3.4.7
cd ..

php exakat.phar doctor

Test the install

Run the following commands to check if your installation is valid

// Check that Exakat.phar may be run

php exakat.phar version

// Review the installation, configuration and provide diagnostics

php exakat.phar doctor

Run an audit

Here is a simple example to run an audit with the previous installation. This helps ensure that all is ready.

php exakat.phar init -p sculpin -R https://github.com/sculpin/sculpin;

php exakat.phar project -p sculpin

After the audit, open the file called ‘projects/sculpin/report/index.html’ in your browser.