2016-07-08 1 views
1

J'ai installé Apache Apollo et l'ai exécuté avec succès. Je peux accéder à son tableau de bord Web au http://127.0.0.1:61680/.Apache Apollo Connection Refused

Je veux me connecter à ce via STOMP. J'utilise la bibliothèque [StompKit] [1] pour le faire.

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() 
} 

Connexion échoue avec l'erreur connexion refusée. Il s'agit du fichier 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> 

Tentative 1

répondre seulement je pouvais trouver en rapport avec c'est [ce] [2] (Bien que ce soit pour MQTT). Quoi qu'il en soit, j'ai modifié le fichier apollo.xml en ajoutant la ligne authentication.

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

Mais cela n'a rien changé.

Tentative 2:

Le tableau de bord Web a un nom d'utilisateur/mot de passe de connexion. J'ai donc essayé une autre méthode de StompKit.

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

L'erreur persiste toujours.

Qu'est-ce que je fais mal ici?

Répondre

0

Par défaut, les clients STOMP peuvent se connecter à Apollo sur le port . Le port 61680 est destiné à l'interface d'administration Web.

Votre configuration contient

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

donc je suppose que

private let port: UInt = 61613 

dans votre code devrait résoudre le problème


Remarque: vous pouvez utiliser netstat ou TCPView pour vérifier que le port 61613 est ouvert

+0

J'ai chanté le numéro de port à '61613' mais j'ai quand même eu la même erreur. Ensuite, j'ai changé l'hôte à '0.0.0.0' et j'ai essayé à nouveau mais toujours pas de chance. – Isuru