did you import the GPG key like the instructions say?
This should be enough to install on amazon linux:
amazon-linux-extras enable java-openjdk11
rpm --import https://debian.neo4j.com/neotechnology.gpg.key
cat <<EOF > /etc/yum.repos.d/neo4j.repo
[ne...
rui.madaleno:
docker run --name test --publish=7474:7474 --publish=7687:7687 --env=NEO4JLABS_PLUGINS=["apoc"] --env=NEO4J_AUTH=none neo4j:latest
You're very close. The NEO4JLABS_PLUGIN env should be --env=NEO4JLABS_PLUGINS='["apoc"]'
bash do...
Hi @dkroot2. I checked the yum.neo4j.com repository this morning and the 4.0 packages are all there.
I think your machine is still using the deprecated yum.neo4j.org repository, since that one does not contain any 4.0 packages. Could you check the /e...
Hi @folterj the yum.neo4j.org is deprecated and no longer receiving updates since 3.5.14.
If you change your /etc/yum.repos.d/neo4j.repo file to say yum.neo4j.com instead of .org you will be able to update through yum.
Sorry for the inconvenince there, the key was indeed expired. The key is now updated.
You can redo:
wget -O - https://debian.neo4j.org/neotechnology.gpg.key | sudo apt-key add -
or to update the apt keys list from the keyserver:
sudo apt-key adv --re...