How can i config properly RabbitMQ, messenger and amqp on symfony 5.2 without use docker_compose.yml?

3.1k Views Asked by At

I want to submit a form with async method using messenger component and rabbitmq. After submitting this form, an email is sent to me. But when i implement rabbitmq it does not work. I have surely a problem with configuration. Maybe i have to add something in services.yml ? I dont want to use docker.

    transports:
        # https://symfony.com/doc/current/messenger.html#transport-configuration
        async : 
            dsn: '%env(MESSENGER_TRANSPORT_DSN)%'
            options:
                auto_setup: false
                use_notify: true
                check_delayed_interval: 60000
        # failed: 'doctrine://default?queue_name=failed'
        # sync: 'sync://'

    routing:
        # Route your messages to the transports
        'App\Message\MailNotification': async

.env file with amqp because i want to use rabbitmq

MESSENGER_TRANSPORT_DSN=amqp://guest:guest@localhost:5672/%2f/messages

Output give me this result when i submit form

Could not connect to the AMQP server. Please verify the provided DSN. ({"host":"localhost","port":5672,"vhost":"/","auto_setup":false,"use_notify":true,"check_delayed_interval":60000,"login":"guest","password":"********"}).

In addition, Rabbitmq UI appears on webprofiler DOWN, it does not turn to UP. I can't figure out. Help me please.

0

There are 0 best solutions below