You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@trafficserver.apache.org by "patrick mcmanus (JIRA)" <ji...@apache.org> on 2010/04/28 22:06:50 UTC

[jira] Created: (TS-327) traffic_manager silently fails to start if proxy.config.cluster.ethernet_interface is incorrect

traffic_manager silently fails to start if   proxy.config.cluster.ethernet_interface is incorrect
-------------------------------------------------------------------------------------------------

                 Key: TS-327
                 URL: https://issues.apache.org/jira/browse/TS-327
             Project: Traffic Server
          Issue Type: Bug
          Components: Config
    Affects Versions: 2.0.0a
         Environment: ubuntu 10.04 (rc) 64 bit
            Reporter: patrick mcmanus
            Priority: Minor


First ever build from source, http://incubator.apache.org/trafficserver/docs/v2/admin/getstart.htm advises me to do
./trafficserver start
to start things up.. it failed silently.

Nothing interesting in any of the logs. (nothing at all really, other than messages about "opening logs").

Turns out only traffic_cop was running, not traffic_manager or traffic_server

Debugger on traffic manager had it exiting "Unable to find network interface eth0.".. which is true enough - I use "br0" for most things.

Traffic manager noted the problem at level "note" and then did a full exit.

A full exit should be at least level Error so I could correct the problem.



-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.


[jira] Commented: (TS-327) traffic_manager silently fails to start if proxy.config.cluster.ethernet_interface is incorrect

Posted by "patrick mcmanus (JIRA)" <ji...@apache.org>.
    [ https://issues.apache.org/jira/browse/TS-327?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12861928#action_12861928 ] 

patrick mcmanus commented on TS-327:
------------------------------------

/home/mcmanus/src/trafficserver/local/traffic/branches/2.0.x>svn diff
Index: proxy/mgmt2/LocalManager.cc
===================================================================
--- proxy/mgmt2/LocalManager.cc	(revision 936022)
+++ proxy/mgmt2/LocalManager.cc	(working copy)
@@ -436,7 +436,7 @@
 
   found = mgmt_getAddrForIntr(intrName, &cluster_addr);
   if (found == false) {
-    mgmt_log(stderr, "[LocalManager::initCCom] Unable to find network interface %s.  Exiting...\n", intrName);
+    mgmt_elog(stderr, "[LocalManager::initCCom] Unable to find network interface %s.  Exiting...\n", intrName);
     _exit(1);
   }
 


> traffic_manager silently fails to start if   proxy.config.cluster.ethernet_interface is incorrect
> -------------------------------------------------------------------------------------------------
>
>                 Key: TS-327
>                 URL: https://issues.apache.org/jira/browse/TS-327
>             Project: Traffic Server
>          Issue Type: Bug
>          Components: Config
>    Affects Versions: 2.0.0a
>         Environment: ubuntu 10.04 (rc) 64 bit
>            Reporter: patrick mcmanus
>            Priority: Minor
>
> First ever build from source, http://incubator.apache.org/trafficserver/docs/v2/admin/getstart.htm advises me to do
> ./trafficserver start
> to start things up.. it failed silently.
> Nothing interesting in any of the logs. (nothing at all really, other than messages about "opening logs").
> Turns out only traffic_cop was running, not traffic_manager or traffic_server
> Debugger on traffic manager had it exiting "Unable to find network interface eth0.".. which is true enough - I use "br0" for most things.
> Traffic manager noted the problem at level "note" and then did a full exit.
> A full exit should be at least level Error so I could correct the problem.

-- 
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.