mongodb のインストールと関連コマンド
インストール:
Node.js & MongoDB portable 持ち歩くポータブルバージョン for windows startMongoDB.bat(MongoDBポータルの起動)
REM set PATH=%PATH%;%~dp0\bin
bin\mongod --quiet --bind_ip 127.0.0.1 --logpath %~dp0\log\MongoDB.log --logappend --dbpath %~dp0\data --directoryperdb --install
net start "MongoDB"
dir %~dp0
stopMongoDB.bat(MongoDBポータルの停止)
net stop "MongoDB"
bin\mongod --remove
Mysqlのようにポート3307にサービス
mongodrdl.exe --host localhost --db dpc --out schema.drdl
mongosqld.exe
コメント
コメントを投稿