python qpid-proton cannot access solace broker after rename Message VPN

Options
Ting_
Ting_ Member Posts: 3
edited March 20 in PubSub+ Event Broker #1
Hi everyone,

I have some problems with connecting to solace with qpid-proton python.

I connected to Solace that isn’t running on my local machine but other server, and I could send the message into the queue with the subscription topic and also receive the message from the queue successfully for a while.
All I specified was the ip, port(amqp service), and the topic or queue that I’m interested in in my qpid-proton python project.
However, after the message VPN is renamed, I couldn’t connect to it anymore. The rest of the configuration of the message VPN stayed the same as the original setup. The broker only has one message VPN. My original thought was like it should be fine for renaming the VPN cause I don’t use it in my connection setting.
This is the url that my program tried to connect:

Url('amqp://<ip>:<port>/<queue_name>')

and I saw:

[ERROR] <_handlers on_transport_error 708> proton.pythonio: Connection refused to all addresses
[INFO] <_reactor on_transport_closed 1117> Disconnected will try to reconnect after 10.0 seconds

If only the VPN name changed, what would be the correct behavior toward my connection?

I also check if it’s the problem of firewall, but when I `nc -vz <ip> <port>`, it showed this information

Ncat : Version 7.70
Ncat: Connected to <ip>:<port>
Ncat: 0 bytes sent, 0 bytes received in 0.01 seconds.

so I don’t think firewall is the problem!

What do you suggest me to do to diagnose this problem?
Tagged:

Answers

  • amackenzie
    amackenzie Member, Employee Posts: 260 Solace Employee
    Options

    AMQP doesn't have the concept of message VPN, so each VPN will have a different AMQP port. Did you change the port to the AMQP port for the new message VPN?

  • Ting_
    Ting_ Member Posts: 3
    Options

    Hi amackenzie,

    Thank you for your reply. It's good to be sure that AMQP doesn't have the concept of message VPN.
    It seems like the whole problem resolved itself after restarting the application several times.
    Thank you!

  • Aaron
    Aaron Member, Administrator, Moderator, Employee Posts: 531 admin
    Options

    Hi @Ting_ , how did you "rename a VPN"..?? Because Solace doesn't support that. Did you create a new Message VPN and copy all of the configuration over to it? Or..?

  • Ting_
    Ting_ Member Posts: 3
    Options

    Hi @Aaron
    I was actually notified by others that they were going to "rename the message VPN", so I wasn't sure how they did it.