Listing Thumbnail

    Mirth® Connect AMI with SSL Manager, Channel History, Message Generator

     Info
    AWS Free Tier
    Includes the SSL Manager, Channel History, and Message Generator extensions built in! Designed to handle a diverse range of healthcare data standards, Mirth® Connect unifies and simplifies communication between disparate systems, providing a robust, reliable and seamless information exchange. Supports various message formats and interface standards, including HL7, XML, CCD, DICOM, EDI, and NCPDP., and is also GDPR compliant.
    Listing Thumbnail

    Mirth® Connect AMI with SSL Manager, Channel History, Message Generator

     Info

    Overview

    Includes the SSL Manager, Channel History, and Message Generator extensions built in!

    Like an interpreter who translates foreign languages into the one you understand, Mirth® Connect by NextGen Healthcare translates message standards into the one your system understands. Whenever a "foreign" system sends you a message, Mirth Connect's integration capabilities expedite the following:

    Filtering: Mirth Connect Reads message parameters and passes the message to or stops it on its way to the transformation stage.

    Transformation: Mirth Connect Converts the incoming message standard to another standard (e.g., HL7 to XML).

    Extraction: Mirth Connect "Pulls" data from and "pushes" data to a database.

    Routing: Mirth Connect ensures messages arrive at their assigned destinations.

    These premium extensions are also included:

    SSL Manager: Create, import, export, and apply certificates to any of your inbound or outbound connections. Allows you to easily enable secure HTTPS traffic, for example.

    Channel History: Every time a channel or code template is updated, all revision history is automatically saved. You can view previous revisions and who made them, compare revisions, and even revert to a previous revision.

    Message Generator: Allows you to easily generate sample HL7 v2.x messages that you can use to test your channels with. Adds a button to the Send Message dialog, and to the transformer Message Templates pane.

    Highlights

    • Mirth Connect is a powerful yet easy-to-use integration engine, enabling your organization to quickly and affordably achieve interoperability across systems and applications.
    • Includes SSL Manager: Create, import, export, and apply certificates to any of your inbound or outbound connections. Allows you to easily enable secure HTTPS traffic, for example.

    Details

    Delivery method

    Delivery option
    64-bit (x86) Amazon Machine Image (AMI)

    Latest version

    Operating system
    AmazonLinux 2023

    Typical total price

    This estimate is based on use of the seller's recommended configuration (t3.large) in the US East (N. Virginia) Region. View pricing details

    $0.483/hour

    Pricing

    Mirth® Connect AMI with SSL Manager, Channel History, Message Generator

     Info
    Pricing is based on actual usage, with charges varying according to how much you consume. Subscriptions have no end date and may be canceled any time.
    Additional AWS infrastructure costs may apply. Use the AWS Pricing Calculator  to estimate your infrastructure costs.

    Usage costs (10)

     Info
    Instance type
    Product cost/hour
    EC2 cost/hour
    Total/hour
    t3.micro
    AWS Free Tier
    $0.40
    $0.01
    $0.41
    t3.small
    $0.40
    $0.021
    $0.421
    t3.medium
    $0.40
    $0.042
    $0.442
    t3.large
    Recommended
    $0.40
    $0.083
    $0.483
    t3.xlarge
    $0.40
    $0.166
    $0.566
    t3.2xlarge
    $0.40
    $0.333
    $0.733
    m5.large
    $0.40
    $0.096
    $0.496
    m5.xlarge
    $0.40
    $0.192
    $0.592
    m5.2xlarge
    $0.40
    $0.384
    $0.784
    m5.4xlarge
    $0.40
    $0.768
    $1.168

    Additional AWS infrastructure costs

    Type
    Cost
    EBS General Purpose SSD (gp3) volumes
    $0.08/per GB/month of provisioned storage

    Vendor refund policy

    We do not currently support refunds, but you may cancel at any time.

    Legal

    Vendor terms and conditions

    Upon subscribing to this product, you must acknowledge and agree to the terms and conditions outlined in the vendor's End User License Agreement (EULA) .

    Content disclaimer

    Vendors are responsible for their product descriptions and other product content. AWS does not warrant that vendors' product descriptions or other product content are accurate, complete, reliable, current, or error-free.

    Usage information

     Info

    Delivery details

    64-bit (x86) Amazon Machine Image (AMI)

    Amazon Machine Image (AMI)

    An AMI is a virtual image that provides the information required to launch an instance. Amazon EC2 (Elastic Compute Cloud) instances are virtual servers on which you can run your applications and workloads, offering varying combinations of CPU, memory, storage, and networking resources. You can launch as many instances from as many different AMIs as you need.

    Additional details

    Usage instructions

    Mirth Connect will be available at https://serverip:8443. The default credentials for Mirth Connect are admin/admin.

    You can SSH into the instance with the user ec2-user and your configured keypair.

    The User Guide is here .

    A local PostgreSQL 15 server is also installed, and is used by Mirth Connect by default. You can point to an external database instead if you wish, see the User Guide  for the correct configuration options, and see below for sample user data you can use during launch.

    By default, Mirth Connect is configured to use 50% of the system RAM (Java max heap size).

    For pre-configuration at AMI launch time, you can use this sample User Data script:

    #!/bin/bash
    
    # Set property in mirth.properties
    #
    # setmirthprop key value
    
    # Set startup Java virtual machine option
    #
    # If both key and value are provided, key=value will be set, overwriting any existing line with that key.
    #
    # NOTE: The JVM options already include -XX:MaxRAMPercentage=50, so the max Java heap size will be ~50% of the available system RAM. You can set a different percentage, or override it by setting -Xmx instead.
    #
    # setmirthvmopt value
    # setmirthvmopt key value
    
    # Get value from AWS Secrets Manager, and set in mirth.properties
    #
    # Example with plaintext secret (replace the region and secret-id):
    # setmirthprop database.password $(aws secretsmanager get-secret-value --region us-east-1 --secret-id dbPassword | jq -r .SecretString)
    #
    # Example with key/value secret (replace the region, secret-id, and key):
    # setmirthprop database.password $(aws secretsmanager get-secret-value --region us-east-1 --secret-id dbPassword | jq -r .SecretString | jq -r .DB_PASSWORD)
    
    # Get extension from S3 and install
    #
    # aws s3 cp s3://bucketname/extension.zip .
    # sudo unzip extension.zip -d /opt/mirthconnect/extensions/
    # sudo chown -R mirth:mirth /opt/mirthconnect/extensions/name
    
    # Get keystore from S3
    #
    # aws s3 cp s3://bucketname/keystore.jks . 
    # sudo chown mirth:mirth keystore.jks
    # sudo mv keystore.jks /opt/mirthconnect/appdata/keystore.jks
    # setmirthprop keystore.storepass STOREPASS
    # setmirthprop keystore.keypass KEYPASS
    
    # If you made any config/extension changes, restart Mirth Connect 
    # sudo systemctl restart mirthconnect
    

    Resources

    Vendor resources

    Support

    Vendor support

    Mirth Connect is an actively supported integration engine developed and maintained by NextGen Healthcare, a leading provider of healthcare technology solutions.

    AWS infrastructure support

    AWS Support is a one-on-one, fast-response support channel that is staffed 24x7x365 with experienced and technical support engineers. The service helps customers of all sizes and technical abilities to successfully utilize the products and features provided by Amazon Web Services.

    Similar products

    Customer reviews

    Ratings and reviews

     Info
    0 ratings
    5 star
    4 star
    3 star
    2 star
    1 star
    0%
    0%
    0%
    0%
    0%
    0 AWS reviews
    No customer reviews yet
    Be the first to write a review for this product.