AskOverflow.Dev

AskOverflow.Dev Logo AskOverflow.Dev Logo

AskOverflow.Dev Navigation

  • 主页
  • 系统&网络
  • Ubuntu
  • Unix
  • DBA
  • Computer
  • Coding
  • LangChain

Mobile menu

Close
  • 主页
  • 系统&网络
    • 最新
    • 热门
    • 标签
  • Ubuntu
    • 最新
    • 热门
    • 标签
  • Unix
    • 最新
    • 标签
  • DBA
    • 最新
    • 标签
  • Computer
    • 最新
    • 标签
  • Coding
    • 最新
    • 标签
主页 / server / 问题 / 399932
Accepted
JohnFx
JohnFx
Asked: 2012-06-19 13:12:34 +0800 CST2012-06-19 13:12:34 +0800 CST 2012-06-19 13:12:34 +0800 CST

All Tasks..Advanced Operations 选项从证书 MMC 管理单元中丢失

  • 772

我正在尝试按照本文中的说明创建自定义证书以在 Web 服务器上支持 SSL。

我坚持以下步骤:

点击个人-所有任务-高级操作-创建自定义请求

问题是在 Web 服务器 (Windows Server 2003 R2) 上,我在“所有任务”下没有“高级操作”选项。我在台式机 (Windows 7) 上做,但不在服务器上做。我能找到的所有文档都表明它应该在 WS-2003-R2 上可用,但事实并非如此。

注意:我正在执行此手动过程,因为我需要在 CSR 中指定备用主机名,这是您无法通过 IIS 6.0 控制台证书管理功能完成的。

有关如何显示此选项的任何建议?

ssl-certificate windows-server-2003-r2
  • 1 1 个回答
  • 2178 Views

1 个回答

  • Voted
  1. Best Answer
    Greg Askew
    2012-06-19T13:59:47+08:002012-06-19T13:59:47+08:00

    该菜单选项不是 Windows 2003 R2 的功能。

    您可能希望通过命令行来执行此操作,它更灵活。

    如何使用 Certreq.exe 实用程序创建和提交包含 SAN 的证书请求
    http://support.microsoft.com/kb/931351

    http://technet.microsoft.com/en-us/library/cc736326%28WS.10%29.aspx

    http://blogs.technet.com/b/niraj_kumar/archive/2009/02/11/how-to-request-certificate-from-third-party-ca-and-install-it-on-the-machine。 ASPX

    certreq -new request.inf certnew.req
    
    certreq -accept cert.cer
    
    C:\UTIL>certreq -v -?
    certreq.exe: 5.2.3790.1830 retail (srv03_sp1_rtm.050324-1447)
    Usage:
      CertReq -?
      CertReq [-v] -?
      CertReq [-Command] -?
    
      CertReq [-Submit] [Options] [RequestFileIn [CertFileOut [CertChainFileOut [FullResponseFileOut]]]]
        Submit a request to a Certification Authority.
        -attrib AttributeString
        -binary
        -config ConfigString
        -crl
        -rpc
    
      CertReq -Retrieve [Options] RequestId [CertFileOut [CertChainFileOut [FullResponseFileOut]]]
        Retrieve a response to a previous request from a Certification Authority.
        -binary
        -config ConfigString
        -crl
        -rpc
    
      CertReq -New [Options] [PolicyFileIn [RequestFileOut]]
        Create a new request as directed by PolicyFileIn
        -attrib AttributeString
        -binary
        -cert CertId
    
      CertReq -Accept [CertChainFileIn | FullResponseFileIn | CertFileIn]
        Accept and install a response to a previous new request.
    
      CertReq -Policy [Options] [RequestFileIn [PolicyFileIn [RequestFileOut [PKCS10FileOut]]]]
        Construct a cross certification or qualified subordination request
        from an existing CA certificate or from an existing request.
        -attrib AttributeString
        -binary
        -cert CertId
    
      CertReq -Sign [Options] [RequestFileIn [RequestFileOut]]
        Sign a cross certification or qualified subordination request.
        -binary
        -cert CertId
        -crl
    
    Description:
      -any                    - Force ICertRequest::Submit to determine encoding type
      -attrib AttributeString - Request attribute string
      -binary                 - Output files in binary format instead of Base64-encoded
      -cert CertId            - Specify signing certificate by common name,
                                serial number, or by sha-1 Key or cert hash
      -config ConfigString    - Server\CertificationAuthority config string
                                or use a single minus sign (-) as config string
      -crl                    - Include CRLs in CertChainFileOut or
                                RequestFileOut
      -f                      - Force overwrite of existing files
      -q                      - Suppress all interactive dialogs
      -rpc                    - Use RPC instead of DCOM server connection
      -v                      - Display Full Response Properties
      -?                      - Display this usage message
    
      RequestFileIn           - Base64-encoded or binary input file name:
                                PKCS10 certificate request,
                                CMS certificate request,
                                PKCS7 certificate renewal request,
                                X-509 certificate to be cross-certified, or
                                KeyGen tag format certificate request
      RequestFileOut          - Base64-encoded output file name
      PKCS10FileOut           - Base64-encoded PKCS10 output file name
      CertFileOut             - Base64-encoded X-509 file name
      CertChainFileOut        - Base64-encoded PKCS7 file name
      FullResponseFileOut     - Base64-encoded Full Response file name
      ConfigString            - Backslash separated Server Name and Certification
                                Authority Name: MachineDnsName\CAName
      AttributeString         - Colon separated Name and Value string pairs
                                Each pair separated by a backslash and "n"
                                Example: "Name1: Value1\n Name2: Value2"
      PolicyFileIn            - INF file containing a textual representation
                                of extensions used to qualify a request
    
    [NewRequest]
        Subject = "CN=..,OU=...,DC=..."
        PrivateKeyArchive = TRUE
        KeySpec = 1
        KeyLength = 1024
        RenewalCert = CertId
        SMIME = TRUE
        Exportable = TRUE
        UserProtected = TRUE
        KeyContainer = "..."
        MachineKeySet = TRUE
        Silent = TRUE
        ProviderName = "Microsoft Enhanced Cryptographic Provider v1.0"
        ProviderType = 1
        UseExistingKeySet = TRUE
        RequesterName = DOMAIN\User
        RequestType = PKCS10 | PKCS10- | PKCS7 | CMC
        KeyUsage = 0x80
        EncipherOnly = TRUE
    
    • 5

相关问题

  • RHEL/Apache ssl.conf 配置问题

  • IIS7 中的证书信任列表

  • SSL证书的区别?

  • 如何修复邮件服务器 SSL?

Sidebar

Stats

  • 问题 205573
  • 回答 270741
  • 最佳答案 135370
  • 用户 68524
  • 热门
  • 回答
  • Marko Smith

    新安装后 postgres 的默认超级用户用户名/密码是什么?

    • 5 个回答
  • Marko Smith

    SFTP 使用什么端口?

    • 6 个回答
  • Marko Smith

    命令行列出 Windows Active Directory 组中的用户?

    • 9 个回答
  • Marko Smith

    什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同?

    • 3 个回答
  • Marko Smith

    如何确定bash变量是否为空?

    • 15 个回答
  • Martin Hope
    Tom Feiner 如何按大小对 du -h 输出进行排序 2009-02-26 05:42:42 +0800 CST
  • Martin Hope
    Noah Goodrich 什么是 Pem 文件,它与其他 OpenSSL 生成的密钥文件格式有何不同? 2009-05-19 18:24:42 +0800 CST
  • Martin Hope
    Brent 如何确定bash变量是否为空? 2009-05-13 09:54:48 +0800 CST
  • Martin Hope
    cletus 您如何找到在 Windows 中打开文件的进程? 2009-05-01 16:47:16 +0800 CST

热门标签

linux nginx windows networking ubuntu domain-name-system amazon-web-services active-directory apache-2.4 ssh

Explore

  • 主页
  • 问题
    • 最新
    • 热门
  • 标签
  • 帮助

Footer

AskOverflow.Dev

关于我们

  • 关于我们
  • 联系我们

Legal Stuff

  • Privacy Policy

Language

  • Pt
  • Server
  • Unix

© 2023 AskOverflow.DEV All Rights Reserve