我是 ruby 的新手,遇到了我创建的 Windows 服务的一个问题(代码如下)。当服务运行时,我在测试日志中收到一个错误,即没有这样的文件或目录,并且找不到任何名称为日志的路径QaTaTestExe.log.xml
。这是我在文件中看到的错误。
***守护进程失败 2013-07-28 16:29:28 -0400 err=没有这样的文件或目录
但是,当我在单独的类中尝试代码(运行时之后?)时,它可以工作。由于错误与守护程序有关,我的配置中是否缺少任何内容?
LOG_FILE = 'C:\\test.log'
require "rubygems"
begin
require 'win32/daemon'
include Win32
class Daemon
def service_main
while running?
testresultpath = "Z:/Windows 2008 R2 - Exchange 2010 - Search"
file_path s =[]
Find.find(testresultpath) do |path|
file_paths << path if path =~ /.*\QaTaTestExe.log.xml$/
File.open("c:\\test.log", "a"){ |f| f.puts(path)}
end
sleep 30
File.open("c:\\test.log", "a"){ |f| f.puts "Service is running #{Time.now}" }
end
end
def service_stop
File.open("c:\\test.log", "a"){ |f| f.puts "***Service stopped #{Time.now}" }
exit!
end
end
Daemon.mainloop
rescue Exception => err
File.open(LOG_FILE,'a+'){ |f| f.puts " ***Daemon failure #{Time.now} err=#{err} " }
raise
end