-
Notifications
You must be signed in to change notification settings - Fork 477
for OS X
1. Install packages
2. Install Neo4j
3. Clone LogonTracer git repository
4. Install python3 requirements
5. Install npm
6. Install Neo4j driver
If you do not have Java 8 and Python3 installed, please install JDK and Python3.
Download URL (Neo4j Community Linux/Mac tarball)
Please check the Neo4j web site and install Neo4j.
$ cd [NEO4J_HOME]
$ vi conf/neo4j.confFind the Bolt connector section in the config file and enable it to listen on all interfaces.
# Bolt connector
dbms.connector.bolt.enabled=true
#dbms.connector.bolt.tls_level=OPTIONAL
#dbms.connector.bolt.listen_address=:7687 <-- this line
And modify the last line as follows.
dbms.connector.bolt.listen_address=0.0.0.0:7687 <-- remove the # and insert 0.0.0.0 before the colon
Find the section for HTTP Connector and enable it to listen on all interfaces.
# HTTP Connector. There must be exactly one HTTP connector.
dbms.connector.http.enabled=true
#dbms.connector.http.listen_address=:7474 <-- this line
Modify last line as follows
dbms.connector.http.listen_address=0.0.0.0:7474 <-- remove the # and insert 0.0.0.0 before the colon
Restart Neo4j
$ ./bin/neo4j console &
From the host OS browse to the your Mac with the port 7474.
http://[IP_Address]:7474
Login with the default username(neo4j) and password(neo4j). Then you'll be prompted to change the password.
$ git clone https://github.com/JPCERTCC/LogonTracer.git$ pip3 install -r LogonTracer/requirements.txtPlease check this page and installing npm.
$ cd LogonTracer/static
$ npm install neo4j-driverThat's it. Now move on to How to Use!