LogoLogo
  • 🖐️Welcome Aboard!
  • 📖Information
    • What is Autom Mate?
    • What is Autom?
    • Features of Autom Mate
    • Architecture of Autom Mate
  • 🤓Learn Autom Basics
  • 📚Libraries
    • Integration
      • Active Directory
      • AFAS
      • Autom Mate
      • Azure Active Directory
      • Azure DevOps
      • BambooHR
      • ChatGPT
      • ConnectWise
      • Database
      • Desktop Actions
      • EasyVista
      • Email
      • Exchange Web Server
      • Exact Online
      • Excel
      • Freshdesk
      • Freshservice
      • Ftp-Sftp
      • GitLab
      • Google Drive
      • Google Workspace
      • HaloITSM
      • Hubspot
      • Intune
      • Ivanti Service Manager
      • Jenkins
      • Jira Confluence
      • Jira Service Management
      • Jira Software
      • Lakeside
      • Lansweeper
      • ME ServiceDesk Plus
      • Microsoft Outlook Calendar
      • Microsoft SharePoint
      • Microsoft Teams
      • My ChatGPT
      • OCR
      • PDF
      • PowerShell
      • Python
      • RESTful Web Service
      • Salesforce
      • ServiceDesk Plus Cloud
      • ServiceNow
      • Slack
      • SolarWinds
      • Stripe
      • TOPdesk
      • Twilio
      • Twitch
      • VMware
      • WhatsApp
      • Word
      • X
      • Xurrent
    • Transform
      • Advanced Actions
      • Array
      • Base64
      • Condition
      • Cryptography
      • CSV
      • Data Table
      • Date
      • File
      • Folder
      • Number
      • Object
      • Repeatable
      • SSH
      • String
      • Text
    • Utility
      • Display Message
      • Grouping
      • Mate DB
      • Mate Drive
      • Time Management
    • Agentic AI (Beta Version)
      • Open AI (Beta Version)
  • 🎇Autom Features
    • Variables
    • Triggers
    • Data Manager
    • Debug
    • Stop Action
    • Function
    • Error Handling and Exception Management
    • Development Mode ( Dev Mode )
    • Business Impact Estimator
  • 🛰️Product Features
    • Dashboard
      • Dashboard
      • Monitoring
      • Alerts
    • Store
      • Autom Store
      • Library Store
    • My Environment
      • Mate Agent
      • Automs
      • Libraries
    • Management
      • User Management
        • Users
        • Roles
        • Forgot Password
      • Vault
      • Webhook & API
      • Alert Management
      • Queue
    • Create Autom
    • Settings
    • Time Zone Management in Autom Mate
  • 💾Installation Setup
    • System Requirements and Ports Configuration
    • Autom Center Installation
      • Autom Center Installation
      • Autom Center Update
    • Mate Agent Installation
      • Mate Agent Installation
      • Mate Agent Update
    • App Installations
      • MS Teams ChatBot Installation
    • Full Chain PFX File Creation Guide
  • 📔Release Notes
    • Amsterdam Edition
      • Amsterdam 3.2.9
      • Amsterdam 3.3.0
    • Boston Edition
      • Boston 4.0.0
      • Boston 4.1.0
      • Boston 4.2.0
      • Boston 4.3.0
        • Boston 4.3.1
        • Boston 4.3.2
        • Boston 4.3.3
        • Boston 4.3.4
        • Boston 4.3.5
        • Boston 4.3.6
        • Boston 4.3.7
      • Boston 4.4.0
  • 🎓Academy
    • 🎓Autom Mate Academy: Basics of Autom Mate
    • 🎓Mastering Automation with Autom Mate: From Workflow Creation
    • 🎓The Ultimate Autom Mate: Teams & Smart Integrations
  • 👔Autom Store & Use Cases
    • 🛒Autom Store Use Cases
    • 🖥️Use Cases
      • How to Create Bidirectional Connection Between JIRA and Xurrent to Open Requests or Tickets
      • Employee Onboarding Process Automation Using Autom Mate
  • ❓FAQ
    • ⚙️General Functionality
    • 🧩Integration Capabilities
    • Data Management and Validation
    • ⁉️Error Handling and Workflow Management
    • Automation Use Cases
    • Connectors and Triggers
    • Custom GPT Models
Powered by GitBook
On this page
  • 1. CSR (Certificate Signing Request)
  • 2. Submitting the CSR File to the GlobalSign Certificate Authority (CA)
  • 3. Get Certificates
  • 4. Merge Certificates
  • 5. Creating the PFX File
  • 6. Verifying the PFX File

Was this helpful?

  1. Installation Setup

Full Chain PFX File Creation Guide

Offers a guide for creating PFX files, which are used for secure communications within the platform.

1. CSR (Certificate Signing Request)

First, you need to create a CSR file. You can use OpenSSL for this process. The following command creates the CSR and private key using a 2048-bit RSA key:

Linux Bash Code

openssl req -new -newkey rsa:2048 -nodes -keyout privatekey.key -out myrequest.csr

Windows CMD Code

  1. OpenSSLInstall (For example, Win64 OpenSSL).

  2. Open Command Prompt and run the following command:

Cmd Code

openssl req -new -newkey rsa:2048 -nodes -keyout privatekey.key -out myrequest.csr

After running the command, you will be asked to enter your certificate information as follows:

PlainText

Country Name (2 letter code) [OTHER
State or Province Name (full name) [Some-State]:Istanbul
Locality Name (eg, city) []:Istanbul
Organization Name (eg, company) [Internet Widgits Pty Ltd]:My Company
Organizational Unit Name (eg, section) []:IT Department
Common Name (e.g. server FQDN or YOUR name) []:www.example.com
Email Address []:[email protected]


Please enter the following 'extra' attributes
to be sent with your certificate request
A challenge password []:
An optional company name []:

Once these steps are completed, `privatekey.keyA private key file named ` and `myrequest.csrA CSR file named ` will be created.


2. Submitting the CSR File to the GlobalSign Certificate Authority (CA)

Send the CSR file you created to GlobalSign. GlobalSign will provide you with a certificate using your CSR file. After completing the GlobalSign checking processes, it will provide you with the necessary certificates.


3. Get Certificates

GlobalSign will provide you with the following files:

  • Your own certificate (example.com.crt)

  • Intermediate certificates (intermediate1.crt, intermediate2.crt)

  • Root certificate (root.crt)


4. Merge Certificates

You need to combine all certificates into a single file. This can be done using the `cat` command:

Linux Bash Code

cat example.com.crt intermediate1.crt intermediate2.crt root.crt > fullchain.crt

This command returns all certificates to `fullchain.crt Combines into a file named `.

Windows

  1. Open Notepad and follow these steps:

    • example.com.crt copy and paste its contents.

    • intermediate1.crt, intermediate2.crt ve root.crt copy and paste its contents sequentially.

    • Combine all content fullchain.crt Save as.

  2. Alternatively, WindowsPowerShell You can combine files using:

Powershell

Get-Content example.com.crt, intermediate1.crt, intermediate2.crt, root.crt | Set-Content fullchain.crt

5. Creating the PFX File

Using OpenSSL, create the PFX file using the private key and the merged certificate file:

Linux Bash Code

openssl pkcs12 -export -out fullchain.pfx -inkey privatekey.key -in fullchain.crt -certfile intermediate1.crt -certfile intermediate2.crt -certfile root.crt

Windows

Open Command Prompt and run the following command:

Cmd

openssl pkcs12 -export -out fullchain.pfx -inkey privatekey.key -in fullchain.crt -certfile intermediate1.crt -certfile intermediate2.crt -certfile root.crt

This command is `fullchain.pfx Creates a PFX file named `. You will be asked to enter a password when creating the PFX file. This password is used to secure the PFX file.


6. Verifying the PFX File

You can use the following command to verify that the PFX file you created was created correctly:

Linux Bash Code

openssl pkcs12 -info -in fullchain.pfx

Windows Cmd Code

Open Command Prompt and run the following command:

Cmd

openssl pkcs12 -info -in fullchain.pfx

This command displays the contents and information of the PFX file.

PreviousMS Teams ChatBot InstallationNextRelease Notes

Last updated 6 months ago

Was this helpful?

💾
Page cover image