| 1 | useradd mongodb
|
|---|
| 2 | passwd mongodb --> °Ž¹æ¶šÊäÈëÃÜÂë
|
|---|
| 3 | passwd -l mongodb --> œûÖ¹Óû§µÇÂŒ
|
|---|
| 4 | groupadd mongodb
|
|---|
| 5 |
|
|---|
| 6 | wget http://192.168.10.243/mongoDB/mongodb-linux-x86_64-1.8.1.tgz
|
|---|
| 7 | mkdir /data/PRG (/dataÔÚËùÐèÓ²Å̵ķÖÇø)
|
|---|
| 8 | tar -zxvf mongodb-linux-x86_64-1.8.1.tgz -C /data/PRG
|
|---|
| 9 | cd /data/PRG
|
|---|
| 10 | #mv mongodb-linux-x86_64-1.8.1 mongodb
|
|---|
| 11 | ln -s mongodb-linux-x86_64-1.8.1 mongodb
|
|---|
| 12 | cd /data/PRG && chown -R mongodb:mongodb mongodb
|
|---|
| 13 |
|
|---|
| 14 | cp /data/PRG/mongodb/mongodb.sh /etc/init.d/
|
|---|
| 15 | vi /etc/init.d/mongodb.sh -- °ŽÐèÐÞžÄMONGODB_HOME MONGODB_LOGPATH MONGODB_PID MONGODB_DBPATH
|
|---|
| 16 | /etc/init.d/mongodb.sh init
|
|---|
| 17 |
|
|---|
| 18 | --------------------°²×°Íê±Ï----------------------
|
|---|
| 19 |
|
|---|