Home > php教程 > php手册 > 二、记一次失败的 CAS 搭建 之 证书配置

二、记一次失败的 CAS 搭建 之 证书配置

WBOY
Release: 2016-06-13 09:32:52
Original
838 people have browsed it

=========================================================================================================

Setp2:SSL证书生成::参考:http://www.open-open.com/lib/view/open1392018954614.html

=========================================================================================================

1、生成keypair

keytool -genkeypair -alias cas -keyalg RSA -storepass changeit
Copy after login

默认情况下,生成的 keystore 就是用户目录下的 .keystore 文件。对于 Win8 而言,默认的用户目录为 C:\Users\用户名。

生成keypair的时候,信息随便输入即可,最后选择“y”,然后直接回车,不要输入密码

2、从 keystore 中导出证书

keytool -exportcert -alias cas -file cas.crt -storepass changeit
Copy after login

3、导入证书

keytool -importcert -alias cas -file cas.crt -keystore "%JAVA_HOME%\jre\lib\security\cacerts" -storepass changeit -noprompt
Copy after login

4、双击执行运行证书!

Related labels:
cas
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template