修改MongoDb的 DB 和 Log 存储路径 (Windows)-摘自网络

Create a file called mongod.cfg in MongoDB folder if you dont have it. In my case: C:\Users\ivanbtrujillo\MongoDB

Then, edit mongod.cfg with notepad and add a line with the following (our custom dbpath):

dbpath=C:\Users\ivanbtrujillo\MongoDB\data\db

In this file you should especify the logpath too. My mongod.cfg file is:

logpath=C:\Users\ivanbtrujillo\MongoDB\log\mongo.log
dbpath=C:\Users\ivanbtrujillo\MongoDB\data\db

If you uses mongoDB as a windows service, you have to change this key and especify the mongod.cfg file.

To install mongodb as a windows service run this command:

**"C:\Users\ivanbtrujillo\MongoDB\bin\mongod.exe" --config "C:\Users\ivanbtrujillo\MongoDB\mongod.cfg" –install**

Open regedit.exe and go to the following route:

HKEYLOCALMACHINE\SYSTEM\CurrentControlSet\services\MongoDB

MongoDB service does not work, we have to edit the ImagePath key, delete its content and put the following:

**"C:\Users\ivanbtrujillo\MongoDB\bin\mongod.exe" --config "C:\Users\ivanbtrujillo\MongoDB\mongod.cfg"
--logpath="C:\Users\ivanbtrujillo\MongoDB\log\mongo.log" –service**

We indicates to mongo it‘s config file and its logpath.

Then when you init the mongodb service, it works.

Here is a full tutorial to install mongoDB in windows:http://ivanbtrujillo.herokuapp.com/2014/07/24/installing-mongodb-as-a-service-windows/

时间: 2024-10-09 02:23:58

修改MongoDb的 DB 和 Log 存储路径 (Windows)-摘自网络的相关文章

maven 配置: 修改默认的 .m2仓库 默认存储路径.

maven 配置: 修改默认的 .m2仓库 默认存储路径. 一 .在系统maven里修改 1.在maven_HOME/conf/下找到配置文档 settings.xml 在文档中添加如下的配置说明 <localRepository>/home/morpheus/.m2/repository</localRepository> 1 例如 settings.xml : .... <settings xmlns="http://maven.apache.org/SETTI

修改Mysql数据库默认存储路径

(修改) # cd /usr/local # mkdir db(建立Mysql数据库新的存放目录) # cp -r /var/db/mysql /var/db/mysql_bk(备份默认的mysql数据库) # cp -r /var/db/mysql /usr/local/db(拷贝Mysql数据库到新的存放目录) # mysqladmin shutdown(把mysql关闭) # cd /var/db # rm -r mysql(把以前的Mysql数据库删除了,才不碍眼) # ee /usr/

SQL查询与修改数据库逻辑文件名,移动数据库存储路径示例

USE mydb Go --1.查询当前数据库的逻辑文件名 SELECT FILE_NAME(1) AS 'File Name 1', FILE_NAME(2) AS 'File Name 2'; --或通过以下语句查询: --SELECT name FROM sys.database_files /* File Name 1         File Name 2 ------------------- -------------------- mydb                mydb

mysql数据存储路径修改

本例mysql版本为: mysql-server-5.1.73-5.e16_6.x86_64 1.检查mysql数据库存放目录 进入数据库 #mysql -u root -ppwd 查看sql存储路径(查看datadir的路径) mysql>show variables like '%dir%'; 退出mysql mysql>quit; 2.停止mysql服务 #service mysqld stop 3.创建新的数据库存放目录 #mkdir /new/mysql 4.移动/复制之前存放数据库

修改VirtualBox虚拟机默认存储路径及虚拟机迁移方法

修改默认安装路径 在安装完虚拟机以后发现我的虚拟的磁盘文件是放在C盘的,就想着有没有办法修改默认存储路径.后来发现确实可以修改,修改虚拟机方法如下:"管理"--->"全局设定",然后手工修改虚拟存储位置即可,如图: 迁移已有虚拟机 假设我们原有的存储文件VDI放在C:\Users\wei.xu\VirtualBox VMs\SCADA_Temp\SCADA_Temp.vdi,当前我要将其迁移到目录下,那么我只需要将.vdi文件拷贝到这个目录,然后执行以下命令:

oracle 修改表空间存储路径

[[email protected] ~]# more /etc/oracle-releaseOracle Linux Server release 5.7 Oracle Database 11g Enterprise Edition Release 11.2.0.3.0 - 64bit ProductionPL/SQL Release 11.2.0.3.0 - ProductionCORE 11.2.0.3.0 ProductionTNS for Linux: Version 11.2.0.3

Sqlserver数据库存储路径的修改

Sqlserver数据库存储路径的修改 Sqlserver数据库存储路径问题:本系统sqlserver路径默认是存储在C盘目录下的,由于数据会慢慢变大和避免重装系统数据丢失等问题,最好手动将路径设置在D盘. 更改路径方法: 情况一:更改数据库默认存储路径 1.打开数据库,登录进去,选择服务器 "属性". 2.选择"数据库设置",如图直接修改数据和日志的存储路径 这样新建数据库默认的存储路径就变为手动设置的路径了. 情况二:对已有的数据库转移到D盘 1.打开数据库,登

MSSQL如何修改默认数据库的存储路径

修改数据库存储路径之前我们得先对数据库做个剖析,得知道他的存储模式!数据库默认路径保存在注册表里,我们可以通过xp_instance_regwrite来修改注册表,具体以下方式是我在3A网络服务器上试验的方法,大家可以看下: 一.更改资料文件默认存放路径:EXEC xp_instance_regwrite   @rootkey='HKEY_LOCAL_MACHINE',   @key='Software\Microsoft\MSSQLServer\MSSQLServer',   @value_n

Docker默认存储路径修改

Docker默认存储路径: # docker info...... Data loop file: /var/lib/docker/devicemapper/devicemapper/data......Docker Root Dir: /var/lib/dockerDebug Mode (client): falseDebug Mode (server): falseRegistry: https://index.docker.io/v1/Insecure Registries: 127.0.