本文簡要介紹 python 語言中 arcgis.gis.admin.SSLCertificates.import_certificate
的用法。
用法:
import_certificate(certificate, alias, norestart=False)
返回:
布爾值
此操作將證書頒發機構 (CA) 的根證書和中間證書導入 key 庫。要創建生產質量CA-signed 證書,您需要將 CA 證書添加到使 SSL 機製能夠信任 CA(以及它已簽名的證書)的 key 庫中。雖然大多數流行的 CA 證書已經在 key 庫中可用,但如果您有自定義 CA 或特定的中間證書,則可以使用此操作。
Parameter
Description
certificate
必需的字符串。證書文件的文件位置
alias
必需的字符串。證書名稱
norestart
可選的布爾值。確定在導入證書後是否應阻止門戶重新啟動。默認情況下,這是 false,門戶將重新啟動。在 10.6 中添加。
USAGE: Import a trusted CA or Intermediate SSL Certificate into Portal Admin API from arcgis.gis import GIS gis = GIS("https://yourportal.com/portal", "portaladmin", "password") # Get the SSL Certificate class sslmgr = gis.admin.security.ssl # Load a trust CA certificate and restart Portal resp = sslmgr.import_certificate(r'c:\temp\myTrustedCA.crt', 'myroot', norestart=False) print(resp) # Output True
相關用法
- Python ArcGIS SSLCertificates.list用法及代碼示例
- Python ArcGIS SSLCertificates.get用法及代碼示例
- Python ArcGIS Site.delete用法及代碼示例
- Python ArcGIS StoryMap.move用法及代碼示例
- Python ArcGIS Site.export_site用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.update_tiles用法及代碼示例
- Python ArcGIS SiteManager.get用法及代碼示例
- Python ArcGIS SceneLayer用法及代碼示例
- Python ArcGIS Site.update_theme用法及代碼示例
- Python ArcGIS System.index_status用法及代碼示例
- Python ArcGIS StreamLayer用法及代碼示例
- Python ArcGIS Site.update_layout用法及代碼示例
- Python ArcGIS StoryMap.theme用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.import_tiles用法及代碼示例
- Python ArcGIS SavedSearchesManager.update用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.delete_tiles用法及代碼示例
- Python ArcGIS StoryMap.add用法及代碼示例
- Python ArcGIS Server用法及代碼示例
- Python ArcGIS StoryMap.credits用法及代碼示例
- Python ArcGIS StoryMap.cover用法及代碼示例
- Python ArcGIS Sidecar用法及代碼示例
- Python ArcGIS StoryMap.get用法及代碼示例
- Python arcgis.mapping.SceneLayerManager.edit_tile_service用法及代碼示例
- Python ArcGIS SiteManager.get_by_domain用法及代碼示例
- Python ArcGIS SiteManager.add用法及代碼示例
注:本文由純淨天空篩選整理自arcgis.com大神的英文原創作品 arcgis.gis.admin.SSLCertificates.import_certificate。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。