C/C++ SDK の SSL の有効化
C/C++ エージェントで SSL を有効にするには、次の手順を実行します。
Gain operational intelligence by collecting, indexing, and visualizing data using a powerful on-premises engine for actionable insights.
Release NotesCollect, index, and visualize your data in the cloud for better operational intelligence.
Release NotesDiscover, share, and install apps and add-ons with the Splunk community on Splunkbase. Publish your own or add others to your Splunk platform instance.
Gain operational intelligence by collecting, indexing, and visualizing data using a powerful on-premises engine for actionable insights.
Release NotesStreamline your security operations with a SOAR system that integrates orchestration, playbook automation, and case management to enhance threat response.
Release NotesPrevent disruptions and optimize operations when you monitor and analyze your IT service with predictive analytics and machine learning.
Release NotesCollect, index, and visualize your data in the cloud for better operational intelligence.
Release NotesGain end-to-end visibility, troubleshoot in real-time, and optimize performance across infrastructure, applications, and user interfaces.
Release NotesMonitor business application performance for cloud environments and IT infrastructure.
Release NotesMonitor business application performance for cloud environments and IT infrastructure.
Release NotesAn on-premises solution using AppDynamics On-Premises or Appdynamics Virtual Appliance (self hosted).
Release NotesBuild and deliver apps and integrations with SDKs, APIs and tools.
Access and share apps and add-ons with the Splunk community on Splunkbase. Publish your own apps, or download and install others on your Splunk platform instance.
Explore information on best practices, connect with community, or contact support.
C/C++ エージェントで SSL を有効にするには、次の手順を実行します。
const int CONTROLLER_USE_SSL = 1に設定します。
appd_config_set_controller_use_ssl(cfg, CONTROLLER_USE_SSL);
openssl s_client -connect <hostname>:<port> -showcerts < /dev/null | openssl x509 > cert.pem
appd_config_set_controller_certificate_file(cfg, <Path to Cert File>);
CommonName を確認できます。
openssl s_client -connect <CONTROLLER_HOST>:<CONTROLLER_PORT> -showcerts
CommonName は BEGIN CERTIFICATE 行の上に表示されます。証明書の CommonName はコントローラのホスト名と一致する必要があります。一致しない場合は、コントローラで証明書を再構成する必要があります。