반응형
Repository 추가
vim /etc/yum.repos.d/mongodb.repo
mongodb.repo에 내용 입력
<!-- 64bit -->
[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/x86_64/
gpgcheck=0
enabled=1
<!-- 32bit -->
[mongodb]
name=MongoDB Repository
baseurl=http://downloads-distro.mongodb.org/repo/redhat/os/i686/
gpgcheck=0
enabled=1
MongoDB install
yum install mongo-10gen mongo-10gen-server
서비스 등록 및 실행
chkconfig --add mongod
chkconfig --level 2345 mongod on
chkconfig --list mongod
service mongod start
실행 상태 확인 및 접속
// 실행 상태 확인
mongostat
// 접속
mongo
반응형
'Develop > Linux' 카테고리의 다른 글
Cent OS 6.x ) yum update error - 404 not found (0) | 2019.05.24 |
---|---|
Cent OS 6.x ) problem making ssl connection (0) | 2019.05.24 |
Cent OS 6.x ) MariaDB 설치 (0) | 2019.05.24 |
Cent OS 6.x ) Cannot retrieve repository metadata (repomd.xml) for repository (0) | 2019.05.23 |