Windows2003下安裝Apache+php+jsp+mysql_安全設定

來源:互聯網
上載者:User
Windows2003下安裝Apache+php+jsp+mysql
一、php 

目前版本4.3 
1. 將php.ini-dist rem 為php.ini,copy to WINNT,copy php4ts.dll to WINNT/SYSTEM32,不需要再COPY或者改動其他設定。 

2.PHP.INI: 

register_globals = Off --> on 
extension=php_gd.dll 去掉注釋,啟動gd庫 
extension_dir = ./ --> c:\php\extensions 

--------------------------------- 

二、 安裝APACHE 

目前安裝版本2.0.43 
配置conf目錄下的httpd.conf檔案 

#安裝apache模組方式添加: 
LoadModule php4_module c:/php/sapi/php4apache2.dll 
AddType application/x-httpd-php .php 
AddType application/x-httpd-php .php3 
#Alias /www/ "C:/Documents and Settings/Administrator/www/" (虛擬目錄,自訂) 

#安裝cgi方式添加: 
ScriptAlias /php/ "c:/php/" 
AddType application/x-httpd-php4 .php 
AddType application/x-httpd-php4 .php3 
Action application/x-httpd-php4 "/php/php.exe" 

#增加預設啟動文件: 
DirectoryIndex index.html增加為: 
DirectoryIndex index.html index.htm index.php index.php3 

#讓apache2預設中文顯示 
#添加: 
AddLanguage zh-cn .cn 
DefaultLanguage zh-cn 
#修改: 
AddDefaultCharset ISO-8859-1 ---> AddDefaultCharset GB2312 
########################################### 

測試檔案info.php: 

<? 
phpinfo() 
?> 

在瀏覽器中輸入http://localhost/info.php 


--------------------------------------------- 

三、MySQL安裝 

1.預設安裝路徑為:c:\mysql 

2.運行 c:\mysql\bin\winmysqladmin ,輸入使用者名稱,密碼 

//如果沒有該服務:開啟“運行”輸入C:\mysql\bin\mysqld-nt.exe –install 。然後開啟“管理工具”->“服務”,找到“mysql”服務,啟動它。重啟windows2000。 

==================================================================== 
如果不需要jsp,安裝到此完成。 
下面開始安裝jsp ==================================================================== 

四、安裝相關軟體 

1、下載一個jdk(j2sdk-1_4_0-win.exe),假定安裝為c:\j2sdk。 

2、下載Resin for windows版本(2.1.6版), 
地址:http://www.caucho.com/download/,解...Resin\bin\httpd -install”,如果想將Resin服務從系統服務中刪除,在命令列執行“C:\Resin\bin\httpd - remove”。 

3、下載JDBC for MySQL 
檔案名稱為mm.mysql-2.0.14-bin.jar 
copy to C:\Resin\lib目錄(用於jsp支援mysql)。 
---------------------------- 

五、配置環境變數 

我的電腦滑鼠右鍵->屬性->進階->環境變數->系統變數欄 

1、JAVA_HOME 
點擊“建立...”,變數名欄填入“JAVA_HOME”,變數值欄填入“c:\j2sdk”,點擊“確定”。 

2、Resin_HOME 
建立一個變數“Resin_HOME”,值為“c:\resin”。 

3、CLASSPATH 
在系統變數欄找到CLASSPATH,點擊“編輯...”,如果沒有這個變數,就點“建立...”,在變數值後面加上c:\j2sdk\lib\tools.jar;c:\j2sdk\lib\dt.jar;”,點擊“確定”。 


測試服務: 
執行:http://localhost:8080 可以看到當前Resin伺服器的一些環境變數。 
--------------------------- 

六、配置Apache捆綁Resin, 

執行c:\resin\bin\setup.exe 
選中apache2服務,將自動添加C:\Apache\conf\httpd.conf檔案需要的內容。 


或者開啟C:\Apache\conf\httpd.conf,在最後添加 
LoadModule caucho_module "c:/resin/libexec/apache-2.0/mod_caucho.dll" 
<IfModule mod_caucho.c> 
CauchoConfigFile "c:/resin/conf/resin.conf" 
<Location /caucho-status> 
SetHandler caucho-status 
</Location> 
</IfModule> 

修改Resin設定檔c:\Resin\conf\Resin.conf 
找到這一行:<doc-dir>doc</doc-dir> 
改成:<doc-dir>c:/apache2/htdocs</doc-dir> 

-------------------------- 


在c:\Apache\htdocs\目錄下建立一個檔案test.jsp,內容如下: 

2+2=<=2+2> 

在瀏覽器中運行http://localhost/test.jsp 顯示:2+2=4 
說明Apache+Resin配置完成。 

------------------------- 

測試mysql串連: 


假設在MySQL資料庫種建立一個資料庫mysql,表名為user 
在c:\Apache\htdocs\目錄下建立一個檔案test-mysql.jsp,內容如下: 

<%@page language="java" import="java.sql.*" contentType="text/html; charset=gb2312" %> 
<% 
String ls_username = "root"; //資料庫使用者名稱 
String ls_password = "xxxxxx"; //密碼 
String ls_server = "localhost"; 
String ls_dbname = "mysql"; //資料庫名稱 
Connection con = null; 
try 

//註冊JDBC串連驅動 
Class.forName("org.gjt.mm.mysql.Driver"); 
//與資料庫建立串連 
con = DriverManager.getConnection("jdbc:mysql://"+ls_server+"/"+ls_dbname,ls_username,ls_password); 

catch(Exception e) 

System.out.println(e.toString()); 

%> 

<html> 
<head> 
<title>測試資料庫連接</title> 
<meta http-equiv="Content-Type" content="text/html; charset=gb2312"> 
</head> 
<body bgcolor="#FFFFFF" text="#000000"> 
<% 
int li_count = 0; 
String ls_sql = "select count(*) from user"; //資料表的名稱 

try 

Statement Stmt = con.createStatement(); 
ResultSet rs = Stmt.executeQuery(ls_sql); 
if(rs.next()) 
li_count = rs.getInt(1); 
if(rs != null) 
rs.close(); 
if(Stmt != null) 
Stmt.close(); 


catch(Exception e) 

out.println("<br>2" + e.toString() + "<br>"); 

out.println("共" + li_count +"條記錄<p>測試成功!"); 
%> 
</body> 
</html> 
<% 
try 

if(con != null) 
con.close(); 

catch(SQLException sqle) 

System.out.println(sqle.toString()); 

%> 
如果訪問test.jsp能夠訪問資料庫,就可以了。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.