Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | |||||
3 | 4 | 5 | 6 | 7 | 8 | 9 |
10 | 11 | 12 | 13 | 14 | 15 | 16 |
17 | 18 | 19 | 20 | 21 | 22 | 23 |
24 | 25 | 26 | 27 | 28 | 29 | 30 |
Tags
- BigData
- Neo4j
- GraphX
- RStudio
- SparkML
- TensorFlow
- GSQL
- Graph Ecosystem
- 그래프 에코시스템
- 인공지능
- 그래프
- RDD
- r
- 빅데이터
- 딥러닝
- spark
- 연합학습
- 분산 병렬 처리
- GDB
- Python
- graph database
- Federated Learning
- SQL
- DeepLearning
- 그래프 질의언어
- 그래프 데이터베이스
- Cypher
- graph
- TigerGraph
- Graph Tech
Archives
- Today
- Total
Hee'World
Neo4j DatabaseNotFoundError_status_quarantined 본문
Database/Graph Database
Neo4j DatabaseNotFoundError_status_quarantined
Jonghee Jeon 2022. 2. 12. 17:11Neo4j Browser에서 초기 접속 후 특정 데이터베이스의 사용이 안될 경우 또는 아래와 같은 Error 발생 시, 해결방안
Error DatabaseNotFoundError
Database "neo4j" is unavailable, its status is "quarantined"
- neo4j 데이터베이스 사용하려다가 아래와 같은 Error 발생
- SHOW DATABASE neo4j; 를 실행하여 currentStatus를 확인해보니 "quarantined" 상태로 되어 있음
- 이는 데이터베이스가 정상 실행 중에 심각한 오류가 발생하여 추가 작업을 수행할 수 없는 경우에 Neo4j는 해당 데이터베이스를 중지하고 quarantined 상태로 전환하게 됨(https://neo4j.com/docs/operations-manual/current/manage-databases/errors/4.Quarantined databases)
- 이를 해제하기 위해서는 CALL dbms.quarantineDatabase(databaseName,setStatus,reason)를 이용
- Arguments의 내용은 아래와 같음
databaseName | String | The name of the database that will be put into or removed from quarantine. |
setStatus | Boolean | true for placing the database into quarantine; false for lifting the quarantine. |
reason | String | (Optional) The reason for placing the database in quarantine. |
- 명령어를 CALL dbms.quarantineDatabase("neo4j",false)로 입력
- SHOW DATABASE neo4j;를 입력하고 다시 확인해보니 currentStatus가 "online" 상태로 다시 변경된 것을 확인
- use neo4j를 입력해보니 정상적으로 접근 가능함을 확인
'Database > Graph Database' 카테고리의 다른 글
Cypher 기초(1/2) (0) | 2022.08.20 |
---|---|
TigerGraph란? (0) | 2022.05.01 |
Neo4j란? (2) | 2022.02.12 |
Neo4j Desktop 설치 (0) | 2022.01.23 |
그래프 데이터베이스란? (0) | 2022.01.20 |
Comments