星期六, 12月 30, 2006

Dr. Jie Wu

Dr. Jie Wu
Distinguished Professor

Department of Computer Science and Engineering

Florida Atlantic University
Boca Raton, FL 33431Wireless Networks and Mobile Computing

星期日, 11月 12, 2006

Drupal Taiwan | 繁體中文支援站

Drupal Taiwan | 繁體中文支援站

Drupal Taiwan是 Drupal 的繁體中文支援站。Drupal是一套開放源碼的內容管理平台,擁有多種實用的功能,可以用來建置從個人網誌到大型網路社群等各種類型的網站。

星期日, 1月 01, 2006

SSL/TLS Strong Encryption: FAQ

SSL/TLS Strong Encryption: FAQ
How can I get rid of the pass-phrase dialog at Apache startup time?
The reason this dialog pops up at startup and every re-start is that the RSA private key inside your server.key file is stored in encrypted format for security reasons. The pass-phrase is needed decrypt this file, so it can be read and parsed. Removing the pass-phrase removes a layer of security from your server - proceed with caution!

Remove the encryption from the RSA private key (while keeping a backup copy of the original file):

$ cp server.key server.key.org
$ openssl rsa -in server.key.org -out server.key


Make sure the server.key file is only readable by root:

$ chmod 400 server.key


Now server.key contains an unencrypted copy of the key. If you point your server at this file, it will not prompt you for a pass-phrase. HOWEVER, if anyone gets this key they will be able to impersonate you on the net. PLEASE make sure that the permissions on this file are such that only root or the web server user can read it (preferably get your web server to start as root but run as another user, and have the key readable only by root).

As an alternative approach you can use the ``SSLPassPhraseDialog exec:/path/to/program'' facility. Bear in mind that this is neither more nor less secure, of course.

解決「USB不斷斷開和重新連接」

4種方案解決「USB不斷斷開和重新連接」   當您在使用USB執行任務時,您的電腦卻突然出現USB不斷斷開和重新連接。這很讓人頭疼。因為它最終導致您無法訪問USB裝置的任何資料。 在開始解決方案之前,我們將首先檢查USB裝置在其他計算機系統上是否工作正常?答案顯而易見,在其...