由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - 怎么生成Certificate Signing Request (CSR)?
相关主题
有人试过把HTTPS的certificate从SHA1转换到SHA2吗?一个练手的ios app
能不能这样存密码SSL Session的问题
RESTful设计几个问题[合集] perl 下面 TLS/SSL IMAP module??
怎么在源代码内加入不可删除的版权信息?借东风问一下:用JS可以cross domain接受SSL certificate吗?
GIT的rebase和merge到底有啥不同?全球最受欢迎的网站使用的哪些编程语言?
没有home的user怎么实现无密码访问?我终于开源过了
怎么找到hash和原文的关系?请教魏老师一个协议设计的基本功问题
[bssd]我现在有个难题Scala 1-star, would not program again
相关话题的讨论汇总
话题: csr话题: name话题: request
进入Programming版参与讨论
1 (共1页)
s****y
发帖数: 503
1
我们服务器需要从SHA1升级到SHA2,好像先要得到Certificate Signing Request (CSR
),我没有服务器的access,是不是CSR可以在我的本地生成?我有Macbook,能用Mac生
成CSR吗?
a9
发帖数: 21638
2
可以。
看openssl文档

CSR

【在 s****y 的大作中提到】
: 我们服务器需要从SHA1升级到SHA2,好像先要得到Certificate Signing Request (CSR
: ),我没有服务器的access,是不是CSR可以在我的本地生成?我有Macbook,能用Mac生
: 成CSR吗?

ET
发帖数: 10701
3
spotlight - > search "keychain" -> open Keychain Access app ->Certificate
Assistant ->Request a certificate from authority

CSR

【在 s****y 的大作中提到】
: 我们服务器需要从SHA1升级到SHA2,好像先要得到Certificate Signing Request (CSR
: ),我没有服务器的access,是不是CSR可以在我的本地生成?我有Macbook,能用Mac生
: 成CSR吗?

k***5
发帖数: 583
4
https://support.godaddy.com/help/article/5269/generating-a-certificate-
signing-request-csr-apache-2-x
Log in to your server's terminal (SSH).
At the prompt, type the following command:
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out
yourdomain.csr
Replace yourdomain with the domain name you're securing. For example, if
your domain name is coolexample.com, you would type coolexample.key and
coolexample.csr.
Enter the requested information:
Common Name: The fully-qualified domain name, or URL, you're
securing.
If you are requesting a Wildcard certificate, add an asterisk (*) to
the left of the common name where you want the wildcard, for example *.
coolexample.com.
Organization: The legally-registered name for your business. If you
are enrolling as an individual, enter the certificate requestor's name.
Organization Unit: If applicable, enter the DBA (doing business as)
name.
City or Locality: Name of the city where your organization is
registered/located. Do not abbreviate.
State or Province: Name of the state or province where your
organization is located. Do not abbreviate.
Country: The two-letter International Organization for
Standardization (ISO) format country code for where your organization is
legally registered.
If you do not want to enter a password for this SSL, you can leave
the Passphrase field blank. However, please understand there might be
additional risks.
Open the CSR in a text editor and copy all of the text.
Paste the full CSR into the SSL enrollment form in your account.
1 (共1页)
进入Programming版参与讨论
相关主题
Scala 1-star, would not program againGIT的rebase和merge到底有啥不同?
话说openssl这么多年了,一直都是带病运行没有home的user怎么实现无密码访问?
如何减少libcurl内存的使用怎么找到hash和原文的关系?
老魏 机器已经上了[bssd]我现在有个难题
有人试过把HTTPS的certificate从SHA1转换到SHA2吗?一个练手的ios app
能不能这样存密码SSL Session的问题
RESTful设计几个问题[合集] perl 下面 TLS/SSL IMAP module??
怎么在源代码内加入不可删除的版权信息?借东风问一下:用JS可以cross domain接受SSL certificate吗?
相关话题的讨论汇总
话题: csr话题: name话题: request