Files
build-web-application-with-…/12.3.md
2012-11-20 23:43:15 +08:00

17 lines
947 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
# 12.3 应用部署
程序开发完毕之后我们现在要部署Web应用程序了但是我们如何来部署这些应用程序呢因为Go程序编译之后是一个可执行文件编写过C程序的读者一定知道使用demon就可以完美的实现程序后台运行但是目前Go还无法完美的实现demon因此针对Go的应用程序部署我们可以利用第三方工具来管理第三方的工具有很多例如Supervisord、upstart、daemontools等这小节我介绍目前自己系统中采用的工具Supervisord。
## deamon
我们可以看到很多网上的一些实现demon的方法例如下面两种方式
http://code.google.com/p/go/issues/detail?id=227
## Supervisord
Supervisord是用Python实现的一款非常实用的进程管理工具。
## 小结
## links
* [目录](<preface.md>)
* 上一章: [网站错误处理](<12.2.md>)
* 下一节: [备份和恢复](<12.4.md>)