2016-07-08 4 views
1

Я установил Apache Apollo и успешно его запускал. Я могу получить доступ к его веб-панели на http://127.0.0.1:61680/.Apache Apollo Connection Refused

Я хочу подключиться к этому через STOMP. Я использую библиотеку [StompKit] [1], чтобы сделать это.

private let host: String = "127.0.0.1" 
private let port: UInt = 61680 

private var client: STOMPClient! 

override func viewDidLoad() { 
    super.viewDidLoad() 

    client = STOMPClient(host: host, port: port) 
    connect() 
} 

Подключение завершается с ошибкой Connection отказался.

Это файл apollo.xml.

<?xml version="1.0" encoding="UTF-8" standalone="yes"?> 
<!-- 
    Licensed to the Apache Software Foundation (ASF) under one or more 
    contributor license agreements. See the NOTICE file distributed with 
    this work for additional information regarding copyright ownership. 
    The ASF licenses this file to You under the Apache License, Version 
    2.0 (the "License"); you may not use this file except in compliance 
    with the License. You may obtain a copy of the License at 
    http://www.apache.org/licenses/LICENSE-2.0 Unless required by 
    applicable law or agreed to in writing, software distributed under 
    the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES 
    OR CONDITIONS OF ANY KIND, either express or implied. See the 
    License for the specific language governing permissions and 
    limitations under the License. 
--> 

<!-- 
    For more information on how configure this file please 
    reference: 

    http://activemq.apache.org/apollo/versions/1.7.1/website/documentation/user-manual.html 
    --> 
<broker xmlns="http://activemq.apache.org/schema/activemq/apollo"> 

    <notes> 
    The default configuration with tls/ssl enabled. 
    </notes> 

    <log_category console="console" security="security" connection="connection" audit="audit"/> 


    <authentication domain="apollo"/> 
    <!-- Give admins full access --> 
    <access_rule allow="admins" action="*"/> 
    <access_rule allow="*" action="connect" kind="connector"/> 


    <virtual_host id="mybroker"> 
    <!-- 
     You should add all the host names that this virtual host is known as 
     to properly support the STOMP 1.1 virtual host feature. 
     --> 
    <host_name>mybroker</host_name> 
    <host_name>localhost</host_name> 
    <host_name>127.0.0.1</host_name> 

    <!-- Uncomment to disable security for the virtual host --> 
    <!-- <authentication enabled="false"/> --> 

    <!-- Uncomment to disable security for the virtual host --> 
    <!-- <authentication enabled="false"/> --> 
    <access_rule allow="users" action="connect create destroy send receive consume"/> 


    <!-- You can delete this element if you want to disable persistence for this virtual host --> 
    <leveldb_store directory="${apollo.base}/data"/> 


    </virtual_host> 

    <web_admin bind="http://127.0.0.1:61680"/> 
    <web_admin bind="https://127.0.0.1:61681"/> 

    <connector id="tcp" bind="tcp://0.0.0.0:61613" connection_limit="2000"/> 
    <connector id="tls" bind="tls://0.0.0.0:61614" connection_limit="2000"/> 
    <connector id="ws" bind="ws://0.0.0.0:61623" connection_limit="2000"/> 
    <connector id="wss" bind="wss://0.0.0.0:61624" connection_limit="2000"/> 

    <key_storage file="${apollo.base}/etc/keystore" password="password" key_password="password"/> 

</broker> 

Покушение 1

Только ответ я мог бы найти в этой связи является [это] [2] (Хотя это для MQTT). Во всяком случае, я изменил файл apollo.xml, добавив строку authentication.

<virtual_host id="mybroker"> 
    <authentication enabled="false"/> 
... 

Но это ничего не изменило.

Попытка 2:

Веб-панель имеет логин имя пользователя/пароль. Поэтому я попробовал другой метод StompKit.

client.connectWithLogin("admin", passcode: "password") { connectedFrame, error in 
    if let error = error { 
     print("Error during connecting: \(error.localizedDescription)") 
    } else { 
     print("Connected!") 
    } 
} 

По-прежнему сохраняется ошибка.

Что я здесь делаю неправильно?

ответ

0

По умолчанию клиенты STOMP могут подключаться к Apollo на порту . Порт 61680 предназначен для интерфейса веб-администратора.

Ваша конфигурация содержит

<connector id="tcp" bind="tcp://0.0.0.0:61613" connection_limit="2000"/> 

поэтому я полагаю, что

private let port: UInt = 61613 

в коде должны решить проблему


Примечание: Вы можете использовать NetStat или TCPView, чтобы убедиться, что порт 61613 открыт

+0

Я изменил номер порта на '61613', но все же получил ту же ошибку. Затем я сменил хост на «0.0.0.0» и попытался снова, но все равно не повезло. – Isuru

 Смежные вопросы

  • Нет связанных вопросов^_^