因为一个比较特殊的原因,需要通过网页重启服务器端的一个程序,也就是先Kill掉,再重新Start,因为asp.net用户的权限不够,如果直接Kill掉进程的话就会错误,在网上查了一下也找到比较好的解决方案,于是用了一个很笨的方法:
先写了一个服务程序,功能是没隔一秒就检查一下一个文件中的内容,如果是wait就什么都不做,如果是Restart就重启那个进程。写好服务程序后安装到系统上就可以了。
//Program.cs
using System;
using System.Collections.Generic;
using System.ServiceProcess;
using System.Text;
namespace CHED
{
static class Program
{
/// <summary>
/// 应用程序的主入口点。
/// </summary>
static void Main()
{
ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Restart_Serv_U()
};
ServiceBase.Run(ServicesToRun);
}
}
}
//Restart_Serv_U.cs
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Diagnostics;
using System.ServiceProcess;
using System.Text;
using Microsoft.Win32;
using System.IO;
using System.Threading;
using System.Windows.Forms;
namespace CHED
{
public partial class Restart_Serv_U : ServiceBase
{
public Restart_Serv_U()
{
InitializeComponent();
}
protected override void OnStart(string[] args)
{
Thread CHEDThread = new Thread(ServerStart);
CHEDThread.Start();
}
protected override void OnStop()
{
}
private void ServerStart()
{
CHED LCYSC = new CHED();
Application.Run(LCYSC);
}
}
}
namespace CHED
{
partial class Restart_Serv_U
{
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// 清理所有正在使用的资源。
/// </summary>
/// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region 组件设计器生成的代码
/// <summary>
/// 设计器支持所需的方法 - 不要
/// 使用代码编辑器修改此方法的内容。
/// </summary>
private void InitializeComponent()
{
components = new System.ComponentModel.Container();
this.ServiceName = "Service1";
}
#endregion
}
}
//CHED.cs
using System;
using System.Windows.Forms;
using System.Threading;
using Microsoft.Win32;
using System.IO;
namespace CHED
{
public partial class CHED : ApplicationContext
{
public CHED()
{
watcher = new System.Threading.Timer(new TimerCallback(watcherCallBack), null, 1000, 1000);
}
private System.Threading.Timer watcher;
private void watcherCallBack(object o)
{
try
{
string text = File.ReadAllText(@"D:/webroot/CEDC/Manage/Admin/CHED/reset.ched");
if (text == "restart")
{
System.Diagnostics.Process[] pros = System.Diagnostics.Process.GetProcessesByName("Serv-U");
if (pros.Length > 0)
pros[0].Kill();
File.WriteAllText(@"D:/webroot/CEDC/Manage/Admin/CHED/reset.ched", "wait");
}
}
catch { }
}
}
}
还要添加对System.Windows.Forms的引用。
最后在网页的按钮事件中把那个文件的内容写为restart就可以了。
当然,用同样的方法可以实现结束其他多个进程,比如在文本中写入要结束的进程名,当服务器端的服务程序发现后就把那个进程给kill掉。