Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 서울시민카드
- JSON
- PostgreSQL
- yum
- Elasticsearch
- rsyslog
- K8S
- 파이썬
- centos 7.5
- audit
- Audit Log
- Python
- Kubernetes
- log
- Chrome
- syslog
- 빅데이터
- CentOS
- Shell
- C
- GPU
- 크롬
- Linux
- GNOME
- 디렉토리
- RHEL
- zabbix
- docker
- bash
- Elk
Archives
- Today
- Total
Sysops Notepad
[Linux] GraphDB(neo4j) 설치하기 본문
728x90
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
728x90
'업무 > etc' 카테고리의 다른 글
[Linux] Buildah, Podman, Skopeo 설치 및 참고 (0) | 2019.05.14 |
---|---|
[Linux] RHEL 8 , Centos 8 주요 기능 정리 (0) | 2019.05.14 |
[Linux] 특정 계정에 명령어 실행 권한 부여 방법 (0) | 2019.04.03 |
[Linux] tar 압축/압축해제시 에러 발생시 처리 방법 (0) | 2019.03.11 |
[bash] 대량의 파일을 디렉토리별 나누기/분할 방법 (0) | 2019.03.08 |
Comments