Questions tagged [neo4j-desktop]
54 questions
1
vote
0 answers
How to run a Neo4j Destop graph database from command line?
I created two graph db's with Neo4J Desktop.
Now I want to run them at the same time, on different ports.
The two databases have been saved by Neo4j Desktop respectively in the folders:
Neo4j\…

roschach
- 8,390
- 14
- 74
- 124
1
vote
1 answer
Neo.ClientError.Statement.ExternalResourceFailed on Mac
I have a CSV file I generate through code. I want to import the generated CSV file into neo4j using the following cypher query.
LOAD CSV WITH HEADERS FROM 'file:////Users/{user}/Desktop/neo4j-importer/tmp/temp_data.csv'
I have changed the…

SonOfLight
- 45
- 7
1
vote
2 answers
I can't find where to specify new credentials for my neo4j connection in the desktop browser
I've successfully changed my username and password for my neo4j database and I can successfully connect from my app. However now I cannot log in from the desktop browser.
Every attempt to run :server connect returns the same message, indicating…

charles082986
- 141
- 1
- 3
- 12
1
vote
1 answer
Neo4j Bolt: The client is unauthorized due to authentication failure
I have a Bolt Authentication issue that I don't know how to solve. I restored a backup from my online provider to my local machine. I can launch the browser and run "CALL db.schema" and the query returns. But when i try to just select a sample set…

Michael Black
- 661
- 11
- 24
1
vote
1 answer
Neo4j dumps could be merged in single database?
I have two database instances: one remote and one local. I want to dump the local database and merge it with remote (structure of nodes & relationships are the same). How may I do it? Simple neo4j-admin dump & load will help?

Alex Stepanenko
- 25
- 6
1
vote
1 answer
Neo4j Desktop: how to redirect where graph apps are prepared on first start?
I installed Neo4j Desktop using: "neo4j-desktop-offline-1.0.22-setup.exe".
The computer has Java 10 with a server folder: "C:\Program Files\Java\jre-10.0.1\bin\server"
The JAVA_HOME environment variable is set to "C:\Program…

Caslon Melior
- 11
- 4
1
vote
1 answer
How to install neo4j-shell-tools with Neo4j Desktop
I'm trying to install neo4j-shell-tools on windows running the neo4j desktop. After unzipping and placing the folder in the LIB directory and restarting, it doesn't seem to load the tools?
Invalid input 'm': expected 'n/N' (line 1, column 2 (offset:…

Michael Black
- 661
- 11
- 24
1
vote
2 answers
Neo4j Desktop Install Error when downloading Java 8 on Mac
I've downloaded Neo4j desktop on my computer and as part of the install process, it installs Java 8. Right now it throws the following error after the download is completed:
Initialization error: Error: MD5 sum of the downloaded file did not match…

Weiyi Yin
- 70
- 5
0
votes
0 answers
Problem when using Neo4j Desktop's built-in DBs
So I have both the community server and the desktop app installed. The community server is installed (unzipped) in:
'C:\DevTools\neo4j-community-5.5.0';
And the desktop app is installed in the default folder and has the internal DBs in the default…

JC Chen
- 11
- 2
0
votes
0 answers
Neo4j Desktop in a disconnected environment takes a lot of time to start?
I installed Neo4j Desktop client on disconnected windows environment (no internet),when starting the programmer it takes a lot of time (more then 30m) to get ready ,actually it get stacked on the " Preparing application " step :
I'm looking for any…

Ali Ourag
- 92
- 7
0
votes
0 answers
Failed to import dump into existing remote DBMS (using Neo4j desktop terminal)
I got this error "Archive does not exist". Please see attached screenshot of the Neo4j desktop structure.
Here is what I did:
bash-3.2$ bin/neo4j-admin load --from=data/dumps/dbms-neo4j-Dec-13-2022-10-12-01.dump --database=Remote --force
Selecting…

zero d
- 11
- 1
0
votes
0 answers
Neo4j browser won't execute query, just clears the query bar
Using the neo4j desktop app and it has suddenly started to clear out the query I wrote,without executing it, when I either hit the run button or hit cntrl-enter. I have restarted my pc and this didn't help. Any ideas what might be going on?
I…
0
votes
1 answer
Neo4j Desktop | Neo.ClientError.Statement.ExternalResourceFailed
Here, I simply introduce my situation about configuration:
System: Windows 11
Neo4j Desktop Version: 1.4.15
when I had finished that imports csv file to the…

kang Ouyang
- 11
- 1
0
votes
1 answer
Not seeing "Create Graph" and "Add Application" options after installing Neo4j Desktop
I'm absolutely new to Neo 4j Desktop/ Database. I installed the latest version(1.4.15) and after installing the application on OSX (12.4), i'm not seeing the options to "create a Graph". I followed the steps from here ->…

ravikrn32
- 63
- 1
- 5
0
votes
1 answer
Syntax Error In Create Unique Neo4j How Can I Solve This?
LOAD CSV WITH HEADERS FROM
'file:///epl_mataches.csv' as row
MATCH (c1:Club {name:row.`Team1`}), (c2:Club {name:row.`Team2`})
CREATE UNIQUE (c1) -[f:FEATURED{
round:toInteger(row.Round),
date:row.Date,
homeTeamFTScore:…

Aaditya Ghimire
- 58
- 4