home *** CD-ROM | disk | FTP | other *** search
/ PC World 1999 November / PCWorld_1999-11_cd.bin / Komunik / Sambar / _setup.1 / config.stm < prev    next >
Text File  |  1999-08-30  |  20KB  |  499 lines

  1. <HTML>
  2. <HEAD>
  3. <META HTTP-EQUIV="Pragma" CONTENT="no-cache">
  4. <TITLE>Server Configuration</TITLE>
  5. </HEAD>
  6. <BODY bgcolor=#ffffff>
  7. <SCRIPT language="JavaScript">
  8. <!--
  9. function Form_Validator(theForm)
  10. {
  11.     if (theForm.port.value == "")
  12.     {
  13.         alert("Please enter a value for the \"Server Port\" field.");
  14.         theForm.port.focus();
  15.         return (false);
  16.     }
  17.  
  18.     if (theForm.maxconns.value == "")
  19.     {
  20.         alert("Please enter a value for the \"Maximum Connections\" field.");
  21.         theForm.maxconns.focus();
  22.         return (false);
  23.     }
  24.  
  25.     if (theForm.nettimeout.value == "")
  26.     {
  27.         alert("Please enter a value for the \"Network Read Timeout\" field.");
  28.         theForm.nettimeout.focus();
  29.         return (false);
  30.     }
  31.  
  32.     if (theForm.watcherto.value == "")
  33.     {
  34.         alert("Please enter a value for the \"Watcher Timeout\" field.");
  35.         theForm.maxconns.focus();
  36.         return (false);
  37.     }
  38.  
  39.     if (theForm.homepage.value == "")
  40.     {
  41.         alert("Please enter a value for the \"Home Page\" field.");
  42.         theForm.homepage.focus();
  43.         return (false);
  44.     }
  45. }
  46. //-->
  47. </SCRIPT>
  48.  
  49. <A HREF="/sysadmin/index.stm" TARGET=_top>
  50. <IMG border=0 ALIGN=left SRC="/sysimage/system/console.gif"></A>
  51. <CENTER><FONT SIZE=6>Server Configuration</FONT>
  52. <BR>
  53. <I>Changes don't take effect until system restart.  You must restart the 
  54. server before making any other configuration changes or the changes you
  55. make below will be overwritten.</I>
  56. <HR>
  57. </CENTER>
  58. <FORM METHOD=POST ACTION="/session/sysconfig" TARGET=_top onsubmit="return Form_Validator(this)">
  59. <INPUT TYPE=hidden NAME="RCpage" VALUE="/sysadmin/index.stm">
  60.  
  61. <TABLE border=0 cellspacing=20>
  62.  
  63. <TR valign=top><TD width=20%><FONT SIZE=+1>System Administrator</FONT>
  64. <P>
  65. <SELECT NAME=sysadmin>
  66. <RCXselectuser username=RCEsysadmin>
  67. </SELECT>
  68. </TD>
  69. <TD>The System Administrator username is used to access these sysadmin folder
  70. and administrator methods.  By default, the administrator username is 'admin'.
  71. </TD></TR>
  72.  
  73. <TR valign=top><TD width=20%><FONT SIZE=+1>System Administrator IP</FONT>
  74. <P>
  75. <INPUT TYPE=text NAME="sysadminip" VALUE="<RCEsysadminip>" SIZE=30 MAXSIZE=40>
  76. </TD>
  77. <TD>If left blank, the Sambar Server System Administrator may login from
  78. any host.  A space-separated list of IP addresses may be provided
  79. (the wild-card character '*' may be used, i.e. 140.172.165.* ) to ensure 
  80. that only hosts which you plan to use for administration have access to 
  81. your System Administration tools.  For maximum security, only allow access
  82. to the "localhost" account (127.0.0.1).
  83. </TD></TR>
  84.  
  85. <TR valign=top><TD width=20%><FONT SIZE=+1>Server Port</FONT>
  86. <P>
  87. <INPUT TYPE=text NAME="port" VALUE="<RCEport>" SIZE=12 MAXSIZE=12>
  88. </TD>
  89. <TD>The TCP/IP protocol has a number of ports which are used to differentiate
  90. requests to different processes. The standard HTTP port number is 80.  You can
  91. choose any port number from 1 to 65000, however, many port numbers on your
  92. system are reserved for other applications.  Should you choose any port other 
  93. than port 80, you will have to access you homepage with the port number 
  94. appended to the URL (i.e. http://www.sambar.com:1080/ ).
  95. </TD></TR>
  96.  
  97. <TR valign=top><TD width=20%><FONT SIZE=+1>Server Security Realm</FONT>
  98. <P>
  99. <INPUT TYPE=text NAME="realm" VALUE="<RCErealm>" SIZE=20 MAXSIZE=20>
  100. </TD>
  101. <TD>The security realm of the server.  This applies to all Basic
  102. security.
  103. </TD></TR>
  104.  
  105. <TR valign=top><TD width=20%><FONT SIZE=+1>Maximum Connections</FONT>
  106. <P>
  107. <INPUT TYPE=text NAME="maxconns" VALUE="<RCEmaxconns>" SIZE=12 MAXSIZE=12>
  108. </TD>
  109. <TD>Configure the maximum simultaneous connections supported by the system.
  110. Connections differ from users in that a connection is only maintained
  111. by the HTTP server for the duration of the transaction (HTTP request).
  112. Therefore, while you might wish to support 200 simultaneous users, the
  113. number of simultaneous connections needed to support that number of users 
  114. would likely be no more than 20.
  115. </TD></TR>
  116.  
  117. <TR valign=top><TD width=20%><FONT SIZE=+1>Network Read Timeout</FONT>
  118. <P>
  119. <INPUT TYPE=text NAME="nettimeout" VALUE="<RCEnettimeout>" SIZE=12 MAXSIZE=12>
  120. </TD>
  121. <TD>Configure the maximum time, in seconds, to wait for a client connection
  122. before terminating the connection.   This period must be at least as
  123. large as the Keep-Alive duration defined for the HTTP protocol.  This
  124. duration affects HTTP, proxy and FTP clients. 
  125. </TD></TR>
  126.  
  127. <TR valign=top><TD width=20%><FONT SIZE=+1>Memory Cache</FONT>
  128. <P>
  129. <INPUT TYPE=text NAME="cachesize" VALUE="<RCEcachesize>" SIZE=12 MAXSIZE=12>
  130. </TD>
  131. <TD>Configure the size, in bytes, for in-memory caching of disk files.
  132. If zero (0) is specified, no file caching is performed.  The memory cache
  133. is used to enhance the HTTP Server performance only;  there is presently
  134. no caching mechanism for HTTP Proxy requests.  For maximum performance,
  135. this should be set to the cumulative size of all static files in your
  136. document directories.  (Note:  The FTP Server and DNS Server also use this
  137. memory cache).
  138. </TD></TR>
  139.  
  140. <TR valign=top><TD width=20%><FONT SIZE=+1>Resolve Host Names</FONT>
  141. <P>
  142. <INPUT TYPE=radio NAME="resolvedns" VALUE="true" <RCif RCEresolvedns = true> CHECKED<RCendif>>
  143. <B>Yes</B><BR>
  144. <INPUT TYPE=radio NAME="resolvedns" VALUE="false" <RCif RCEresolvedns = false> CHECKED<RCendif>>
  145. <B>No</B><BR>
  146. </TD>
  147. <TD>Configure the server to perform a DNS lookup on every host connection
  148. to resolve the hostname.  <I>WARNING: </I>This requires communicating with
  149. a DNS server which can be quite slow if not properly configured.  You
  150. should absolutely NOT turn this feature on if your DNS server is on the
  151. other side of a WAN, modem dial-up, or if you expect user heavy traffic.
  152. </TD></TR>
  153.  
  154. <TR valign=top><TD width=20%><FONT SIZE=+1>Automatic Directory Lists</FONT>
  155. <P>
  156. <INPUT TYPE=radio NAME="showdirs" VALUE="true" <RCif RCEshowdirs = true> CHECKED<RCendif>>
  157. <B>Yes</B><BR>
  158. <INPUT TYPE=radio NAME="showdirs" VALUE="false" <RCif RCEshowdirs = false> CHECKED<RCendif>>
  159. <B>No</B><BR>
  160. </TD>
  161. <TD>If no default index page is present, this boolean indicates whether
  162. the server should display the contents of the directory.
  163. </TD></TR>
  164.  
  165. <TR valign=top><TD width=20%><FONT SIZE=+1>Enforce .htaccess</FONT>
  166. <P>
  167. <INPUT TYPE=radio NAME="htaccess" VALUE="true" <RCif RCEhtaccess = true> CHECKED<RCendif>>
  168. <B>Yes</B><BR>
  169. <INPUT TYPE=radio NAME="htaccess" VALUE="false" <RCif RCEhtaccess = false> CHECKED<RCendif>>
  170. <B>No</B><BR>
  171. </TD>
  172. <TD>HTAccess Authentication was first implemented in NCSA and has since 
  173. become a de-facto standard for file-based access authentication.  See the
  174. documentation for additional information on this functionality.
  175. </TD></TR>
  176.  
  177. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI stderr</FONT>
  178. <P>
  179. <INPUT TYPE=radio NAME="cgistderr" VALUE="true" <RCif RCEcgistderr = true> CHECKED<RCendif>>
  180. <B>Yes</B><BR>
  181. <INPUT TYPE=radio NAME="cgistderr" VALUE="false" <RCif RCEcgistderr = false> CHECKED<RCendif>>
  182. <B>No</B><BR>
  183. </TD>
  184. <TD>If turned on, the CGI STDERR output is returned to the client as received
  185. from the CGI application.  In false (the default), only CGI STDOUT output is 
  186. returned to the client.
  187. </TD></TR>
  188.  
  189. <TR valign=top><TD width=20%><FONT SIZE=+1>ISAPI Debug Level</FONT>
  190. <P>
  191. <SELECT NAME=isapidbg>
  192. <OPTION <RCif RCEisapidbg = None> SELECTED<RCendif>> None
  193. <OPTION <RCif RCEisapidbg = Basic> SELECTED<RCendif>> Basic
  194. <OPTION <RCif RCEisapidbg = Call> SELECTED<RCendif>> Call
  195. <OPTION <RCif RCEisapidbg = Full> SELECTED<RCendif>> Full
  196. </SELECT>
  197. </TD>
  198. <TD>The debug level for ISAPI applications.
  199. <P>
  200. <UL>
  201. <LI><B>None</B>: No logging of any kind.
  202. <LI><B>Basic</B>: Log only ISAPI function failures.
  203. <LI><B>Call</B>: Trace all ISAPI function calls.
  204. <LI><B>Full</B>: Detailed trace of each ISAPI call (for developers only).
  205. </UL>
  206. </TD></TR>
  207.  
  208. <TR valign=top><TD width=20%><FONT SIZE=+1>Automatic Log Rotation</FONT>
  209. <P>
  210. <SELECT NAME="autolog">
  211. <OPTION VALUE="never" <RCif RCEautolog = never OR RCEautolog = false> SELECTED<RCendif>> No log rotation
  212. <OPTION VALUE="daily" <RCif RCEautolog = daily OR RCEautolog = true> SELECTED<RCendif>> Rotate Daily
  213. <OPTION VALUE="weekly" <RCif RCEautolog = weekly> SELECTED<RCendif>> Rotate Weekly
  214. <OPTION VALUE="monthly" <RCif RCEautolog = monthly> SELECTED<RCendif>> Rotate Monthly
  215. </SELECT>
  216. </TD>
  217. <TD>If turned on, the server log files will be automatically rotated 
  218. and a log report will be automatically run.  The log reports are available 
  219. through the system administration <I>Report</I> interface.  
  220. </TD></TR>
  221.  
  222. <TR valign=top><TD width=20%><FONT SIZE=+1>Home Page</FONT>
  223. <P>
  224. <INPUT TYPE=text NAME="homepage" VALUE="<RCEhomepage>" SIZE=30 MAXSIZE=30>
  225. </TD>
  226. <TD>The HTTP document served when users request the home page (/) from the server.
  227. </TD></TR>
  228.  
  229. <TR valign=top><TD width=20%><FONT SIZE=+1>Default Page</FONT>
  230. <P>
  231. <INPUT TYPE=text NAME="defpage" VALUE="<RCEdefpage>" SIZE=30 MAXSIZE=40>
  232. </TD>
  233. <TD>The HTTP page served when users request a page from a directory without
  234. specifying a path to a URL.  This can be a space separated list of file
  235. names (i.e. index.htm index.html index.shtml).
  236. </TD></TR>
  237.  
  238. <TR valign=top><TD width=20%><FONT SIZE=+1>Documents Directory</FONT>
  239. <P>
  240. <INPUT TYPE=text NAME="docsdir" VALUE="<RCEdocsdir>" SIZE=30 MAXSIZE=60>
  241. </TD>
  242. <TD>The directory in which documents are served out of.  If not preceded by
  243. a drive letter (i.e. d:\wwwdir), this directory is assumed to be relative to
  244. the installation directory of the Sambar Server (<RCErootdir>).
  245. </TD></TR>
  246.  
  247. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI Directory</FONT>
  248. <P>
  249. <INPUT TYPE=text NAME="cgidir" VALUE="<RCEcgidir>" SIZE=30 MAXSIZE=60>
  250. </TD>
  251. <TD>The directory in which cgi-bin scripts are served out of.  The
  252. CGI directory must be found in the installation directory of the 
  253. Sambar Server.  The Sambar Server CGI plug-in module can be used to
  254. execute CGI applications outside the CGI directory.
  255. </TD></TR>
  256.  
  257. <TR valign=top><TD width=20%><FONT SIZE=+1>WinCGI Directory</FONT>
  258. <P>
  259. <INPUT TYPE=text NAME="wincgidir" VALUE="<RCEwincgidir>" SIZE=30 MAXSIZE=60>
  260. </TD>
  261. <TD>The directory in which Windows CGI scripts are served out of.  The
  262. WinCGI directory must be found in the installation directory of the 
  263. Sambar Server.  The Sambar Server WinCGI plug-in module can be used to
  264. execute WinCGI applications outside the WinCGI directory.
  265. </TD></TR>
  266.  
  267. <TR valign=top><TD width=20%><FONT SIZE=+1>ISAPI Extensions</FONT>
  268. <P>
  269. <INPUT TYPE=text NAME="isapiext" VALUE="<RCEisapiext>" SIZE=30 MAXSIZE=40>
  270. </TD>
  271. <TD>This should be a space separated list of ISAPI extensions that, if found
  272. in the Documents Directory should be recognized as a DLL with
  273. ISAPI extensions executed (i.e. *.dll).  
  274. If left blank, ISAPI extension cannot be run in the Doucments
  275. Directory (with the exception of any direct execute ISAPI DLLs found
  276. in the <B>[isapi]</B> section).
  277. </TD></TR>
  278.  
  279. <TR valign=top><TD width=20%><FONT SIZE=+1>CGI Extensions</FONT>
  280. <P>
  281. <INPUT TYPE=text NAME="cgiext" VALUE="<RCEcgiext>" SIZE=30 MAXSIZE=40>
  282. </TD>
  283. <TD>This should be a space separated list of CGI extensions that, if found
  284. in the Documents Directory  should be recognized as CGI scripts and
  285. executed (i.e. *.cgi *.exe *.pl).  
  286. If left blank, only scripts found in the <I>CGI Directory</I> are 
  287. treated as CGI scripts.
  288. </TD></TR>
  289.  
  290. <TR valign=top><TD width=20%><FONT SIZE=+1>WinCGI Extensions</FONT>
  291. <P>
  292. <INPUT TYPE=text NAME="wincgiext" VALUE="<RCEwincgiext>" SIZE=30 MAXSIZE=40>
  293. </TD>
  294. <TD>This should be a space separated list of WinCGI extensions that, if found
  295. in the Documents Directory  should be recognized as CGI scripts and
  296. executed (i.e. *.cgi *.exe).  
  297. If left blank, only scripts found in the <I>WinCGI Directory</I> are 
  298. treated as WinCGI scripts.
  299. </TD></TR>
  300.  
  301. <TR valign=top><TD width=20%><FONT SIZE=+1>HTTP PUT Users</FONT>
  302. <P>
  303. <INPUT TYPE=text NAME="putusers" VALUE="<RCEputusers>" SIZE=30 MAXSIZE=60>
  304. </TD>
  305. <TD>A space separated list of server users that have permission to use
  306. the HTTP PUT method.  Directory access can be further restricted with the
  307. security interfaces.
  308. </TD></TR>
  309.  
  310. <TR valign=top><TD width=20%><FONT SIZE=+1>Server Side Includes</FONT>
  311. <P>
  312. <INPUT TYPE=text NAME="ssi" VALUE="<RCEssi>" SIZE=30 MAXSIZE=30>
  313. </TD>
  314. <TD>A space separated list of HTML file extensions that correspond with 
  315. files containing server side includes (i.e. shtml sht).  As parsing 
  316. server-side include files is expensive, it is recommended that the 
  317. extensions be limited to <I>shtml</I>.
  318. </TD></TR>
  319.  
  320. <TR valign=top><TD width=20%><FONT SIZE=+1>Prohibit Script #exec</FONT>
  321. <P>
  322. <P>
  323. <INPUT TYPE=radio NAME="noscriptexec" VALUE="true" <RCif RCEnoscriptexec = true> CHECKED<RCendif>>
  324. <B>Yes</B><BR>
  325. <INPUT TYPE=radio NAME="noscriptexec" VALUE="false" <RCif RCEnoscriptexec = false> CHECKED<RCendif>>
  326. <B>No</B><BR>
  327. </TD>
  328. <TD>Server-side include scripts may contain #exec directives that execute
  329. arbitrary server-side scripts.  If untrusted users are permitted to upload
  330. documents to your server, you should prohibit the use of this directive.
  331. </TD></TR>
  332.  
  333. <TR valign=top><TD width=20%><FONT SIZE=+1>Log Format</FONT>
  334. <P>
  335. <SELECT NAME="logformat">
  336. <OPTION VALUE="performance" <RCif RCElogformat = performance> SELECTED<RCendif>> Sambar Server Format
  337. <OPTION VALUE="combined" <RCif RCElogformat = combined> SELECTED<RCendif>> NCSA Combined Log Format
  338. <OPTION VALUE="common" <RCif RCElogformat = common> SELECTED<RCendif>> NCSA Common Log Format
  339. </SELECT>
  340. </TD>
  341. <TD>The log format options are:
  342. <UL>
  343. <LI>performance - Sambar Server performance format
  344. <LI>combined - NCSA combined log format
  345. <LI>common - NCSA Common Log Format
  346. </UL>
  347. </TD></TR>
  348.  
  349. <TR valign=top><TD width=20%><FONT SIZE=+1>Don't Log IPs</FONT>
  350. <P>
  351. <INPUT TYPE=text NAME="noip" VALUE="<RCEnoip>" SIZE=30 MAXSIZE=30>
  352. </TD>
  353. <TD>A space separated list of IP addresses not to log requests from.
  354. This list may use wild-cards to match against (i.e. <B>127.0.0.1 140.172*</B> ).
  355. </TD></TR>
  356.  
  357. <TR valign=top><TD width=20%><FONT SIZE=+1>Don't Log Requests</FONT>
  358. <P>
  359. <INPUT TYPE=text NAME="noreq" VALUE="<RCEnoreq>" SIZE=30 MAXSIZE=30>
  360. </TD>
  361. <TD>A space separated list of requests not to log.
  362. This list may use wild-cards to match against (i.e. <B>*.jpg *.gif /foo*</B> ).
  363. </TD></TR>
  364.  
  365. <TR valign=top><TD width=20%><FONT SIZE=+1>Log Buffer Size</FONT>
  366. <P>
  367. <INPUT TYPE=text NAME="logsize" VALUE="<RCElogsize>" SIZE=12 MAXSIZE=12>
  368. </TD>
  369. <TD>Configure the maximum number of lines permitted in the server log 
  370. file (server.log).  Once this number is reached for a server session,
  371. the log is reset to the first line (it operates much like a circular buffer).
  372. For an infinite log size, set the log size value to 0.
  373. </TD></TR>
  374.  
  375. <RCif RCElicense = pro>
  376. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable JavaEngine</FONT>
  377. <P>
  378. <INPUT TYPE=radio NAME="javaeng" VALUE="true" <RCif RCEusedbms = true> CHECKED<RCendif>>
  379. <B>Yes</B><BR>
  380. <INPUT TYPE=radio NAME="javaeng" VALUE="false" <RCif RCEjavaeng = false> CHECKED<RCendif>>
  381. <B>No</B><BR>
  382. </TD>
  383. <TD>Enable the Sambar Server JavaEngine module.  The JavaEngine implements
  384. the Java 1.2 Servlet interface.  See the 
  385. <A HREF=/syshelp/javaeng.htm>JavaEngine Help</A> pages for configuration
  386. help.  The Sun Java JDK must be installed prior to enabling this 
  387. functionality.
  388. </TD></TR>
  389. <RCendif>
  390.  
  391. <TR valign=top><TD width=20%><FONT SIZE=+1>Enable DBMS Usage</FONT>
  392. <P>
  393. <INPUT TYPE=radio NAME="usedbms" VALUE="true" <RCif RCEusedbms = true> CHECKED<RCendif>>
  394. <B>Yes</B><BR>
  395. <INPUT TYPE=radio NAME="usedbms" VALUE="false" <RCif RCEusedbms = false> CHECKED<RCendif>>
  396. <B>No</B><BR>
  397. </TD>
  398. <TD>Enable the DBMS interface of the Sambar Server.  The DBMS interface
  399. must be initialized to use the DBMS scripting.  Once configured, the 
  400. DBMS management interfaces become available in the System Administration
  401. console. (Note: You must have ODBC installed to enable this option.)
  402. </TD></TR>
  403.  
  404. <RCif RCElicense = pro>
  405. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as Mail Server</FONT>
  406. <P>
  407. <INPUT TYPE=radio NAME="mailserver" VALUE="true" <RCif RCEmailserver = true> CHECKED<RCendif>>
  408. <B>Yes</B><BR>
  409. <INPUT TYPE=radio NAME="mailserver" VALUE="false" <RCif RCEmailserver = false> CHECKED<RCendif>>
  410. <B>No</B><BR>
  411. </TD>
  412. <TD>Start the Mail Server when the Sambar Server is started (in addition
  413. to the HTTP server).  Additional Mail configuration parameters must be
  414. entered via the Mail Configuration forms on the System Administration
  415. pages.  User mailboxes are created using the User Management forms.  
  416. <I>WARNING: </I>  At this time, the Mail Server is not mature and 
  417. should not be used in production environments.
  418. </TD></TR>
  419. <RCendif>
  420.  
  421. <RCif RCElicense = pro>
  422. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as DNS Server</FONT>
  423. <P>
  424. <INPUT TYPE=radio NAME="dnsserver" VALUE="true" <RCif RCEdnsserver = true> CHECKED<RCendif>>
  425. <B>Yes</B><BR>
  426. <INPUT TYPE=radio NAME="dnsserver" VALUE="false" <RCif RCEdnsserver = false> CHECKED<RCendif>>
  427. <B>No</B><BR>
  428. </TD>
  429. <TD>Start the DNS Server/Proxy when the Sambar Server is started.
  430. Additional DNS configuration parameters must be entered via the 
  431. DNS Configuration forms on the System Administration pages.
  432. The functionality of this server/proxy is outlined on the
  433. <A HREF="/syshelp/dns.htm">DNS</A> system help pages.
  434. </TD></TR>
  435. <RCendif>
  436.  
  437. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as FTP Server</FONT>
  438. <P>
  439. <INPUT TYPE=radio NAME="ftpserver" VALUE="true" <RCif RCEftpserver = true> CHECKED<RCendif>>
  440. <B>Yes</B><BR>
  441. <INPUT TYPE=radio NAME="ftpserver" VALUE="false" <RCif RCEftpserver = false> CHECKED<RCendif>>
  442. <B>No</B><BR>
  443. </TD>
  444. <TD>Start the FTP Server when the Sambar Server is started (in addition
  445. to the HTTP server). <I>WARNING: </I>If your machine is already running an
  446. FTP Server, the FTP Server will fail to start if the ports of the two
  447. servers conflict.</I> 
  448. </TD></TR>
  449.  
  450. <RCif RCElicense = pro>
  451. <TR valign=top><TD width=20%><FONT SIZE=+1>Act as Telnet Server/Proxy</FONT>
  452. <P>
  453. <INPUT TYPE=radio NAME="telnetd" VALUE="true" <RCif RCEtelnetd = true> CHECKED<RCendif>>
  454. <B>Yes</B><BR>
  455. <INPUT TYPE=radio NAME="telnetd" VALUE="false" <RCif RCEtelnetd = false> CHECKED<RCendif>>
  456. <B>No</B><BR>
  457. </TD>
  458. <TD>Start the Telnet Server & Proxy when the Sambar Server is started 
  459. (in addition to the HTTP server).  See the 
  460. <A HREF="/syshelp/telnet.htm">Telnet</A> documentation for usage details.
  461. </TD></TR>
  462. <RCendif>
  463.  
  464. <TR valign=top><TD width=20%><FONT SIZE=+1>Run Watcher</FONT>
  465. <P>
  466. <INPUT TYPE=radio NAME="watcher" VALUE="true" <RCif RCEwatcher = true> CHECKED<RCendif>>
  467. <B>Yes</B><BR>
  468. <INPUT TYPE=radio NAME="watcher" VALUE="false" <RCif RCEwatcher = false> CHECKED<RCendif>>
  469. <B>No</B><BR>
  470. </TD>
  471. <TD>Start a Watcher Daemon when the server is started to monitor the
  472. WWW server and restart it in the event of a failure.  This feature <B>can 
  473. be used</B> when the Sambar Server is run as an NT Service.
  474. </TD></TR>
  475.  
  476. <TR valign=top><TD width=20%><FONT SIZE=+1>Watcher Timeout</FONT>
  477. <P>
  478. <INPUT TYPE=text NAME="watcherto" VALUE="<RCEwatcherto>" SIZE=12 MAXSIZE=12>
  479. </TD>
  480. <TD>Configure the delay in seconds between each wwwping of the server
  481. by the watcher daemon.  This time should exceed 60 seconds (300 is the default).
  482. After two consecutive connect failures, the Sambar Server will be terminated
  483. and restarted by the Watcher Daemon.
  484. </TD></TR>
  485.  
  486. </TABLE>
  487. <P>
  488. <CENTER>
  489. <HR>
  490. <INPUT TYPE=submit VALUE="Update Server Configuration">
  491. </FORM>
  492. <P>
  493. <HR>
  494. </CENTER>
  495. <BR>
  496. <A HREF="/"><IMG border=0 SRC="/sysimage/system/powerby.gif"></A>
  497. </BODY>
  498. </HTML>
  499.