2013. 1. 8. 23:34
1. mongodb 설치
# apt-key adv --keyserver server.ubuntu.com --recv 7F0CEB10
# vim /etc/apt/sources.list.d/10gen.list
deb http://downloads-distro.mongodb.org/repo/ubuntu-upstart dist 10gen
# apt-get update
# apt-get install mongodb-10gen
# service mongodb start
# mongo
2. php mongodb driver 설치
# vim /etc/php5/apache2/php.ini
extension=mongo.so
혹은
extension=/usr/lib/php5/20090626/mongo.so # find / -name mongo.so
# service httpd restart
# apt-get install php5-dev php5-cli
# apt-get install php-pear
# sudo pecl install phpmongo
3. RockMongo 설치
http://rockmongo.com/ 에서 다운로드 및 압축 풀기
http://localhost/rockmongo/index.php 로 접속
username : admin
password : admin
Rockmongo 실행 모습
'php' 카테고리의 다른 글
php password md5 hash (0) | 2013.02.02 |
---|---|
php file upload 와 mysql blob (0) | 2013.01.02 |
PHP와 MySQL을 이용한 웹 프로그래밍 (0) | 2013.01.01 |
xml to json 변환 (0) | 2012.12.20 |
sms 인증보내기 php 소스 (0) | 2012.12.19 |