Hi Lorenz, I don't see any error in logs, from web ui I can see vh as I created them from ui.
Ram On Oct 1, 2015 1:10 AM, "Lorenz Quack" <[email protected]> wrote: > Hi Ram, > > did you check the log files for errors? > The broker log is located in ${QPID_WORK}/log/qpid.log > Alternatively, did you check in the web management console to see whether > all your virtual hosts are up and running? > In the "Host State" it should say "ACTIVE" if everything is fine. > > The reason I am asking is that you would see this error when there is a > problem with the config so that the virtual host cannot start up. > For example if the broker cannot access the password file in > /opt/qpid-java/etc/passwd the AuthenticationProvider ends up in errored > state so that the virtual hosts using it cannot start. > > I hope the log files help shed some light on what is going on. > > Cheers, > Lorenz > > > > On 30/09/15 18:36, rammohan ganapavarapu wrote: > >> Lorenz, >> >> Thanks for quick reply, i got the config from qpid website, where can i >> get >> sample config fro 0.32 version? I have created virtualhost using web ui >> and >> restarted qpidd with the new config but still same issue. >> >> Here is the config generated by qpid after i have added VH from ui. >> >> >> { >> "id" : "ad4094d4-8c16-439e-96a7-babc73d7e260", >> "name" : "Broker", >> "storeVersion" : 1, >> "defaultVirtualHost" : "default", >> "modelVersion" : "3.0", >> "authenticationproviders" : [ { >> "id" : "0407acc8-519a-47c2-a242-3325c79fa8be", >> "name" : "Anonymous", >> "type" : "Anonymous" >> }, { >> "id" : "36b029e1-aec0-488e-b8f3-bef6df6b69de", >> "name" : "passwordFile", >> "path" : "/opt/qpid-java/etc/passwd", >> "type" : "PlainPasswordFile", >> "preferencesproviders" : [ { >> "id" : "e34f556a-0bec-4074-829c-7e208d146a88", >> "name" : "fileSystemPreferences", >> "path" : "/data/user.preferences.json", >> "type" : "FileSystemPreferences" >> } ] >> } ], >> "plugins" : [ { >> "id" : "c7343727-90d0-41a7-a277-6de89a6b85d2", >> "httpBasicAuthenticationEnabled" : true, >> "name" : "httpManagement", >> "type" : "MANAGEMENT-HTTP" >> }, { >> "id" : "57f8d7fb-5932-4f66-9df7-70301ae55fa0", >> "name" : "jmxManagement", >> "type" : "MANAGEMENT-JMX" >> } ], >> "ports" : [ { >> "id" : "eee9ef41-696f-499a-8a4e-4f767d8a4795", >> "authenticationProvider" : "Anonymous", >> "name" : "AMQP", >> "port" : "5672", >> "virtualhostaliases" : [ { >> "id" : "b1fd3cf2-b059-4560-9cb6-9402deb83a3e", >> "name" : "defaultAlias", >> "type" : "defaultAlias" >> }, { >> "id" : "f80f53b9-6c02-49ff-86d4-36f6cfb3b398", >> "name" : "hostnameAlias", >> "type" : "hostnameAlias" >> }, { >> "id" : "38cfa28a-b615-45da-a9de-5438b0e0c9d4", >> "name" : "nameAlias", >> "type" : "nameAlias" >> } ] >> }, { >> "id" : "bd02f479-d4e9-425d-a21e-cb96e5911ab4", >> "authenticationProvider" : "Anonymous", >> "name" : "HTTP", >> "port" : "9090", >> "protocols" : [ "HTTP" ] >> }, { >> "id" : "254a626f-dbb6-4ebc-b7a8-62fea8836627", >> "authenticationProvider" : "Anonymous", >> "name" : "JMX_CONNECTOR", >> "port" : "9099", >> "protocols" : [ "JMX_RMI" ] >> }, { >> "id" : "8a5e84c5-110a-43cd-895c-936e0845d8b4", >> "name" : "RMI_REGISTRY", >> "port" : "8999", >> "protocols" : [ "RMI" ] >> } ], >> "virtualhostnodes" : [ { >> "id" : "ee1fdce2-85a2-4c0e-9f27-77666294cb72", >> "storePath" : "/data/derbystore/default", >> "name" : "default", >> "type" : "DERBY" >> }, { >> "id" : "19c51f73-1e79-4924-a731-1f0d2007a7b5", >> "name" : "localhost", >> "type" : "JSON", >> "desiredState" : "ACTIVE", >> "context" : { >> }, >> "storePath" : "/data/derbystore/", >> "virtualHostInitialConfiguration" : "{}", >> "lastUpdatedBy" : "ANONYMOUS", >> "lastUpdatedTime" : 1443559649913, >> "createdBy" : "ANONYMOUS", >> "createdTime" : 1443559648803 >> }, { >> "id" : "32ba0079-78d4-4170-84f1-2298297844a3", >> "name" : "test", >> "type" : "DERBY", >> "desiredState" : "ACTIVE", >> "context" : { >> }, >> "storePath" : "/data/derbystore/", >> "virtualHostInitialConfiguration" : "{}", >> "lastUpdatedBy" : "ANONYMOUS", >> "lastUpdatedTime" : 1443559617163, >> "createdBy" : "ANONYMOUS", >> "createdTime" : 1443559614432 >> } ] >> } >> >> On Wed, Sep 30, 2015 at 9:34 AM, Lorenz Quack <[email protected]> >> wrote: >> >> Hi Ram, >>> >>> I now believe the problem is the broker config after all. >>> >>> you are missing the section for the virtualhostnode which should look >>> something like this: >>> "virtualhostnodes" : [ { >>> "id" : "<some UUID>", >>> "name" : "default", >>> "type" : "JSON", >>> "defaultVirtualHostNode" : "true", >>> "virtualHostInitialConfiguration" : "{}", >>> "lastUpdatedBy" : null, >>> "lastUpdatedTime" : 1443629901399, >>> "createdBy" : null, >>> "createdTime" : 0 >>> } ] >>> and should be at the top level (as a sibling of modelVersion, >>> authenticationProvider and so on.) >>> The configuration for the virtualhost then usually goes into a >>> subdirectory named after the virtualhostnode. >>> >>> where did you get that configuration from? >>> Was it created by the 0.32 broker? >>> It doesn't seem that way since the modelVersion of your config is 1.3. I >>> believe 0.32 has model version 3.0. >>> >>> cheers, >>> Lorenz >>> >>> >>> >>> >>> On 30/09/15 16:27, rammohan ganapavarapu wrote: >>> >>> Lorenz, >>>> >>>> I was trying to connect using python as below. >>>> >>>> from qpid.messaging import * >>>> >>>> broker = "localhost:5672" >>>> address = "amq.topic" >>>> connection = Connection(broker) >>>> >>>> try: >>>> connection.open() >>>> >>>> >>>> On Wed, Sep 30, 2015 at 1:21 AM, Lorenz Quack <[email protected]> >>>> wrote: >>>> >>>> Hi Ram, >>>> >>>>> how do you try to connect to the broker on the client side? >>>>> What connection URL are you using? >>>>> My guess is there is something wrong there. >>>>> The broker config looks fine to me on first glance. >>>>> >>>>> Cheers, >>>>> Lorenz >>>>> >>>>> >>>>> >>>>> On 29/09/15 21:32, rammohan ganapavarapu wrote: >>>>> >>>>> Hi, >>>>> >>>>>> I have java-broker 0.32 installed and when i try to make connection >>>>>> with >>>>>> java client using anonymous, i am getting unknown virtual host error. >>>>>> Any >>>>>> idea? i >>>>>> >>>>>> Unknown virtualhost ''(402) >>>>>> >>>>>> >>>>>> here is my startup config file. >>>>>> >>>>>> { >>>>>> "name": "Broker", >>>>>> "defaultVirtualHost": "default", >>>>>> "modelVersion": "1.3", >>>>>> "storeVersion": 1, >>>>>> "authenticationproviders": [ >>>>>> { >>>>>> "name": "Anonymous", >>>>>> "type": "Anonymous" >>>>>> }, >>>>>> { >>>>>> "name": "passwordFile", >>>>>> "path": "/opt/qpid-java/etc/passwd", >>>>>> "preferencesproviders": [ >>>>>> { >>>>>> "name": "fileSystemPreferences", >>>>>> "path": "/data/user.preferences.json", >>>>>> "type": "FileSystemPreferences" >>>>>> } >>>>>> ], >>>>>> "type": "PlainPasswordFile" >>>>>> } >>>>>> ], >>>>>> "plugins": [ >>>>>> { >>>>>> "name": "jmxManagement", >>>>>> "pluginType": "MANAGEMENT-JMX" >>>>>> }, >>>>>> { >>>>>> "httpBasicAuthenticationEnabled": true, >>>>>> "name": "httpManagement", >>>>>> "pluginType": "MANAGEMENT-HTTP" >>>>>> } >>>>>> ], >>>>>> "ports": [ >>>>>> { >>>>>> "authenticationProvider": "Anonymous", >>>>>> "name": "JMX_CONNECTOR", >>>>>> "port": "9099", >>>>>> "protocols": [ >>>>>> "JMX_RMI" >>>>>> ] >>>>>> }, >>>>>> { >>>>>> "authenticationProvider": "Anonymous", >>>>>> "name": "HTTP", >>>>>> "port": "9090", >>>>>> "protocols": [ >>>>>> "HTTP" >>>>>> ] >>>>>> }, >>>>>> { >>>>>> "name": "RMI_REGISTRY", >>>>>> "port": "8999", >>>>>> "protocols": [ >>>>>> "RMI" >>>>>> ] >>>>>> }, >>>>>> { >>>>>> "authenticationProvider": "Anonymous", >>>>>> "name": "AMQP", >>>>>> "port": "5672" >>>>>> } >>>>>> ], >>>>>> "virtualhosts": [ >>>>>> { >>>>>> "name": "default", >>>>>> "storePath": "/data/derbystore/default", >>>>>> "storeType": "DERBY", >>>>>> "type": "STANDARD" >>>>>> } >>>>>> ] >>>>>> } >>>>>> >>>>>> Ram >>>>>> >>>>>> On Wed, Sep 23, 2015 at 9:09 AM, rammohan ganapavarapu < >>>>>> [email protected]> wrote: >>>>>> >>>>>> I was able to make localhost:8080/login.html working, i i have FW >>>>>> infront >>>>>> >>>>>> of host so i was doing ssh tunnel using local port 10001 but looks >>>>>>> like >>>>>>> it >>>>>>> didnt like, so i used local 8080 port for tunnel with PasswordFile >>>>>>> auth >>>>>>> and >>>>>>> it worked. >>>>>>> >>>>>>> Thanks, >>>>>>> Ram >>>>>>> >>>>>>> On Wed, Sep 23, 2015 at 8:56 AM, rammohan ganapavarapu < >>>>>>> [email protected]> wrote: >>>>>>> >>>>>>> Also when i try to access localhost:8080/login.html i am getting the >>>>>>> >>>>>>> popup window with below error for my credentials. >>>>>>>> >>>>>>>> RequestError: Unable to load service/sasl status: 500 >>>>>>>> >>>>>>>> curl -s -u admin:admin 0:8080/service/sasl >>>>>>>> { >>>>>>>> "user" : "admin", >>>>>>>> "mechanisms" : [ "CRAM-MD5" ] >>>>>>>> } >>>>>>>> >>>>>>>> >>>>>>>> Here is qpid.log >>>>>>>> >>>>>>>> >>>>>>>> 2015-09-23 15:45:37,855 WARN [HttpManagement-23 - /service/sasl] >>>>>>>> (servlet.ServletHandler) - /service/sasl >>>>>>>> java.lang.NullPointerException >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.HttpManagementUtil.tryToAuthenticate(HttpManagementUtil.java:161) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.servlet.rest.SaslServlet.getAuthorisedSubject(SaslServlet.java:314) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.servlet.rest.AbstractServlet.doWithSubjectAndActor(AbstractServlet.java:200) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.servlet.rest.AbstractServlet.doGet(AbstractServlet.java:73) >>>>>>>> at >>>>>>>> javax.servlet.http.HttpServlet.service(HttpServlet.java:575) >>>>>>>> at >>>>>>>> javax.servlet.http.HttpServlet.service(HttpServlet.java:668) >>>>>>>> at >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHolder.handle(ServletHolder.java:684) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1496) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.filter.ForbiddingAuthorisationFilter.doFilter(ForbiddingAuthorisationFilter.java:90) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1467) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.apache.qpid.server.management.plugin.filter.ForbiddingTraceFilter.doFilter(ForbiddingTraceFilter.java:65) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHandler$CachedChain.doFilter(ServletHandler.java:1467) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHandler.doHandle(ServletHandler.java:499) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.session.SessionHandler.doHandle(SessionHandler.java:229) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.handler.ContextHandler.doHandle(ContextHandler.java:1086) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.servlet.ServletHandler.doScope(ServletHandler.java:428) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.session.SessionHandler.doScope(SessionHandler.java:193) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.handler.ContextHandler.doScope(ContextHandler.java:1020) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.handler.ScopedHandler.handle(ScopedHandler.java:135) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.handler.HandlerWrapper.handle(HandlerWrapper.java:116) >>>>>>>> at org.eclipse.jetty.server.Server.handle(Server.java:366) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.AbstractHttpConnection.handleRequest(AbstractHttpConnection.java:494) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.AbstractHttpConnection.headerComplete(AbstractHttpConnection.java:971) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.AbstractHttpConnection$RequestHandler.headerComplete(AbstractHttpConnection.java:1033) >>>>>>>> at >>>>>>>> org.eclipse.jetty.http.HttpParser.parseNext(HttpParser.java:644) >>>>>>>> at >>>>>>>> >>>>>>>> org.eclipse.jetty.http.HttpParser.parseAvailable(HttpParser.java:235) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.server.AsyncHttpConnection.handle(AsyncHttpConnection.java:82) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.io.nio.SelectChannelEndPoint.handle(SelectChannelEndPoint.java:667) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.io.nio.SelectChannelEndPoint$1.run(SelectChannelEndPoint.java:52) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.util.thread.QueuedThreadPool.runJob(QueuedThreadPool.java:608) >>>>>>>> at >>>>>>>> >>>>>>>> >>>>>>>> >>>>>>>> org.eclipse.jetty.util.thread.QueuedThreadPool$3.run(QueuedThreadPool.java:543) >>>>>>>> at java.lang.Thread.run(Thread.java:745) >>>>>>>> 2015-09-23 15:45:37,856 DEBUG [HttpManagement-23 - /service/sasl] >>>>>>>> (servlet.ServletHandler) - (GET /service/sasl)@925500022 >>>>>>>> org.eclipse.jetty.server.Request@372a0276 >>>>>>>> 2015-09-23 15:45:37,856 DEBUG [HttpManagement-23 - /service/sasl] >>>>>>>> (server.Server) - RESPONSE /service/sasl 500 handled=true >>>>>>>> >>>>>>>> >>>>>>>> On Wed, Sep 23, 2015 at 8:39 AM, rammohan ganapavarapu < >>>>>>>> [email protected]> wrote: >>>>>>>> >>>>>>>> Lorenz, >>>>>>>> >>>>>>>> Thanks for quick reply, i am accessing localhost:8080/management url >>>>>>>>> and >>>>>>>>> i am getting that error and login button is also not enabled, in >>>>>>>>> the >>>>>>>>> logs i >>>>>>>>> am seeing 404 errors. But i am able to access using curl with >>>>>>>>> credentials. >>>>>>>>> >>>>>>>>> One more issue, when i try to connect to broker i am getting >>>>>>>>> unknown >>>>>>>>> virtual host error and also SASL mismatch error. My client checks >>>>>>>>> if >>>>>>>>> PLAN >>>>>>>>> is available if it doesn't then it try to use ANONYMOUS. >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> url=amqp://guest:********@/?brokerlist='tcp://localhost:5672?connecttimeout='5000'&sasl_mechs='ANONYMOUS'' >>>>>>>>> Not Connected. error Unknown virtualhost '' username=null >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> >>>>>>>>> url=amqp://guest:********@/?brokerlist='tcp://localhost:5672?connecttimeout='5000'&sasl_mechs='PLAIN'' >>>>>>>>> Not Connected. error Client and broker have no SASL mechanisms in >>>>>>>>> common. >>>>>>>>> Broker allows : ANONYMOUS Client has : [EXTERNAL, GSSAPI, >>>>>>>>> CRAM-MD5-HASHED, >>>>>>>>> CRAM-MD5, AMQPLAIN, PLAIN, ANONYMOUS] Client restricted itself to : >>>>>>>>> PLAIN >>>>>>>>> username=guest >>>>>>>>> >>>>>>>>> When i do curl for virtualhosts i am getting empty list. >>>>>>>>> >>>>>>>>> curl -s -u admin 0:9090/api/latest/virtualhost/ >>>>>>>>> [ ] >>>>>>>>> >>>>>>>>> curl -s -u admin >>>>>>>>> 0:9090/api/latest/authenticationprovider/passwordFile|grep mech >>>>>>>>> "mechanisms" : [ "PLAIN", "CRAM-MD5" ], >>>>>>>>> >>>>>>>>> curl -s -u admin >>>>>>>>> 0:9090/api/latest/authenticationprovider/Anonymous|grep mech >>>>>>>>> "mechanisms" : [ "ANONYMOUS" ], >>>>>>>>> >>>>>>>>> Here is my config.json that i am using to start broker. >>>>>>>>> >>>>>>>>> >>>>>>>>> cat config.json >>>>>>>>> { >>>>>>>>> "name": "Broker", >>>>>>>>> "defaultVirtualHost": "default", >>>>>>>>> "modelVersion": "1.3", >>>>>>>>> "storeVersion": 1, >>>>>>>>> "authenticationproviders": [ >>>>>>>>> { >>>>>>>>> "name": "Anonymous", >>>>>>>>> "type": "Anonymous" >>>>>>>>> }, >>>>>>>>> { >>>>>>>>> "name": "passwordFile", >>>>>>>>> "secureOnlyMechanisms" : [ "PLAIN" ], >>>>>>>>> "path": "/opt/qpid-java/etc/passwd", >>>>>>>>> "preferencesproviders": [ >>>>>>>>> { >>>>>>>>> "name": "fileSystemPreferences", >>>>>>>>> "path": "/data/user.preferences.json", >>>>>>>>> "type": "FileSystemPreferences" >>>>>>>>> } >>>>>>>>> ], >>>>>>>>> "type": "PlainPasswordFile" >>>>>>>>> } >>>>>>>>> ], >>>>>>>>> "plugins": [ >>>>>>>>> { >>>>>>>>> "name": "jmxManagement", >>>>>>>>> "pluginType": "MANAGEMENT-JMX" >>>>>>>>> }, >>>>>>>>> { >>>>>>>>> "httpBasicAuthenticationEnabled": true, >>>>>>>>> "name": "httpManagement", >>>>>>>>> "pluginType": "MANAGEMENT-HTTP" >>>>>>>>> } >>>>>>>>> ], >>>>>>>>> "ports": [ >>>>>>>>> { >>>>>>>>> "authenticationProvider": "passwordFile", >>>>>>>>> "name": "JMX_CONNECTOR", >>>>>>>>> "port": "9099", >>>>>>>>> "protocols": [ >>>>>>>>> "JMX_RMI" >>>>>>>>> ] >>>>>>>>> }, >>>>>>>>> { >>>>>>>>> "authenticationProvider": "passwordFile", >>>>>>>>> "name": "HTTP", >>>>>>>>> "port": "9090", >>>>>>>>> "protocols": [ >>>>>>>>> "HTTP" >>>>>>>>> ] >>>>>>>>> }, >>>>>>>>> { >>>>>>>>> "name": "RMI_REGISTRY", >>>>>>>>> "port": "8999", >>>>>>>>> "protocols": [ >>>>>>>>> "RMI" >>>>>>>>> ] >>>>>>>>> }, >>>>>>>>> { >>>>>>>>> "authenticationProvider": "passwordFile", >>>>>>>>> "name": "AMQP", >>>>>>>>> "port": "5672" >>>>>>>>> } >>>>>>>>> ], >>>>>>>>> "virtualhosts": [ >>>>>>>>> { >>>>>>>>> "name": "default", >>>>>>>>> "storePath": "/data/derbystore/default", >>>>>>>>> "storeType": "DERBY", >>>>>>>>> "type": "STANDARD" >>>>>>>>> } >>>>>>>>> ] >>>>>>>>> } >>>>>>>>> >>>>>>>>> >>>>>>>>> On Wed, Sep 23, 2015 at 1:23 AM, Lorenz Quack < >>>>>>>>> [email protected]> >>>>>>>>> wrote: >>>>>>>>> >>>>>>>>> Hello Ram, >>>>>>>>> >>>>>>>>> By default you must authenticate with the broker before performing >>>>>>>>>> any >>>>>>>>>> management operation to prevent unauthorized access. >>>>>>>>>> The error seems to indicate that you did not do this. >>>>>>>>>> When you use the browser you can login via >>>>>>>>>> http://localhost:8080/login.html (assuming the broker is running >>>>>>>>>> on >>>>>>>>>> the localhost in default configuration). >>>>>>>>>> Default username and password are admin:admin. Of course you >>>>>>>>>> should >>>>>>>>>> change these when deploying. >>>>>>>>>> >>>>>>>>>> If this does not solve your issue could you provide more >>>>>>>>>> information? >>>>>>>>>> What URL are you trying to access when you see the error? >>>>>>>>>> Do you see interesting information in the broker logs? >>>>>>>>>> >>>>>>>>>> Kind Regards, >>>>>>>>>> Lorenz >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> On 22/09/15 19:28, rammohan ganapavarapu wrote: >>>>>>>>>> >>>>>>>>>> Hi, >>>>>>>>>> >>>>>>>>>> I am trying to use java broker 0.32 version, qpid came up fine but >>>>>>>>>>> when i >>>>>>>>>>> try to access management url using curl or through browser i cam >>>>>>>>>>> getting >>>>>>>>>>> bellow error any idea how to fix this? >>>>>>>>>>> >>>>>>>>>>> 000 - error >>>>>>>>>>> Please login again and retry your operation. >>>>>>>>>>> Please correct the problem and retry your operation. >>>>>>>>>>> >>>>>>>>>>> >>>>>>>>>>> Thanks, >>>>>>>>>>> Ram >>>>>>>>>>> >>>>>>>>>>> On Fri, Sep 11, 2015 at 1:21 PM, rammohan ganapavarapu < >>>>>>>>>>> [email protected]> wrote: >>>>>>>>>>> >>>>>>>>>>> Ted, >>>>>>>>>>> >>>>>>>>>>> I have used that tool but its not giving me what file/message is >>>>>>>>>>> >>>>>>>>>>>> actually >>>>>>>>>>>> got corrupted. May be i need to dig little deeper to find the >>>>>>>>>>>> culprit. >>>>>>>>>>>> >>>>>>>>>>>> Thanks a lot, >>>>>>>>>>>> Ram >>>>>>>>>>>> >>>>>>>>>>>> On Fri, Sep 11, 2015 at 1:12 PM, Ted Ross <[email protected]> >>>>>>>>>>>> wrote: >>>>>>>>>>>> >>>>>>>>>>>> Ram, >>>>>>>>>>>> >>>>>>>>>>>> In tools/src/py there are a number of tools related to the store >>>>>>>>>>>> >>>>>>>>>>>>> (I'm >>>>>>>>>>>>> looking at version 0.28). qpid-store-chk looks promising. >>>>>>>>>>>>> >>>>>>>>>>>>> If you need deeper insight into what's going on, there are >>>>>>>>>>>>> others >>>>>>>>>>>>> here >>>>>>>>>>>>> that know this stuff a lot better than I do. >>>>>>>>>>>>> >>>>>>>>>>>>> -Ted >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> On 09/11/2015 04:03 PM, rammohan ganapavarapu wrote: >>>>>>>>>>>>> >>>>>>>>>>>>> Ted, >>>>>>>>>>>>> >>>>>>>>>>>>> Thanks for quick reply, yes those messages are important, i was >>>>>>>>>>>>> >>>>>>>>>>>>>> looking >>>>>>>>>>>>>> for >>>>>>>>>>>>>> tools to view those journal files but couldn't find tools, if >>>>>>>>>>>>>> you >>>>>>>>>>>>>> know >>>>>>>>>>>>>> any >>>>>>>>>>>>>> tools can you please let me know? >>>>>>>>>>>>>> >>>>>>>>>>>>>> Ram >>>>>>>>>>>>>> >>>>>>>>>>>>>> On Fri, Sep 11, 2015 at 1:00 PM, Ted Ross <[email protected]> >>>>>>>>>>>>>> wrote: >>>>>>>>>>>>>> >>>>>>>>>>>>>> I suspect that you have corrupted data in your journal store. >>>>>>>>>>>>>> If >>>>>>>>>>>>>> you are >>>>>>>>>>>>>> >>>>>>>>>>>>>> jumping between versions that are that far apart (0.14 and >>>>>>>>>>>>>> 0.28), >>>>>>>>>>>>>> >>>>>>>>>>>>>> you >>>>>>>>>>>>>>> may >>>>>>>>>>>>>>> have issues with journal compatibility. >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Are the stored messages important? If not, you can remove >>>>>>>>>>>>>>> the >>>>>>>>>>>>>>> journal >>>>>>>>>>>>>>> files (rm -rf /data/rhm). If they are important, I believe >>>>>>>>>>>>>>> there >>>>>>>>>>>>>>> are >>>>>>>>>>>>>>> tools >>>>>>>>>>>>>>> available to view the files offline. This might help >>>>>>>>>>>>>>> identify >>>>>>>>>>>>>>> and >>>>>>>>>>>>>>> possibly >>>>>>>>>>>>>>> repair the specific problem. I'll have to defer to others >>>>>>>>>>>>>>> about >>>>>>>>>>>>>>> where >>>>>>>>>>>>>>> to >>>>>>>>>>>>>>> find and how to use such tools. >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> -Ted >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> On 09/11/2015 03:40 PM, rammohan ganapavarapu wrote: >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> Hi, >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> I am using qpid-cpp broker version 0.14, for some reason i am >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> getting >>>>>>>>>>>>>>>> below >>>>>>>>>>>>>>>> error when i try to restart qpid, i also tried version 0.28 >>>>>>>>>>>>>>>> but >>>>>>>>>>>>>>>> same >>>>>>>>>>>>>>>> error >>>>>>>>>>>>>>>> any one have any idea how to resolve this? i have around 4K >>>>>>>>>>>>>>>> messages >>>>>>>>>>>>>>>> in DL >>>>>>>>>>>>>>>> queue. >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>> Journal >>>>>>>>>>>>>>>> directory >>>>>>>>>>>>>>>> = >>>>>>>>>>>>>>>> "/data//rhm/jrnl/0009/test-queue/"; Base file name = >>>>>>>>>>>>>>>> "JournalData" >>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>> Recover; >>>>>>>>>>>>>>>> num_jfiles=8 jfsize_sblks=3072 queue_id = 0x2 >>>>>>>>>>>>>>>> wcache_pgsize_sblks=64 >>>>>>>>>>>>>>>> wcache_num_pages=32 >>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] info Journal "test-queue": >>>>>>>>>>>>>>>> Recovery >>>>>>>>>>>>>>>> found >>>>>>>>>>>>>>>> 64 >>>>>>>>>>>>>>>> files (different from --num-jfiles value of 8). >>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] info Journal "/test-queue": >>>>>>>>>>>>>>>> Recovery >>>>>>>>>>>>>>>> found >>>>>>>>>>>>>>>> file >>>>>>>>>>>>>>>> size = 5120 (different from --jfile-size-pgs value of 24). >>>>>>>>>>>>>>>> 2015-09-11 18:53:54 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>> Recover >>>>>>>>>>>>>>>> file >>>>>>>>>>>>>>>> analysis (jid="test-queue"): njf=64 ae=F aemjf=0 owi=F >>>>>>>>>>>>>>>> frot=T >>>>>>>>>>>>>>>> jempty=F >>>>>>>>>>>>>>>> ffid=0 fro=0x200 (4 dblks) lfid=1 eo=0x42da00 (34228 dblks) >>>>>>>>>>>>>>>> h_rid=0x47167 >>>>>>>>>>>>>>>> lffull=F jfull=F Enqueued records (txn & non-txn): [ >>>>>>>>>>>>>>>> fid_00=6684 >>>>>>>>>>>>>>>> fid_01=0 >>>>>>>>>>>>>>>> fid_02=0 fid_03=0 fid_04=0 fid_05=0 fid_06=0 fid_07=0 >>>>>>>>>>>>>>>> fid_08=0 >>>>>>>>>>>>>>>> fid_09=0 >>>>>>>>>>>>>>>> fid_10=0 fid_11=0 fid_12=0 fid_13=0 fid_14=0 fid_15=0 >>>>>>>>>>>>>>>> fid_16=0 >>>>>>>>>>>>>>>> fid_17=0 >>>>>>>>>>>>>>>> fid_18=0 fid_19=0 fid_20=0 fid_21=0 fid_22=0 fid_23=0 >>>>>>>>>>>>>>>> fid_24=0 >>>>>>>>>>>>>>>> fid_25=0 >>>>>>>>>>>>>>>> fid_26=0 fid_27=0 fid_28=0 fid_29=0 fid_30=0 fid_31=0 >>>>>>>>>>>>>>>> fid_32=0 >>>>>>>>>>>>>>>> fid_33=0 >>>>>>>>>>>>>>>> fid_34=0 fid_35=0 fid_36=0 fid_37=0 fid_38=0 fid_39=0 >>>>>>>>>>>>>>>> fid_40=0 >>>>>>>>>>>>>>>> fid_41=0 >>>>>>>>>>>>>>>> fid_42=0 fid_43=0 fid_44=0 fid_45=0 fid_46=0 fid_47=0 >>>>>>>>>>>>>>>> fid_48=0 >>>>>>>>>>>>>>>> fid_49=0 >>>>>>>>>>>>>>>> fid_50=0 fid_51=0 fid_52=0 fid_53=0 fid_54=0 fid_55=0 >>>>>>>>>>>>>>>> fid_56=0 >>>>>>>>>>>>>>>> fid_57=0 >>>>>>>>>>>>>>>> fid_58=0 fid_59=0 fid_60=0 fid_61=0 fid_62=0 fid_63=0 ] >>>>>>>>>>>>>>>> 2015-09-11 18:53:54 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>> Recover >>>>>>>>>>>>>>>> phase 1 >>>>>>>>>>>>>>>> complete; highest rid found = 0x47167; emap.size=6684; >>>>>>>>>>>>>>>> tmap.size=0; >>>>>>>>>>>>>>>> journal >>>>>>>>>>>>>>>> now read-only. >>>>>>>>>>>>>>>> 2015-09-11 18:53:57 [System] debug Exception constructed: >>>>>>>>>>>>>>>> Queue >>>>>>>>>>>>>>>> ax-q-mxgroup007: recoverMessages() failed: jexception 0x010a >>>>>>>>>>>>>>>> MessageStoreImpl::getExternMessage() threw JERR__NOTIMPL: >>>>>>>>>>>>>>>> Not >>>>>>>>>>>>>>>> implemented >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> (/tmp/qpid-cpp-0.28/src/qpid/legacystore/MessageStoreImpl.cpp:1059) >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> Thanks, >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> On Fri, Sep 11, 2015 at 12:16 PM, rammohan ganapavarapu < >>>>>>>>>>>>>>>> [email protected]> wrote: >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> Hi, >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> I am using qpid-cpp broker version 0.14, for some reason i >>>>>>>>>>>>>>>> am >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> getting >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> below error when i try to restart qpid, i also tried >>>>>>>>>>>>>>>>> version >>>>>>>>>>>>>>>>> 0.28 but >>>>>>>>>>>>>>>>> same >>>>>>>>>>>>>>>>> error any one have any idea how to resolve this? i have >>>>>>>>>>>>>>>>> around >>>>>>>>>>>>>>>>> 4K >>>>>>>>>>>>>>>>> messages >>>>>>>>>>>>>>>>> in DL queue. >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>>> Journal >>>>>>>>>>>>>>>>> directory >>>>>>>>>>>>>>>>> = "/data//rhm/jrnl/0009/test-queue/"; Base file name = >>>>>>>>>>>>>>>>> "JournalData" >>>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>>> Recover; >>>>>>>>>>>>>>>>> num_jfiles=8 jfsize_sblks=3072 queue_id = 0x2 >>>>>>>>>>>>>>>>> wcache_pgsize_sblks=64 >>>>>>>>>>>>>>>>> wcache_num_pages=32 >>>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] info Journal "test-queue": >>>>>>>>>>>>>>>>> Recovery >>>>>>>>>>>>>>>>> found >>>>>>>>>>>>>>>>> 64 >>>>>>>>>>>>>>>>> files (different from --num-jfiles value of 8). >>>>>>>>>>>>>>>>> 2015-09-11 18:53:53 [Store] info Journal "/test-queue": >>>>>>>>>>>>>>>>> Recovery >>>>>>>>>>>>>>>>> found >>>>>>>>>>>>>>>>> file size = 5120 (different from --jfile-size-pgs value of >>>>>>>>>>>>>>>>> 24). >>>>>>>>>>>>>>>>> 2015-09-11 18:53:54 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>>> Recover >>>>>>>>>>>>>>>>> file >>>>>>>>>>>>>>>>> analysis (jid="test-queue"): njf=64 ae=F aemjf=0 owi=F >>>>>>>>>>>>>>>>> frot=T >>>>>>>>>>>>>>>>> jempty=F >>>>>>>>>>>>>>>>> ffid=0 fro=0x200 (4 dblks) lfid=1 eo=0x42da00 (34228 dblks) >>>>>>>>>>>>>>>>> h_rid=0x47167 >>>>>>>>>>>>>>>>> lffull=F jfull=F Enqueued records (txn & non-txn): [ >>>>>>>>>>>>>>>>> fid_00=6684 >>>>>>>>>>>>>>>>> fid_01=0 >>>>>>>>>>>>>>>>> fid_02=0 fid_03=0 fid_04=0 fid_05=0 fid_06=0 fid_07=0 >>>>>>>>>>>>>>>>> fid_08=0 >>>>>>>>>>>>>>>>> fid_09=0 >>>>>>>>>>>>>>>>> fid_10=0 fid_11=0 fid_12=0 fid_13=0 fid_14=0 fid_15=0 >>>>>>>>>>>>>>>>> fid_16=0 >>>>>>>>>>>>>>>>> fid_17=0 >>>>>>>>>>>>>>>>> fid_18=0 fid_19=0 fid_20=0 fid_21=0 fid_22=0 fid_23=0 >>>>>>>>>>>>>>>>> fid_24=0 >>>>>>>>>>>>>>>>> fid_25=0 >>>>>>>>>>>>>>>>> fid_26=0 fid_27=0 fid_28=0 fid_29=0 fid_30=0 fid_31=0 >>>>>>>>>>>>>>>>> fid_32=0 >>>>>>>>>>>>>>>>> fid_33=0 >>>>>>>>>>>>>>>>> fid_34=0 fid_35=0 fid_36=0 fid_37=0 fid_38=0 fid_39=0 >>>>>>>>>>>>>>>>> fid_40=0 >>>>>>>>>>>>>>>>> fid_41=0 >>>>>>>>>>>>>>>>> fid_42=0 fid_43=0 fid_44=0 fid_45=0 fid_46=0 fid_47=0 >>>>>>>>>>>>>>>>> fid_48=0 >>>>>>>>>>>>>>>>> fid_49=0 >>>>>>>>>>>>>>>>> fid_50=0 fid_51=0 fid_52=0 fid_53=0 fid_54=0 fid_55=0 >>>>>>>>>>>>>>>>> fid_56=0 >>>>>>>>>>>>>>>>> fid_57=0 >>>>>>>>>>>>>>>>> fid_58=0 fid_59=0 fid_60=0 fid_61=0 fid_62=0 fid_63=0 ] >>>>>>>>>>>>>>>>> 2015-09-11 18:53:54 [Store] debug Journal "test-queue": >>>>>>>>>>>>>>>>> Recover >>>>>>>>>>>>>>>>> phase >>>>>>>>>>>>>>>>> 1 >>>>>>>>>>>>>>>>> complete; highest rid found = 0x47167; emap.size=6684; >>>>>>>>>>>>>>>>> tmap.size=0; >>>>>>>>>>>>>>>>> journal >>>>>>>>>>>>>>>>> now read-only. >>>>>>>>>>>>>>>>> 2015-09-11 18:53:57 [System] debug Exception constructed: >>>>>>>>>>>>>>>>> Queue >>>>>>>>>>>>>>>>> ax-q-mxgroup007: recoverMessages() failed: jexception >>>>>>>>>>>>>>>>> 0x010a >>>>>>>>>>>>>>>>> MessageStoreImpl::getExternMessage() threw JERR__NOTIMPL: >>>>>>>>>>>>>>>>> Not >>>>>>>>>>>>>>>>> implemented >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> (/tmp/qpid-cpp-0.28/src/qpid/legacystore/MessageStoreImpl.cpp:1059) >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Thanks, >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> On Fri, Sep 11, 2015 at 12:08 PM, < >>>>>>>>>>>>>>>>> [email protected]> >>>>>>>>>>>>>>>>> wrote: >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> Hi! This is the ezmlm program. I'm managing the >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> [email protected] mailing list. >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>> I'm working for my owner, who can be reached >>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> at [email protected]. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Acknowledgment: I have added the address >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> [email protected] >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> to the users mailing list. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Welcome to [email protected]! >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Please save this message so that you know the address you >>>>>>>>>>>>>>>>>> are >>>>>>>>>>>>>>>>>> subscribed under, in case you later want to unsubscribe or >>>>>>>>>>>>>>>>>> change >>>>>>>>>>>>>>>>>> your >>>>>>>>>>>>>>>>>> subscription address. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> --- Administrative commands for the users list --- >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> I can handle administrative requests automatically. Please >>>>>>>>>>>>>>>>>> do not send them to the list address! Instead, send >>>>>>>>>>>>>>>>>> your message to the correct command address: >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To subscribe to the list, send a message to: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To remove your address from the list, send a message to: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Send mail to the following for info and FAQ for this list: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Similar addresses exist for the digest list: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To get messages 123 through 145 (a maximum of 100 per >>>>>>>>>>>>>>>>>> request), >>>>>>>>>>>>>>>>>> mail: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To get an index with subject and author for messages >>>>>>>>>>>>>>>>>> 123-456 , >>>>>>>>>>>>>>>>>> mail: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> They are always returned as sets of 100, max 2000 per >>>>>>>>>>>>>>>>>> request, >>>>>>>>>>>>>>>>>> so you'll actually get 100-499. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To receive all messages with the same subject as message >>>>>>>>>>>>>>>>>> 12345, >>>>>>>>>>>>>>>>>> send a short message to: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> The messages should contain one line or word of text to >>>>>>>>>>>>>>>>>> avoid >>>>>>>>>>>>>>>>>> being >>>>>>>>>>>>>>>>>> treated as sp@m, but I will ignore their content. >>>>>>>>>>>>>>>>>> Only the ADDRESS you send to is important. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> You can start a subscription for an alternate address, >>>>>>>>>>>>>>>>>> for example "[email protected]", just add a hyphen and >>>>>>>>>>>>>>>>>> your >>>>>>>>>>>>>>>>>> address (with '=' instead of '@') after the command word: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> To stop subscription for this address, mail: >>>>>>>>>>>>>>>>>> <[email protected]> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> In both cases, I'll send a confirmation message to that >>>>>>>>>>>>>>>>>> address. When >>>>>>>>>>>>>>>>>> you receive it, simply reply to it to complete your >>>>>>>>>>>>>>>>>> subscription. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> If despite following these instructions, you do not get >>>>>>>>>>>>>>>>>> the >>>>>>>>>>>>>>>>>> desired results, please contact my owner at >>>>>>>>>>>>>>>>>> [email protected]. Please be patient, my owner >>>>>>>>>>>>>>>>>> is a >>>>>>>>>>>>>>>>>> lot slower than I am ;-) >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> --- Enclosed is a copy of the request I received. >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Return-Path: <[email protected]> >>>>>>>>>>>>>>>>>> Received: (qmail 64240 invoked by uid 99); 11 Sep 2015 >>>>>>>>>>>>>>>>>> 19:08:13 >>>>>>>>>>>>>>>>>> -0000 >>>>>>>>>>>>>>>>>> Received: from Unknown (HELO spamd2-us-west.apache.org) >>>>>>>>>>>>>>>>>> (209.188.14.142) >>>>>>>>>>>>>>>>>> by apache.org (qpsmtpd/0.29) with ESMTP; Fri, >>>>>>>>>>>>>>>>>> 11 >>>>>>>>>>>>>>>>>> Sep >>>>>>>>>>>>>>>>>> 2015 >>>>>>>>>>>>>>>>>> 19:08:13 >>>>>>>>>>>>>>>>>> +0000 >>>>>>>>>>>>>>>>>> Received: from localhost (localhost [127.0.0.1]) >>>>>>>>>>>>>>>>>> by spamd2-us-west.apache.org (ASF Mail >>>>>>>>>>>>>>>>>> Server >>>>>>>>>>>>>>>>>> at >>>>>>>>>>>>>>>>>> spamd2-us-west.apache.org) with ESMTP id 0857B1A1784 >>>>>>>>>>>>>>>>>> for >>>>>>>>>>>>>>>>>> <users-sc.1441998136.nigfplgkhajmihpcppnj-rammohanganap= >>>>>>>>>>>>>>>>>> [email protected]>; Fri, 11 Sep 2015 19:08:13 >>>>>>>>>>>>>>>>>> +0000 >>>>>>>>>>>>>>>>>> (UTC) >>>>>>>>>>>>>>>>>> X-Virus-Scanned: Debian amavisd-new at >>>>>>>>>>>>>>>>>> spamd2-us-west.apache.org >>>>>>>>>>>>>>>>>> X-Spam-Flag: NO >>>>>>>>>>>>>>>>>> X-Spam-Score: 2.898 >>>>>>>>>>>>>>>>>> X-Spam-Level: ** >>>>>>>>>>>>>>>>>> X-Spam-Status: No, score=2.898 tagged_above=-999 >>>>>>>>>>>>>>>>>> required=6.31 >>>>>>>>>>>>>>>>>> tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, >>>>>>>>>>>>>>>>>> DKIM_VALID_AU=-0.1, >>>>>>>>>>>>>>>>>> HTML_MESSAGE=3, RCVD_IN_MSPIKE_H2=-0.001, >>>>>>>>>>>>>>>>>> SPF_PASS=-0.001] >>>>>>>>>>>>>>>>>> autolearn=disabled >>>>>>>>>>>>>>>>>> Authentication-Results: spamd2-us-west.apache.org >>>>>>>>>>>>>>>>>> (amavisd-new); >>>>>>>>>>>>>>>>>> dkim=pass (2048-bit key) header.d=gmail.com >>>>>>>>>>>>>>>>>> Received: from mx1-us-east.apache.org ([10.40.0.8]) >>>>>>>>>>>>>>>>>> by localhost (spamd2-us-west.apache.org >>>>>>>>>>>>>>>>>> [10.40.0.9]) >>>>>>>>>>>>>>>>>> (amavisd-new, port 10024) >>>>>>>>>>>>>>>>>> with ESMTP id qtM4JX9YicTO >>>>>>>>>>>>>>>>>> for >>>>>>>>>>>>>>>>>> <users-sc.1441998136.nigfplgkhajmihpcppnj-rammohanganap= >>>>>>>>>>>>>>>>>> [email protected]>; >>>>>>>>>>>>>>>>>> Fri, 11 Sep 2015 19:08:11 +0000 (UTC) >>>>>>>>>>>>>>>>>> Received: from mail-io0-f170.google.com ( >>>>>>>>>>>>>>>>>> mail-io0-f170.google.com >>>>>>>>>>>>>>>>>> [209.85.223.170]) >>>>>>>>>>>>>>>>>> by mx1-us-east.apache.org (ASF Mail Server >>>>>>>>>>>>>>>>>> at >>>>>>>>>>>>>>>>>> mx1-us-east.apache.org) with ESMTPS id 7616240B1C >>>>>>>>>>>>>>>>>> for >>>>>>>>>>>>>>>>>> <users-sc.1441998136.nigfplgkhajmihpcppnj-rammohanganap= >>>>>>>>>>>>>>>>>> [email protected]>; Fri, 11 Sep 2015 19:08:11 >>>>>>>>>>>>>>>>>> +0000 >>>>>>>>>>>>>>>>>> (UTC) >>>>>>>>>>>>>>>>>> Received: by iofh134 with SMTP id h134so109094958iof.0 >>>>>>>>>>>>>>>>>> for >>>>>>>>>>>>>>>>>> <users-sc.1441998136.nigfplgkhajmihpcppnj-rammohanganap= >>>>>>>>>>>>>>>>>> [email protected]>; Fri, 11 Sep 2015 12:08:11 >>>>>>>>>>>>>>>>>> -0700 >>>>>>>>>>>>>>>>>> (PDT) >>>>>>>>>>>>>>>>>> DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; >>>>>>>>>>>>>>>>>> d=gmail.com; s=20120113; >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> h=mime-version:from:date:message-id:subject:to:content-type; >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> bh=Suzjg/+wE+2hNieTKjikz1A82nA0m6q2IyoxrAEEQYs=; >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> b=XRFuqllruNarbrY/FFtD5g+lJd9Hf+n+NjzKs1N1Ei0nR5GRLhp71eBw3ZYOgN7b4z >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> 2e6+xiIu7iojTFV5AKjdQlLDzm8miB/jNuH2zdfyqMu+VAhPJt89hLr2H/9nbBO1CbGl >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> rfN9t6fgZjuT2tJ0eXCxQUgjmkewhLCFK9dYlrvjIPwZP9UCvxJfzn8vYo9mA3TD8Y/r >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> 2JDrqlhThs3FY9GfahTZofV3rE6MhxGrMPM0ghIOdvwAyA30PrmGsYC7MUknKewEemWr >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> Xsgna4paPf/LHf1Rp/JrKY/JXyUC1hyWSuJrrfvmWFeA8Mujz8Ff+H6v16vHBSTEtZ7t >>>>>>>>>>>>>>>>>> Qetg== >>>>>>>>>>>>>>>>>> X-Received: by 10.107.34.7 with SMTP id >>>>>>>>>>>>>>>>>> i7mr6244119ioi.76.1441998491021; >>>>>>>>>>>>>>>>>> Fri, >>>>>>>>>>>>>>>>>> 11 Sep 2015 12:08:11 -0700 (PDT) >>>>>>>>>>>>>>>>>> MIME-Version: 1.0 >>>>>>>>>>>>>>>>>> Received: by 10.79.30.70 with HTTP; Fri, 11 Sep 2015 >>>>>>>>>>>>>>>>>> 12:07:31 >>>>>>>>>>>>>>>>>> -0700 >>>>>>>>>>>>>>>>>> (PDT) >>>>>>>>>>>>>>>>>> From: rammohan ganapavarapu <[email protected]> >>>>>>>>>>>>>>>>>> Date: Fri, 11 Sep 2015 12:07:31 -0700 >>>>>>>>>>>>>>>>>> Message-ID: >>>>>>>>>>>>>>>>>> <CALm_VjhaJ0OrEgGCs9Ewr533wgTMpB2iWuXtygf=CnerBP= >>>>>>>>>>>>>>>>>> [email protected]> >>>>>>>>>>>>>>>>>> Subject: subscribe >>>>>>>>>>>>>>>>>> To: >>>>>>>>>>>>>>>>>> users-sc.1441998136.nigfplgkhajmihpcppnj-rammohanganap= >>>>>>>>>>>>>>>>>> [email protected] >>>>>>>>>>>>>>>>>> Content-Type: multipart/alternative; >>>>>>>>>>>>>>>>>> boundary=001a1140f36ad31db6051f7d6f91 >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> --------------------------------------------------------------------- >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> To unsubscribe, e-mail: [email protected] >>>>>>>>>>>>>>>> >>>>>>>>>>>>>>>> For additional commands, e-mail: [email protected] >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>>>> >>>>>>>>>>>>> --------------------------------------------------------------------- >>>>>>>>>>>>> To unsubscribe, e-mail: [email protected] >>>>>>>>>>>>> For additional commands, e-mail: [email protected] >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>>>>> >>>>>>>>>> --------------------------------------------------------------------- >>>>>>>>>> To unsubscribe, e-mail: [email protected] >>>>>>>>>> For additional commands, e-mail: [email protected] >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>>>>>>> >>>>> --------------------------------------------------------------------- >>>>> To unsubscribe, e-mail: [email protected] >>>>> For additional commands, e-mail: [email protected] >>>>> >>>>> >>>>> >>>>> --------------------------------------------------------------------- >>> To unsubscribe, e-mail: [email protected] >>> For additional commands, e-mail: [email protected] >>> >>> >>> > > > --------------------------------------------------------------------- > To unsubscribe, e-mail: [email protected] > For additional commands, e-mail: [email protected] > >
