Sysops Notepad

[Linux] GraphDB(neo4j) 설치하기 본문

업무/etc

[Linux] GraphDB(neo4j) 설치하기

sysops 2019. 4. 19. 17:02

AWS 의 Amazon Neptune 같은 그래픽 데이터베이스인 neo4j 설치하기

환경: centos 7.6

 

# cd /tmp

# wget http://debian.neo4j.org/neotechnology.gpg.key

# rpm --import neotechnology.gpg.key

# cat <  /etc/yum.repos.d/neo4j.repo
[neo4j]
name=Neo4j Yum Repo
baseurl=http://yum.neo4j.org/stable
enabled=1
gpgcheck=1
EOF

# yum install neo4j

# vim /etc/neo4j/neo4j.conf
...
#org.neo4j.server.webserver.address=0.0.0.0 ->
org.neo4j.server.webserver.address=<ip>
...

 

# systemctl enable neo4j
systemctl start neo4j 


http://<ip>:7474

default login 정보

id : neo4j

password : neo4j

 

 

Comments