Mongodb的windows服务安装和卸载】的更多相关文章

不用 InstallUtil.exe,直接用mongod.exe做就可以: 安装:mongod --dbpath "C:\mongodb\db" --logpath "C:\mongodb\log.txt" --install --serviceName "MongoDB" 卸载:mongod.exe --remove --serviceName "MongoDB"…
Windows服务安装与卸载,使用到了InstallUtil.exe 安装: c: cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319" InstallUtil.exe "D:\OrderService.exe" 卸载: c: cd "C:\Windows\Microsoft.NET\Framework\v4.0.30319" InstallUtil.exe /u "D:\OrderSer…
--C# windows服务安装及卸载   保存BAT文件  执行即可 @SET FrameworkDir=%WINDIR%\Microsoft.NET\Framework@SET FrameworkVersion=v2.0.50727 @SET PATH=%FrameworkDir%\%FrameworkVersion%;%WINDIR%\System32;%PATH%; InstallUtil.exe /u D:\WebCode\SYSFORM008BOOKTICKET\WindowsSer…
1. 安装 新建文本文件,重命名为 ServiceInstall.bat,将 ServiceInstall.bat 的内容替换为: sc create "Verity Platform Device Service" binPath= "%~dp0WindowsService_HardwareDevice.exe" sc description "Verity Platform Device Service" "提供设备连接.FMC 电…
1. 安装 安装 .NET Framework ; 新建文本文件,重命名为 ServiceInstall.bat,将 ServiceInstall.bat 的内容替换为: C:\\Windows\\Microsoft.NET\\Framework\\v4.0.30319\\InstallUtil.exe "%~dp0WindowsService_HardwareDevice.exe" net start "Verity Platform Device Service"…
最近在重构公司的系统,把一些需要独立执行.并不需要人为关注的组件转换为Windows服务,Windows服务在使用的过程中有很多好处,相信这一点,就不用我多说了.但是每次都要建立Windows服务项目,编写服务代码,建立服务的安装程序,然后还要通过InstallUtil.exe这个命令来安装Windows服务,如果要是想卸载也要使用这个命令,只是在InstallUtil.exe这个命令后增加一个参数/u,表示卸载,我相信大家都对这个很熟悉了,我就不多说了. 我为了不想使用这个命令来安装和卸载Wi…
1.新建项目 选中windows服务 2.添加安装程序 3.修改安装代码 ServiceProcessInstaller processInstall; ServiceInstaller serviceInstall; public ProjectInstaller() { this.processInstall = new ServiceProcessInstaller(); this.serviceInstall = new ServiceInstaller(); processInstal…
首先管理员身份进入cmd cd C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ 进入C:\Windows\Microsoft.NET\Framework64\v4.0.30319\ 因为installutil.exe目录在此文件下 安装:installutil.exe F:\xxxk\bin\Debug\xxxx.exe 卸载:installutil.exe /u F:\xxxk\bin\Debug\xxxx.exe…
1)安装脚本Install.bat%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe JobSchedule.exeNet Start ServiceOAsc config ServiceOA start= auto 2)卸载脚本Uninstall.bat%SystemRoot%\Microsoft.NET\Framework\v4.0.30319\installutil.exe /u JobSchedule.exe…
首先区官网下载对应版本的安装文件,我本地的环境是win7 bit64 我下载的版本是:mongodb-win32-x86_64-2.4.6 ok, 文件下载后,开始安装,这里要说一下,如果直接启动Mongo是可以的,但是我个人认为将mongodb做为一个windows服务安装才是比较好的选择.下面将我安装的步骤和大家分享一下. 第一步:规划你的安装目录和数据库文件的存储路径,我打算将Mongo的程序文件放置C:\mongodb,将数据库文件放置在D:\Mongodb. 第二步:将下载的文件放到C…