熱點推薦:
您现在的位置: 電腦知識網 >> 編程 >> Oracle >> 正文

ORACLE入門之APACHE WEB SERVER管理

2022-06-13   來源: Oracle 

  查看當前UNIX環境下有無運行Apache Web Server
  在終端控制台上運行#ps ef|grep httpd
  如果運行了會列出一些包含路徑信息的進程去這個路徑下找即可知服務器的配置
  啟動和關閉Apache Web Server
  在運行Apache/bin路徑下找到apachectl命令
  #apachectl start
  #apachectl stop
  參數介紹
  a知道WEB的管理目錄位置
  找到: ServerRoot //
  b知道WEB的根目錄位置
  找到: DocumentRoot //
  c知道WEB各虛擬路徑的映射
  Alias /icons/ /opt/www/icons
  
  ScriptAlias /cgibin/ opt/www/cgibin
  
  d支持SSI
  在
  增加Option +Includes +ExecCGI
  (其它參數說明Indexes 容許路徑下的目錄浏覽         FollowSymlinks 容許使用符號連接連到別處
  MultiViews 找相似的文件名)
  去掉加注釋的以下語句
  AddType text/html shtml
  AddHander serverparsed shtml
  (如果想使htm文件支持SSI增加以下語句
  AddType text/
  AddHander
  )
  
  支持CGI
  去掉加注釋的以下語句
  AddHandler cgiscript pl
  AddHander cgiscript cgi
  
  初始的文件名
  DirectoryIndex  l
  (如果想增加別的類別文件只需在這後面增加或indexphp即可)
  性能優化
  MaxKeepAliveRequests
  MaxClient
   
  
  
  

From:http://tw.wingwit.com/Article/program/Oracle/201311/17171.html
    推薦文章
    Copyright © 2005-2022 電腦知識網 Computer Knowledge   All rights reserved.