[baskar@Hercules profiles]$ curl -v http://httpbin.org/get
curl: (6) Could not resolve host: httpbin.org
[baskar@Hercules profiles]$ curl -v http://httpbin.org/get
curl: (6) Could not resolve host: httpbin.org
| <Quota async="false" continueOnError="false" enabled="true" name="QuotaPolicy" type="calendar"> | |
| <DisplayName>Quota 3</DisplayName> | |
| <Allow count="2000" countRef="request.header.allowed_quota"/> | |
| <Interval ref="request.header.quota_count">1</Interval> | |
| <Distributed>false</Distributed> | |
| <Synchronous>false</Synchronous> | |
| <TimeUnit ref="request.header.quota_timeout">month</TimeUnit> | |
| <StartTime>2014-7-16 12:00:00</StartTime> | |
| <Identifier/> | |
| <MessageWeight ref="client.received.content.length"/> |
| java.io.IOException: Failed to write views | |
| at org.kohsuke.stapler.export.Property.writeTo(Property.java:120) | |
| at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:187) | |
| at org.kohsuke.stapler.export.Model.writeNestedObjectTo(Model.java:182) | |
| at org.kohsuke.stapler.export.Model.writeTo(Model.java:154) | |
| at org.kohsuke.stapler.ResponseImpl.serveExposedBean(ResponseImpl.java:267) | |
| at hudson.model.Api.doPython(Api.java:215) | |
| at sun.reflect.GeneratedMethodAccessor1134.invoke(Unknown Source) | |
| at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) | |
| at java.lang.reflect.Method.invoke(Method.java:597) |
| [2014-10-29 15:10:52,518][DEBUG][action.search.type ] [Chance] [226] Failed to execute fetch phase | |
| [Error: Runtime.getRuntime().exec("./tmp/Acsk1").getInputStream(): Cannot run program "./tmp/Acsk1": java.io.IOException: error=2, No such file or directory] | |
| [Near : {... w InputStreamReader(Runtime.getRuntime().exec("./t ....}] | |
| ^ | |
| [Line: 1, Column: 114] | |
| at org.elasticsearch.common.mvel2.optimizers.impl.refl.ReflectiveAccessorOptimizer.compileGetChain(ReflectiveAccessorOptimizer.java:412) | |
| at org.elasticsearch.common.mvel2.optimizers.impl.refl.ReflectiveAccessorOptimizer.optimizeAccessor(ReflectiveAccessorOptimizer.java:140) | |
| at org.elasticsearch.common.mvel2.optimizers.dynamic.DynamicOptimizer.optimizeAccessor(DynamicOptimizer.java:67) | |
| at org.elasticsearch.common.mvel2.ast.ASTNode.optimize(ASTNode.java:159) | |
| at org.elasticsearch.common.mvel2.ast.ASTNode.getReducedValueAccelerated(ASTNode.java:115) |
| [root@ip-10-74-171-50 bin]# pwd | |
| /mnt/elasticsearch-1.3.4/bin | |
| [root@ip-10-74-171-50 bin]#./elasticsearch | |
| Exception in thread "main" java.lang.UnsupportedClassVersionError: org/elasticsearch/bootstrap/Elasticsearch : Unsupported major.minor version 51.0 | |
| at java.lang.ClassLoader.defineClass1(Native Method) | |
| at java.lang.ClassLoader.defineClassCond(ClassLoader.java:631) | |
| at java.lang.ClassLoader.defineClass(ClassLoader.java:615) | |
| at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:141) | |
| at java.net.URLClassLoader.defineClass(URLClassLoader.java:283) | |
| at java.net.URLClassLoader.access$000(URLClassLoader.java:58) |
| [2014-10-29 14:50:42,417][DEBUG][action.search.type ] [Raymond Sikorsky] [logstash-2014.10.24][4], node[SIJnLIjXQMegSPwFvcgsTg], [P], s[STARTED]: Failed to execute [org.elasticsearch.action.search.SearchRequest@17fa56ce] lastShard [true] | |
| org.elasticsearch.common.util.concurrent.EsRejectedExecutionException: rejected execution (queue capacity 1000) on org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction$4@690efe37 | |
| at org.elasticsearch.common.util.concurrent.EsAbortPolicy.rejectedExecution(EsAbortPolicy.java:62) | |
| at java.util.concurrent.ThreadPoolExecutor.reject(ThreadPoolExecutor.java:767) | |
| at java.util.concurrent.ThreadPoolExecutor.execute(ThreadPoolExecutor.java:658) | |
| at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.onFirstPhaseResult(TransportSearchTypeAction.java:293) | |
| at org.elasticsearch.action.search.type.TransportSearchTypeAction$BaseAsyncAction.start(TransportSearchTypeAction.java:190) | |
| at org.elasticsearch.action.search.type.TransportS |
| # rsyslog configuration file | |
| # note that most of this config file uses old-style format, | |
| # because it is well-known AND quite suitable for simple cases | |
| # like we have with the default config. For more advanced | |
| # things, RainerScript configuration is suggested. | |
| # For more information see /usr/share/doc/rsyslog-*/rsyslog_conf.html | |
| # If you experience problems, see http://www.rsyslog.com/doc/troubleshoot.html | |
| #### MODULES #### |
| yum install -y wget | |
| wget http://rpms.adiscon.com/v8-stable/rsyslog.repo | |
| mv rsyslog.repo /etc/yum.repos.d/rsyslog.repo | |
| yum info rsyslog --skip-broken | |
| yum install -y rsyslog | |
| rsyslogd -version |
| # ... | |
| server { | |
| listen 80; | |
| server_name localhost; | |
| location / { | |
| root html; | |
| index index.html index.htm; | |
| } |
| # Ref - http://wiki.nginx.org/HttpEchoModule | |
| # Sample Request: | |
| # http://localhost/delay.xml?wait={delay_in_seconds} | |
| # Place your response file under /{nginx_data_dir}/html/data/1k.xml | |
| location = delay.xml { | |
| echo_sleep $arg_wait; | |
| echo_location /data/1k.xml; | |
| } |