You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
11 lines
524 B
11 lines
524 B
apt install -y curl python3 python3-pip
|
|
curl -fsSL https://debian.neo4j.com/neotechnology.gpg.key | gpg --dearmor -o /usr/share/keyrings/neo4j.gpg
|
|
echo "deb [signed-by=/usr/share/keyrings/neo4j.gpg] https://debian.neo4j.com stable latest" > /etc/apt/sources.list.d/neo4j.list
|
|
apt update
|
|
apt install -y neo4j
|
|
sed -i '1s/^/server.default_listen_address=0.0.0.0\n/' /etc/neo4j/neo4j.conf
|
|
systemctl enable --now neo4j
|
|
neo4j-admin dbms set-initial-password 4Sfz541Lm --require-password-change=false
|
|
|
|
python3 -m pip install neo4j
|