各種模式的調(diào)試參數(shù)說明 beos
StartThreads 10 #服務(wù)器啟動時啟動的線程數(shù)
MaxClients 50 #可以啟動的最大線程數(shù)(一個線程等于一個用戶)
MaxRequestsPerThread 10000 #每個線程允許的最大請求數(shù) mpm_netware
ThreadStackSize 65536 #為每個工作線程分配的堆棧尺寸 StartThreads 250 #服務(wù)器啟動時啟動的線程數(shù) MinSpareThreads 25 #用于處理實發(fā)請求的空閑線程數(shù) MaxSpareThreads 250 #空閑線程的最大數(shù)量 MaxThreads 1000 #在同一時間活動的最大線程數(shù)
MaxRequestPerChild 0 #一個線程服務(wù)請求的最大數(shù)量,推薦將其設(shè)置為0,以實現(xiàn)無限制的接入 mpmt_os2
StartServers 2 #啟動的服務(wù)進程數(shù)量
MinSpareThreads 5 #每個進程允許的最小空閑線程 MaxSpareThreads 10 #每個進程允許的最大空閑線程 MaxRequestsPerChild 0 #每個服務(wù)進程允許的最大連接數(shù) prefork
StartServers 5 #啟動時服務(wù)器啟動的進程數(shù)
MinSpareServers 5 #保有的備用進程的最小數(shù)目 MaxSpareServers 10 #保有的備用進程的最大數(shù)目 MaxClients 150 #服務(wù)器允許啟動的最大進程數(shù)
MaxRequestPerChild 0 #一個服務(wù)進程允許的最大請求數(shù) worker
StartServers 2 #服務(wù)器啟動時的服務(wù)進程數(shù)目 MaxClients 150 #允許同時連接的最大用戶數(shù)目 MinSpareThreads 25 #保有的最小工作線程數(shù)目 MaxSpareThreads 75 #允許保有的最大工作線程數(shù)目 ThreadsPerChild 25 #每個服務(wù)進程中的工作線程常數(shù) MaxRequestsPerChild 0 #服務(wù)進程中允許的最大請求數(shù)目 mpm_winnt
ThreadsPerChild 250 #服務(wù)進程中工作線程常數(shù) MaxRequestsPerChild 0 #服務(wù)進程允許的最大請求數(shù) perchild
NumServers 5 #服務(wù)進程數(shù)量
StartThreads 5 #每個服務(wù)進程中的起始線程數(shù)量 MinSpareThreads 5 #保有的最小線程數(shù)量 MaxSpareThreads 10 #保有的最大線程數(shù)量
MaxThreadsPerChild 20 #每個服務(wù)進程允許的最大線程數(shù) MaxRequestsPerChild 0 #每個服務(wù)進程允許連接的最大數(shù)量
給weblogic集群做調(diào)度時的配置方法 在httpd.conf文件中加入
WebLogicCluster 192.168.100.201:7081,192.168.100.202:7081 #節(jié)點服務(wù)器的地址和端口 MatchExpression *
DebugConfigInfo OFF #是否開放調(diào)試模式 Debug OFF #是否開放調(diào)試模式
啟停apache 啟動:
E:Apache2.2bin>httpd -k install -n apache_8080 -f E:Apache2.2confhttpd8080.conf #安裝一個Apache服務(wù)并指出配置文件的路徑
E:Apache2.2bin>httpd -k start -n apache_8080 #開啟Apache服務(wù)
停止:
E:Apache2.2bin>httpd -k stop -n apache_8080 #停止Apache服務(wù)
E:Apache2.2bin>httpd -k uninstall -n apache_8081 #卸載建立的Apache服務(wù)