日韩欧美人妻无码精品白浆,夜夜嗨AV免费入口,国产欧美官网在线看,高校回应聋哑女生因长相完美被质疑

LOGO OA教程 ERP教程 模切知識交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員

[點晴永久免費OA]C#創(chuàng)建并設(shè)置IIS網(wǎng)站應(yīng)用程序池

admin
2023年1月19日 0:49 本文熱度 1595
        /// <summary>
        /// 創(chuàng)建應(yīng)用程序池 IIS 7 默認是 FrameWork 4.0  集成模式
        /// </summary>
        /// <param name="appPoolName"></param>
        /// <param name="maxProcesses">最大進程數(shù)</param>
        /// <param name="queueLength">隊列長度</param>
        /// <param name="type">0為集成模式1為經(jīng)理模式</param>
        public static bool createAppPool7(string appPoolName, long maxProcesses,long queueLength,string type)
        {
            try
            {
                ServerManager sm = new ServerManager();
                //判斷是否存在應(yīng)用程序池
                ApplicationPool appPool = sm.ApplicationPools[appPoolName];
                if (appPool == null)
                {
                    sm.ApplicationPools.Add(appPoolName);
                    ApplicationPool apppool = sm.ApplicationPools[appPoolName];
                    if ("0".Equals(type))
                    {
                        apppool.ManagedPipelineMode = ManagedPipelineMode.Integrated;//托管管道為集成模式  ManagedPipelineMode.Classic為經(jīng)典模式
                    }
                    else {
                        apppool.ManagedPipelineMode = ManagedPipelineMode.Classic;//托管管道為經(jīng)典模式  ManagedPipelineMode.Classic為經(jīng)典模式
                    }
                  
                    apppool.ManagedRuntimeVersion = "v4.0";  //當(dāng)設(shè)置錯誤時,會在應(yīng)用程序中創(chuàng)建一個不存在的版本,不會報錯
                    //應(yīng)當(dāng)檢測當(dāng)前電腦是否安裝 FrameWork 4.0 ,并處理沒有安裝時該怎么辦
                    //apppool.QueueLength
                    apppool.Recycling.DisallowOverlappingRotation = false;
                    apppool.Recycling.PeriodicRestart.Time = TimeSpan.fromMinutes(0);
                    apppool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("23:00:00"));
                    apppool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("06:00:00"));
                    apppool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("12:30:00"));
                    apppool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("18:00:00"));
                    apppool.Recycling.LogEventOnRecycle = RecyclingLogEventOnRecycle.Memory
                        | RecyclingLogEventOnRecycle.Requests
                        | RecyclingLogEventOnRecycle.ConfigChange
                        | RecyclingLogEventOnRecycle.IsapiUnhealthy
                        | RecyclingLogEventOnRecycle.OnDemand
                        | RecyclingLogEventOnRecycle.PrivateMemory
                        | RecyclingLogEventOnRecycle.Schedule
                        | RecyclingLogEventOnRecycle.Time;
                    apppool.Recycling.PeriodicRestart.Memory = 40960000;
                    apppool.Recycling.PeriodicRestart.PrivateMemory= 0;
                    apppool.ProcessModel.IdleTimeout = TimeSpan.fromMinutes(0);
                    apppool.ProcessModel.MaxProcesses= maxProcesses;
                    apppool.ProcessModel.ShutdownTimeLimit = TimeSpan.fromSeconds(120);//關(guān)閉時間限制設(shè)置為120秒
                    apppool.QueueLength = queueLength;
                    apppool.Cpu.Limit = 80000;
                    apppool.Cpu.Action=ProcessorAction.KillW3wp;
                    apppool.Failure.RapidFailProtection = false;
                    apppool.AutoStart = true;
                    sm.CommitChanges();
                    apppool.Recycle();
                   
                } 
                else
                {
                    //appPool.ManagedPipelineMode = ManagedPipelineMode.Integrated;//托管管道為集成模式  ManagedPipelineMode.Classic為經(jīng)典模式
                    if ("0".Equals(type))
                    {
                        appPool.ManagedPipelineMode = ManagedPipelineMode.Integrated;//托管管道為集成模式  ManagedPipelineMode.Classic為經(jīng)典模式
                    }
                    else
                    {
                        appPool.ManagedPipelineMode = ManagedPipelineMode.Classic;//托管管道為經(jīng)典模式  ManagedPipelineMode.Classic為經(jīng)典模式
                    }
                    appPool.ManagedRuntimeVersion = "v4.0";  //當(dāng)設(shè)置錯誤時,會在應(yīng)用程序中創(chuàng)建一個不存在的版本,不會報錯
                    //應(yīng)當(dāng)檢測當(dāng)前電腦是否安裝 FrameWork 4.0 ,并處理沒有安裝時該怎么辦
                    appPool.Recycling.DisallowOverlappingRotation = false;
                    appPool.Recycling.PeriodicRestart.Time = TimeSpan.fromMinutes(0);
                    appPool.Recycling.PeriodicRestart.Schedule.Clear();
                    appPool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("23:00:00"));
                    appPool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("06:00:00"));
                    appPool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("12:30:00"));
                    appPool.Recycling.PeriodicRestart.Schedule.Add(TimeSpan.Parse("18:00:00"));
                    appPool.Recycling.LogEventOnRecycle = RecyclingLogEventOnRecycle.Memory
                        | RecyclingLogEventOnRecycle.Requests
                        | RecyclingLogEventOnRecycle.ConfigChange
                        | RecyclingLogEventOnRecycle.IsapiUnhealthy
                        | RecyclingLogEventOnRecycle.OnDemand
                        | RecyclingLogEventOnRecycle.PrivateMemory
                        | RecyclingLogEventOnRecycle.Schedule
                        | RecyclingLogEventOnRecycle.Time;
                    appPool.Recycling.PeriodicRestart.Memory = 40960000;
                    appPool.Recycling.PeriodicRestart.PrivateMemory = 0;
                    appPool.ProcessModel.IdleTimeout = TimeSpan.fromMinutes(0);
                    appPool.ProcessModel.MaxProcesses = maxProcesses;
                    appPool.ProcessModel.ShutdownTimeLimit = TimeSpan.fromSeconds(120);//關(guān)閉時間限制設(shè)置為120秒
                    appPool.QueueLength = queueLength;
                    appPool.Cpu.Limit = 80000;
                    appPool.Cpu.Action = ProcessorAction.KillW3wp;
                    appPool.Failure.RapidFailProtection = false;
                    appPool.AutoStart = true;
                    sm.CommitChanges();
                    appPool.Recycle();
                }
            }
            catch
            {
                return false;
            }
            return true;
        }

該文章在 2023/1/19 0:49:15 編輯過
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點晴ERP是一款針對中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國內(nèi)大量中小企業(yè)的青睞。
點晴PMS碼頭管理系統(tǒng)主要針對港口碼頭集裝箱與散貨日常運作、調(diào)度、堆場、車隊、財務(wù)費用、相關(guān)報表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點,圍繞調(diào)度、堆場作業(yè)而開發(fā)的。集技術(shù)的先進性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點晴WMS倉儲管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購管理,倉儲管理,倉庫管理,保質(zhì)期管理,貨位管理,庫位管理,生產(chǎn)管理,WMS管理系統(tǒng),標簽打印,條形碼,二維碼管理,批號管理軟件。
點晴免費OA是一款軟件和通用服務(wù)都免費,不限功能、不限時間、不限用戶的免費OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved