Giter VIP home page Giter VIP logo

Comments (5)

cellcoresystems avatar cellcoresystems commented on August 28, 2024 2

@AdrienLemaire the errors you have are coming from the wrong version of the apoc procedures.
The apoc library is bond to the neo4j db version, if you use a wrong one, then you get that error.

Always take look -->here howto install apoc.

If you want to run Neo4j v4.0.4 then you can use this here:

FROM neo4j:4.0.4-enterprise

ENV NEO4J_AUTH=neo4j/letmein \
    APOC_VERSION=4.0.0.12 
    ##not needed in v 4.0 because it is integrated now
    #GRAPHQL_VERSION=3.5.0.4

ENV APOC_URI=https://github.com/neo4j-contrib/neo4j-apoc-procedures/releases/download/${APOC_VERSION}/apoc-${APOC_VERSION}-all.jar
##curl is removed during the build of neo4j v4.0, I guess because of its size and dependencies
#RUN sh -c 'cd /var/lib/neo4j/plugins && curl -L -O "${APOC_URI}"'
RUN sh -c 'wget -P /var/lib/neo4j/plugins/ "${APOC_URI}"'

##not needed in v 4.0 because it is integrated now
#ENV GRAPHQL_URI https://github.com/neo4j-graphql/neo4j-graphql/releases/download/${GRAPHQL_VERSION}/neo4j-graphql-${GRAPHQL_VERSION}.jar
#RUN sh -c 'cd /var/lib/neo4j/plugins && curl -L -O "${GRAPHQL_URI}"'

EXPOSE 7474 7473 7687

CMD ["neo4j"]

But be careful with GRANDstack and Neo4j v4.0, not everything is tested, I guess thats why William did not change it until now.

Hope it helps ;o)

from grand-stack-starter.

AdrienLemaire avatar AdrienLemaire commented on August 28, 2024

@johnymontana it would be great to have the grand starter working with v4 under docker-compose :)

from grand-stack-starter.

BrenoMazieiro avatar BrenoMazieiro commented on August 28, 2024

@AdrienLemaire
Like this? https://github.com/BrenoMazieiro/grand-stack-starter
=)

from grand-stack-starter.

AdrienLemaire avatar AdrienLemaire commented on August 28, 2024

@BrenoMazieiro thanks for sharing.
It looks like your fork is using neo4j community, not the enterprise version.

I'd also very much like to understand how to debug these neo4j java traceback errors, and keep my setup as simple as possible for the moment (no need for a proxy).

Might you know what these 'Some jar procedure files are invalid' errors I shared above could mean?
Thanks for your help!

from grand-stack-starter.

AdrienLemaire avatar AdrienLemaire commented on August 28, 2024

Sorry, forgot to close the issue. Thanks again for the resolution !

from grand-stack-starter.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.