-1

i am trying to track latest changes in neo4j in Server Mode

so i followed this link https://github.com/graphaware/neo4j-changefeed

as i see some extra node are added and here are changes about my db

enter image description here

but http://localhost:7474/graphaware/changefeed/CFM gives me 404

i am using neo4j 2.2.2

and my neo4j.properties

com.graphaware.runtime.enabled=true
com.graphaware.module.CFM.1=com.graphaware.module.changefeed.ChangeFeedModuleBootstrapper

com.graphaware.module.CFM.maxChanges=100

com.graphaware.module.CFM.pruneDelay=10000

com.graphaware.module.CFM.pruneWhenExceeded=10

com.graphaware.module.CFM.node=!hasLabel('NotIncluded')

com.graphaware.module.CFM.relationship=!isType('NOT_INCLUDED')

plugins i added

graphaware-server-community-all-2.2.2.31.jar
graphaware-changefeed-2.2.2.31.7.jar
JasonMArcher
  • 14,195
  • 22
  • 56
  • 52
Govind Singh
  • 15,282
  • 14
  • 72
  • 106
  • Which version of Neo4j? Please also share the module config in neo4j.properties – Luanne Jun 21 '15 at 10:06
  • @Luanne added to question – Govind Singh Jun 21 '15 at 10:17
  • Any exceptions in console.log or neo4j*.log? Is authentication enabled/disabled for the neo4j server? – Luanne Jun 21 '15 at 10:27
  • @Luanne authentication is disabled and in console i am getting "NetworkError: 404 Not Found - http://localhost:7474/graphaware/changefeed/" – Govind Singh Jun 21 '15 at 10:30
  • Hmm strange. In console.log can you check if graphaware and the changefeed are mounted? You should see stuff like Mounting GraphAware Framework under /graphaware and Mapped "{[/changefeed/{moduleId}],methods=[GET],params=[],headers=[],consumes=[],produces=[],custom=[]}" onto public java.util.Collection – Luanne Jun 21 '15 at 10:41
  • @Luanne i think i misunderstanding the console.log i was checking browser console, where i get this console.log?? sorry i am begginer – Govind Singh Jun 21 '15 at 10:44
  • Let us [continue this discussion in chat](http://chat.stackoverflow.com/rooms/81108/discussion-between-luanne-and-govind-singh-nagarkoti). – Luanne Jun 21 '15 at 10:47
  • Did you install Neo4j from the installer or zip? – Luanne Jun 21 '15 at 11:49

1 Answers1

2

The GraphAware framework and modules will work on Windows only if you've installed Neo4j from the zip and not the installer.

Luanne
  • 19,145
  • 1
  • 39
  • 51