分享
用go写windows系统服务
YiYou.Org · · 5820 次点击 · · 开始浏览这是一个创建于 的文章,其中的信息可能已经有所发展或是发生改变。
用go+nssm非常容易实现windows系统服务,先看下面的程序
package main
func main() {
//Call this function where the action happpens
doStuff()
}
func doStuff() {
for {
//the actual stuff happens here.
}
}
下载nssm复制到c:\windows目录,执行
nssm install MyService d:\MyService.exe
nssm下载地址:http://nssm.cc/description
参考http://sanatgersappa.blogspot.co.id/2013/07/windows-service-with-go-easy-way.html
有疑问加站长微信联系(非本文作者)
入群交流(和以上内容无关):加入Go大咖交流群,或添加微信:liuxiaoyan-s 备注:入群;或加QQ群:692541889
关注微信5820 次点击
上一篇:使用go连接mssql
下一篇:Go 技篇第二 命名规范
添加一条新回复
(您需要 后才能回复 没有账号 ?)
- 请尽量让自己的回复能够对别人有帮助
- 支持 Markdown 格式, **粗体**、~~删除线~~、
`单行代码` - 支持 @ 本站用户;支持表情(输入 : 提示),见 Emoji cheat sheet
- 图片支持拖拽、截图粘贴等方式上传
收入到我管理的专栏 新建专栏
用go+nssm非常容易实现windows系统服务,先看下面的程序
package main
func main() {
//Call this function where the action happpens
doStuff()
}
func doStuff() {
for {
//the actual stuff happens here.
}
}
下载nssm复制到c:\windows目录,执行
nssm install MyService d:\MyService.exe
nssm下载地址:http://nssm.cc/description
参考http://sanatgersappa.blogspot.co.id/2013/07/windows-service-with-go-easy-way.html