[Question] ssl/openssl on linux |
20/12/2006 01:35:28 (+0700) | #1 | 31372 |
ebit
Member
|
0 |
|
|
Joined: 19/12/2006 00:02:15
Messages: 4
Offline
|
|
Có bạn nào biết về ssl không mỉnh hỏi chút?
Mình có cấu hình ssl trên tomcat5 cho web chạy trên linux nhưng khi đánh https nó không chạy, không biết nó sai ở chỗ nào.hiện đang dùng openssl.
nếu có thể hướng dẫn thì càng tôt
cám ơn nhiều!!
ebit |
|
|
|
|
[Question] Re: ssl/openssl on linux |
20/12/2006 03:59:35 (+0700) | #2 | 31406 |
|
nil
Elite Member
|
0 |
|
|
Joined: 12/12/2006 18:37:46
Messages: 271
Location: Thùng rác
Offline
|
|
|
|
[Question] Re: ssl/openssl on linux |
20/12/2006 06:14:19 (+0700) | #3 | 31449 |
ebit
Member
|
0 |
|
|
Joined: 19/12/2006 00:02:15
Messages: 4
Offline
|
|
Cám ơn bạn! mình cũng đọc nhiều tài liệu về nó,nhưng không hiểu sao không chạy dc mà đã làm đúng các steps mà tài liệu hướng dẫn |
|
|
|
|
[Question] Re: ssl/openssl on linux |
20/12/2006 06:45:38 (+0700) | #4 | 31458 |
|
conmale
Administrator
|
Joined: 07/05/2004 23:43:15
Messages: 9353
Location: down under
Offline
|
|
ebit wrote:
Cám ơn bạn! mình cũng đọc nhiều tài liệu về nó,nhưng không hiểu sao không chạy dc mà đã làm đúng các steps mà tài liệu hướng dẫn
Post lên đoạn log của catalina từ lúc tomcat khởi động đến lúc bồ truy cập đến https xem sao? Nên nhớ, theo mặc định, tomcat listen trên 8443 cho ssl connection chớ không phải là 443.
Thân mến. |
|
What bringing us together is stronger than what pulling us apart. |
|
|
|
[Question] Re: ssl/openssl on linux |
21/12/2006 04:37:13 (+0700) | #5 | 31656 |
ebit
Member
|
0 |
|
|
Joined: 19/12/2006 00:02:15
Messages: 4
Offline
|
|
Mình có làm lại ssl thi lại gặp lỗi này, mặc dù đã delete các file cũ
[root@web01 bin]# ./keytool -import -keystore /usr/java/j2sdk1.4.2_13/jre/lib/security/cacerts -file /ssl/ca/ca.pem -alias my_ca
Enter keystore password: ebit
keytool error: java.io.IOException: Keystore was tampered with, or password was incorrect
[root@web01 bin]#
không biết password was incorrect ở đây là như thế nào
không biết bạn conmale có ý kiến gì không?
cảm ơn!
ebit |
|
|
|
|
[Question] Re: ssl/openssl on linux |
21/12/2006 07:07:02 (+0700) | #6 | 31687 |
|
nil
Elite Member
|
0 |
|
|
Joined: 12/12/2006 18:37:46
Messages: 271
Location: Thùng rác
Offline
|
|
Cách này mình mới thử trên Tomcat-5.5.14 và JDK1.5.0_03:
1. Tạo file keystore:
[root@fedora bin]# ./keytool -genkey -alias xemnao -keyalg RSA -keystore xemnao
Enter keystore password: 123456
What is your first and last name?
[Unknown]: nil
What is the name of your organizational unit?
[Unknown]: CB
What is the name of your organization?
[Unknown]: IT
What is the name of your City or Locality?
[Unknown]: HN
What is the name of your State or Province?
[Unknown]:
What is the two-letter country code for this unit?
[Unknown]: VN
Is CN=nil, OU=CB, O=IT, L=HN, ST=Unknown, C=VN correct?
[no]: yes
Enter key password for <xemnao>
(RETURN if same as keystore password): 123456
Rồi sau đó cóp cái file xemnao vào thư mục conf của Tomcat.
2. Cấu hình SSL trong server.xml:
<Connector port="8443" maxHttpHeaderSize="8192"
maxThreads="150" minSpareThreads="25" maxSpareThreads="75"
enableLookups="false" disableUploadTimeout="true"
acceptCount="100" scheme="https" secure="true"
keystoreFile="/usr/local/tomcat/conf/xemnao"
keystorePass="123456"
clientAuth="false" sslProtocol="TLS" />
Khởi động Tomcat, sau đó bác thử test:
https://localhost:8443
Còn cái lỗi kia thì chờ mình... đọc tài liệu tiếp , hoặc chờ ai đó có kinh nghiệm trả lời, hì hì, mình cũng a-ma-tơ về cái này. |
|
|
|
|
|