DZone
Thanks for visiting DZone today,
Edit Profile
  • Manage Email Subscriptions
  • How to Post to DZone
  • Article Submission Guidelines
Sign Out View Profile
  • Post an Article
  • Manage My Drafts
Over 2 million developers have joined DZone.
Log In / Join
Refcards Trend Reports
Events Video Library
Refcards
Trend Reports

Events

View Events Video Library

Related

  • Beyond Extensions: Architectural Deep-Dives into File Upload Security
  • How Laravel Developers Handle Database Migrations Without Downtime
  • Migrating from Monolith to Microservices Using PHP: A Step-by-Step Guide
  • Inheritance in PHP: A Simple Guide With Examples

Trending

  • RAG Done Right: When to Use SQL, Search, and Vector Retrieval and How To Combine Them
  • Ten Years of Beam: From Google's Dataflow Paper to 4 Trillion Events at LinkedIn
  • 11 Agentic Testing Tools to Know in 2026
  • Evaluating SOC Effectiveness Using Detection Coverage and Response Metrics
  1. DZone
  2. Coding
  3. Languages
  4. Connect to RabbitMQ From PHP Over AMQPS

Connect to RabbitMQ From PHP Over AMQPS

Check out this step-by-step guide to put together the puzzle of deploying to a hosted RabbitMQ service.

By 
Lorna Mitchell user avatar
Lorna Mitchell
·
Aug. 16, 16 · Tutorial
Likes (1)
Comment
Save
Tweet
Share
10.1K Views

Join the DZone community and get the full member experience.

Join For Free

I work a lot with data these days, and queues are a common addition to my applications to move data between applications. At the moment, I'm working with RabbitMQ (and loving it!), but I wanted to deploy to a hosted RabbitMQ service and struggled to find examples of doing this over SSL — so I thought I'd share what worked for me. Disclaimer: I work for IBM and they own Compose.com, which means I have a "do anything you like!" account there.

Gather Configuration and Certs

The configuration for RabbitMQ is usually in the format of the URL — from Compose, mine looks like this:

amqps://[username]:[password]@sl-eu-lon-2-portal.2.dblayer.com:10406/lj-brilliant-rabbitmq


The PHP library expects to have six separate parameters however:

  • Host
  • Port
  • Username
  • Password
  • Vhost (e.g. "lj-brilliant-rabbitmq")
  • Ssl_options

We also need to get the SSL pieces in order. Compose uses an SSL cert, so I have saved that to a file called certrabbit in the same directory as my PHP script.

Now The PHP Code

For this, I'm using the php-amqplib package, installed with Composer.

I don't know why the PHP library doesn't like to connect by URL when all the other languages seem to expect this, but all we need to do to use AMQPS instead of AMQP is to use the AMQPSSLConnection instead of the AMQPStreamConnection when we connect to RabbitMQ — and then include the SSL configuration.

Here's the code from my application that allows me to connect:

<?php
// include the composer autoloader
require_once __DIR__ . '/vendor/autoload.php';
use PhpAmqpLib\Connection\AMQPSSLConnection;
use PhpAmqpLib\Message\AMQPMessage;

// uncomment this if you need to inspect all AMQP traffic (it's noisy!)
// define('AMQP_DEBUG', true);

$ssl_options = array(
  'capath' => '/etc/ssl/certs',
  'cafile' => './certrabbit', // my downloaded cert file
  'verify_peer' => true,
);

$connection = new AMQPSSLConnection(
  'sl-eu-lon-2-portal.2.dblayer.com',
  10406,
  'lorna',
  'secret',
  'lj-brilliant-rabbitmq',
  $ssl_options);

$channel = $connection->channel();



If successful, you should be able to inspect the $channel and see that it's a PhpAmqpLib\Channel\AMQPChannel object that you can go ahead and work with.

For languages that are not PHP, you can usually supply the URL with the amqps:// prefix but there's also this article on how to connect from a bunch of popular libs.

PHP

Published at DZone with permission of Lorna Mitchell. See the original article here.

Opinions expressed by DZone contributors are their own.

Related

  • Beyond Extensions: Architectural Deep-Dives into File Upload Security
  • How Laravel Developers Handle Database Migrations Without Downtime
  • Migrating from Monolith to Microservices Using PHP: A Step-by-Step Guide
  • Inheritance in PHP: A Simple Guide With Examples

Partner Resources

×

Comments

The likes didn't load as expected. Please refresh the page and try again.

  • RSS
  • X
  • Facebook

ABOUT US

  • About DZone
  • Support and feedback
  • Community research

ADVERTISE

  • Advertise with DZone

CONTRIBUTE ON DZONE

  • Article Submission Guidelines
  • Become a Contributor
  • Core Program
  • Visit the Writers' Zone

LEGAL

  • Terms of Service
  • Privacy Policy

CONTACT US

  • 3343 Perimeter Hill Drive
  • Suite 215
  • Nashville, TN 37211
  • [email protected]

Let's be friends:

  • RSS
  • X
  • Facebook