설정에서 bindIp 부분을 건드려주면 된다.
1. 우선 설정 파일로 들어간다.
$ vi /etc/mongod.conf
2. bindIp 부분을 건드려준다.
기본적으로 아래와 같이 되어 있다.
bindIp: 127.0.0.1
이것을 주석 처리해주거나 0.0.0.0을 써준다.
#bindIp: 127.0.0.1
또는
bindIp: 0.0.0.0
만약, 여러 개의 IP를 지정하면서 원하는 IP만 접속이 가능하게 하려면 대괄호를 써서 이용해야 한다.
bindIp: [127.0.0.1, 123.234.213.123]
아래는 전체 예시
# mongod.conf
# for documentation of all options, see:
# http://docs.mongodb.org/manual/reference/configuration-options/
# Where and how to store data.
storage:
dbPath: /var/lib/mongodb
journal:
enabled: true
# engine:
# mmapv1:
# wiredTiger:
# where to write logging data.
systemLog:
destination: file
logAppend: true
path: /var/log/mongodb/mongod.log
# network interfaces
net:
port: 65000
bindIp: [127.0.0.1, 123.234.213.123]
#bindIp: 0.0.0.0
#processManagement:
security:
authorization: enabled
#operationProfiling:
#replication:
#sharding:
## Enterprise-Only Options:
#auditLog:
#snmp:
'프로그래밍 > DB' 카테고리의 다른 글
[DB] Oracle 날짜 계산 시 INTERVAL 보단 ADD_MONTHS 를 사용하자 (1) | 2024.03.04 |
---|---|
[DB] H2 데이터베이스 조회 시 한글 깨짐 수정 (0) | 2022.10.01 |
[DB] H2 데이터베이스 설정 초기화 (0) | 2022.09.28 |
[DB] Oracle 특정 값 max/min 에 대한 column 선택 (0) | 2022.06.08 |
[DB] Can't connect to local MySQL server through socket '/tmp/mysql.sock' (0) | 2019.08.29 |