no live upstreams while connecting to upstream
nginx proxy pass the request to local actserver, and get error: 2018/12/04 16:30:08 [error] 3173#0: *3347 no live upstreams while connecting to upstream, client: 223.104.145.4, server: localhost, request: "GET /wap/index?stationId=12322&youqiangId=1&buStaffId=0 HTTP/1.1", upstream: "http://localhost/wap/index?stationId=12322&youqiangId=1&buStaffId=0", host: "xxx.com.cn"
[root@iZ2ze2q9h36kv9347bm10lZ logs]# cat ../conf/nginx.conf
#user nobody;
worker_processes 1;
#error_log logs/error.log;
#error_log logs/error.log notice;
#error_log logs/error.log info;
#pid logs/nginx.pid;
events {
worker_connections 1024;
}
http {
include mime.types;
default_type application/octet-stream;
#log_format main '$remote_addr - $remote_user [$time_local] "$request" '
# '$status $body_bytes_sent "$http_referer" '
# '"$http_user_agent" "$http_x_forwarded_for"';
#access_log logs/access.log main;
sendfile on;
#tcp_nopush on;
#keepalive_timeout 0;
keepalive_timeout 65;
#gzip on;
server {
listen 443;
server_name localhost;
ssl on;
ssl_certificate cert/act_huiyongche_com_cn.pem;
ssl_certificate_key cert/act_huiyongche_com_cn.key;
#charset koi8-r;
#access_log logs/host.access.log main;
location /wsact {
access_log logs/come-websocket.log;
proxy_pass http://localhost:5460; # 代理到上面的地址去
proxy_read_timeout 86400s;
proxy_set_header Host $host;
proxy_set_header X-Real_IP $remote_addr;
proxy_set_header X-Forwarded-for $remote_addr;
proxy_http_version 1.1;
proxy_set_header Upgrade $http_upgrade;
proxy_set_header Connection 'Upgrade';
}
location / {
proxy_pass http://localhost:5460;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
}
server {
listen 80;
server_name localhost;
#charset koi8-r;
#access_log logs/host.access.log main;
location / {
proxy_pass http://localhost:5460;
proxy_set_header X-Real-IP $remote_addr;
proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for;
proxy_set_header Host $http_host;
}
#error_page 404 /404.html;
# redirect server error pages to the static page /50x.html
#
error_page 500 502 503 504 /50x.html;
location = /50x.html {
root html;
}
# proxy the PHP scripts to Apache listening on 127.0.0.1:80
#
#location ~ \.php$ {
# proxy_pass http://127.0.0.1;
#}
# pass the PHP scripts to FastCGI server listening on 127.0.0.1:9000
#
#location ~ \.php$ {
# root html;
# fastcgi_pass 127.0.0.1:9000;
# fastcgi_index index.php;
# fastcgi_param SCRIPT_FILENAME /scripts$fastcgi_script_name;
# include fastcgi_params;
#}
# deny access to .htaccess files, if Apache's document root
# concurs with nginx's one
#
#location ~ /\.ht {
# deny all;
#}
}
# another virtual host using mix of IP-, name-, and port-based configuration
#
#server {
# listen 8000;
# listen somename:8080;
# server_name somename alias another.alias;
# location / {
# root html;
# index index.html index.htm;
# }
#}
# HTTPS server
#
#server {
# listen 443 ssl;
# server_name localhost;
# ssl_certificate cert.pem;
# ssl_certificate_key cert.key;
# ssl_session_cache shared:SSL:1m;
# ssl_session_timeout 5m;
# ssl_ciphers HIGH:!aNULL:!MD5;
# ssl_prefer_server_ciphers on;
# location / {
# root html;
# index index.html index.htm;
# }
#}
}
act provide http and websocket service
@CrossLee this looks strange. Does your any one of your nginx configuration file has configured upstream to "http://localhost/wap/index?" Can you checkout the files under /etc/nginx/conf dir? The issue doesn't look like to be an nginx or your ActFramework application issue
In the mean time, take a look at https://stackoverflow.com/questions/49767001/how-to-solve-nginx-no-live-upstreams-while-connecting-to-upstream-client and change your
proxy_pass http://localhost:5460;
To
proxy_pass http://127.0.0.1:5460;
For both HTTP and websocket proxy pass configuration.
Also please follow https://stackoverflow.com/questions/18627469/how-to-record-reverse-proxy-upstream-server-serving-request-in-nginx-log/26299679#26299679 to setup your log file to get more information from nignx.
@CrossLee this looks strange. Does your any one of your nginx configuration file has configured upstream to "http://localhost/wap/index?" Can you checkout the files under
/etc/nginx/confdir? The issue doesn't look like to be an nginx or your ActFramework application issue
no, there is no upstream configuration in my nginx.conf as you see nginx.conf above. nginx start with /usr/local/nginx/conf/nginx.conf.
I had already change localhost to 127.0.0.1 in nginx.conf 2 days ago, and no such error record until now. I will continue to follow this issue for one week, then I will feedback the result here.
I had searched some answers about
no live upstreams while connecting to upstream
it seems caused by no available connection from backend server(tomcat/php server/act server etc.). so my question is: how many connections act can support per second? is there any doc?
@CrossLee One of the thing about HTTP protocol is short connection, i.e. it setup a connection to server, send through the request, then the server process the request and send out response, and then the connection is closed. so talking about concurrent connection doesn't make too much sense here. And the throughput of Actframework or any other web application server really depends on your application logic.
The TechEmpower Framework Benchmark result reviews this point in a clear way:
The throughput of a JSON serialization test is over 1M per second:

For test that require a single query in request handling, the throughput drop down to 200 to 350 thousands depending on your database access layer:

For test that require 20 db queries per request handling, the throughput keep going down to 10 to 25 thousands:

And the fortune test which loads a batch records in one query and render the HTML page response with the records:

20 updates test require 20 db updates during request handling drags the throughput down to few thousands per second:

So the data tells it is very application relevant when we talking about the number concurrent requests that can be supported by Act (and of course the hardware is also a very important factor).
Back to your case, the 127.0.0.1 change might be the trick. Or it might because the connection is used up by websocket, and we yet need to prove that.
Actframework relies on undertow to handle HTTP and websocket connections, and it scales better than Wildfly on undertow. Unfortunately I could find a data that tells you how many concurrent connections undertow support. However this article compares the most commonly used websocket frameworks in Java, and undertow looks pretty good: https://hoticn.com/files/hoticnPapers/003-paper%209.pdf
2018-12-8 20:05:00记录:
服务器出现502了,重启了act服务器就好了。我看了act日志和nginx日志,发现nginx出现:connect() failed (111: Connection refused) while connecting to upstream的时间点,act的WS在接受消息,接着就是很多no live upstreams while connecting to upstream。
12月4号是上次出现502,重启了act,并做了nginx.conf 的 localhost -> 127.0.0.1。
12月8号,19:01:10是今天nginx的第一条错误日志,
nginx error.log

act.log: 19:01:10的时候正常接受请求,然后下面是websocket的请求,紧接着就没有http请求了,应该是nginx直接返回502了

先记录在这,这个问题还需要什么方法去证明去定位是不是act websocket问题?
2018-12-8 20:22:00补充:
更新信息,不知道是否对定位问题有用:
我们有且只有一家客户(加油站)提供了语音功能(语音功能是WebSocket实现的),客户使用Chrome浏览器登录我们的网站,登录后创建WebSocket连接实时接收服务器发送过来的语音信息,所以按理说,websockt的连接数始终是1:

但是重启前的日志:连接数一直是超过1的:

2018-12-08 20:34:00补充:
https://stackoverflow.com/questions/22697584/nginx-uwsgi-104-connection-reset-by-peer-while-reading-response-header-from-u 这个答案意思是后端服务器请求头buffer-size设置太低。
accepted After spending a lot of time on this, I finally figured it out. There are many references to Nginx and connection reset by peer. Most of them seemed to be related to PHP. I couldn't find an answer that was specific to Nginx and uwsgi.
I finally found a reference to fastcgi and a 502 bad gateway error (https://support.plesk.com/hc/en-us/articles/213903705). That lead me to look for a buffer size limit in the uwsgi configuration which exists as buffer-size. The default value is 4096. From the documentation, it says:
If you plan to receive big requests with lots of headers you can increase this value up to 64k (65535).
There are many ways to configure uwsgi, I happen to use a .ini file. So in my .ini file I tried:
buffer-size=65535 This fixed the problem. You can adjust that to taste. Maybe start with the max and work back until you have an acceptable value, or just leave it at the max.
This was frustrating to track down because there was no error on the uwsgi side of things.
@CrossLee 你试试下次出现问题的时候运行一下 nginx -s reload, 重启 nginx 而不是 act, 看看能不能解决问题. 另外如果当时正在进行 websocket 通讯, 延迟一段时间再执行 nginx -s reload
@greenlaw110 502出现,1、重启nginx:nginx -s reload,访问还是502。2、重启act,可以正常访问链接。
nginx出现502时间:2018-12-15 17:53:11,error.log如下:

检查act.log日志,在2018-12-15 17:53:00出现打开的文件过多异常,但是系统还是可以继续接受请求,如下图:

直到2018-12-15 17:53:12,act服务器最后一次正确处理http请求,如下图标记1。在这后面的http请求,nginx都直接返回502了。另外一个现象:标记2这一块日志是浏览器给act服务器发送WebSocket心跳包的,每隔40秒发一次,服务器都接受到了,是否可以推断服务器目前应该是正常的,至少WebSocket这块应该是正常的?标记3是我重启了act服务器,重启成功后,服务器可以正常处理http请求了。

除了刚刚那个打开文件数过多的exception,没有其他错误日志,还是不太好定位问题。
我好像发现问题了,但是不知道什么原因引起的。 我利用lsof -n | grep pid查看act打开的文件句柄,发现大量重复的css js文件句柄,并且一直在增长。我目前预测是:文件句柄达到系统设置的最大值(ulimit -a | grep open,65535),http请求因为打不开css,js文件所以nginx返回502了。具体为什么会一直连接着,我不知道什么原因。这几个文件就在html页面上引用的(如图2)
图1:

图2:

[root@iZ2ze2q9h36kv9347bm10lZ jiayouactprod2]# lsof -n |grep 29771
java 29771 root cwd DIR 252,1 4096 1574497 /root/jiayouactprod2
java 29771 root rtd DIR 252,1 4096 2 /
java 29771 root txt REG 252,1 8534 1310945 /usr/java/jdk1.8.0_191-amd64/jre/bin/java
java 29771 root mem REG 252,1 157072 262151 /lib64/ld-2.12.so
java 29771 root mem REG 252,1 1926520 262157 /lib64/libc-2.12.so
java 29771 root mem REG 252,1 145936 262166 /lib64/libpthread-2.12.so
java 29771 root mem REG 252,1 22536 262171 /lib64/libdl-2.12.so
java 29771 root mem REG 252,1 47168 262189 /lib64/librt-2.12.so
java 29771 root mem REG 252,1 599392 262273 /lib64/libm-2.12.so
java 29771 root mem REG 252,1 93352 262188 /lib64/libgcc_s-4.4.7-20120601.so.1
java 29771 root mem REG 252,1 51504 1310985 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libinstrument.so
java 29771 root mem REG 252,1 19120 1310963 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libattach.so
java 29771 root mem REG 252,1 283312 1311022 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libsunec.so
java 29771 root mem REG 252,1 99158576 1059653 /usr/lib/locale/locale-archive
java 29771 root mem REG 252,1 217016 786460 /var/db/nscd/hosts
java 29771 root mem REG 252,1 1129617 1311276 /usr/java/jdk1.8.0_191-amd64/jre/lib/resources.jar
java 29771 root mem REG 252,1 3866653 1311154 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/cldrdata.jar
java 29771 root mem REG 252,1 112768 1311011 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libnet.so
java 29771 root mem REG 252,1 93944 1311012 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libnio.so
java 29771 root mem REG 252,1 39176 1310972 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libawt_headless.so
java 29771 root mem REG 252,1 759160 1310971 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libawt.so
java 29771 root mem REG 252,1 51752 1311009 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libmanagement.so
java 29771 root mem REG 252,1 115159 1311206 /usr/java/jdk1.8.0_191-amd64/jre/lib/jce.jar
java 29771 root mem REG 252,1 670340 1311277 /usr/java/jdk1.8.0_191-amd64/jre/lib/jsse.jar
java 29771 root mem REG 252,1 274457 1311162 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunjce_provider.jar
java 29771 root mem REG 252,1 41538 1311161 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunec.jar
java 29771 root mem REG 252,1 247683 1311163 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunpkcs11.jar
java 29771 root mem REG 252,1 3133655 1311213 /usr/java/jdk1.8.0_191-amd64/jre/lib/charsets.jar
java 29771 root mem REG 252,1 2245803 1311033 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/localedata.jar
java 29771 root mem REG 252,1 26060 1050331 /usr/lib64/gconv/gconv-modules.cache
java 29771 root mem REG 252,1 81139 1180872 /usr/share/locale/zh_CN/LC_MESSAGES/libc.mo
java 29771 root mem REG 252,1 792825 1840610 /root/jiayouactprod2/lib/bcpkix-jdk15on-1.59.jar
java 29771 root mem REG 252,1 60686 1840607 /root/jiayouactprod2/lib/commons-logging-1.1.1.jar
java 29771 root mem REG 252,1 546512 1835921 /root/jiayouactprod2/lib/core-3.3.2.jar
java 29771 root mem REG 252,1 301298 1835943 /root/jiayouactprod2/lib/snakeyaml-1.23.jar
java 29771 root mem REG 252,1 596435 1836005 /root/jiayouactprod2/lib/protobuf-java-2.6.0.jar
java 29771 root mem REG 252,1 11320 1840600 /root/jiayouactprod2/lib/qrcode-utils-1.1.jar
java 29771 root mem REG 252,1 264705 1840673 /root/jiayouactprod2/lib/jiayouact-1.1.jar
java 29771 root mem REG 252,1 479881 1836001 /root/jiayouactprod2/lib/commons-lang3-3.5.jar
java 29771 root mem REG 252,1 24956 1840460 /root/jiayouactprod2/lib/xpp3_min-1.1.4c.jar
java 29771 root mem REG 252,1 497679 1835977 /root/jiayouactprod2/lib/org.apache.bval.bundle-1.1.2.jar
java 29771 root mem REG 252,1 2203611 1835979 /root/jiayouactprod2/lib/undertow-core-1.4.26.Final.jar
java 29771 root mem REG 252,1 290339 1840669 /root/jiayouactprod2/lib/logback-classic-1.2.3.jar
java 29771 root mem REG 252,1 122892 1835944 /root/jiayouactprod2/lib/genie-1.9.1-20181130.014323-2.jar
java 29771 root mem REG 252,1 111969 1835934 /root/jiayouactprod2/lib/commons-pool2-2.4.2.jar
java 29771 root mem REG 252,1 40692 1840587 /root/jiayouactprod2/lib/httpmime-4.5.jar
java 29771 root mem REG 252,1 2442625 1835975 /root/jiayouactprod2/lib/guava-20.0.jar
java 29771 root mem REG 252,1 538735 1840615 /root/jiayouactprod2/lib/weixin-java-mp-3.2.0.jar
java 29771 root mem REG 252,1 114892 1835974 /root/jiayouactprod2/lib/patchca-0.0.1.jar
java 29771 root mem REG 252,1 544403 1835969 /root/jiayouactprod2/lib/core-3.2.1.jar
java 29771 root mem REG 252,1 284184 1840505 /root/jiayouactprod2/lib/commons-codec-1.10.jar
java 29771 root mem REG 252,1 31613 1836006 /root/jiayouactprod2/lib/ebean-test-config-11.21.1.jar
java 29771 root mem REG 252,1 70053 1835938 /root/jiayouactprod2/lib/persistence-api-2.2.1.jar
java 29771 root mem REG 252,1 62983 1835961 /root/jiayouactprod2/lib/activation-1.1.jar
java 29771 root mem REG 252,1 150182 1835995 /root/jiayouactprod2/lib/osgl-mvc-1.9.0.jar
java 29771 root mem REG 252,1 395748 1835973 /root/jiayouactprod2/lib/jsoup-1.11.3.jar
java 29771 root mem REG 252,1 74365 1835996 /root/jiayouactprod2/lib/osgl-http-1.9.0.jar
java 29771 root mem REG 252,1 34222 1835994 /root/jiayouactprod2/lib/osgl-cache-1.5.0.jar
java 29771 root mem REG 252,1 519087 1835960 /root/jiayouactprod2/lib/mail-1.5.0-b01.jar
java 29771 root mem REG 252,1 10634 1835942 /root/jiayouactprod2/lib/avaje-datasource-api-3.2.jar
java 29771 root mem REG 252,1 116664 1835982 /root/jiayouactprod2/lib/xnio-nio-3.3.8.Final.jar
java 29771 root mem REG 252,1 589224 1835978 /root/jiayouactprod2/lib/fastjson-1.2.52.jar
java 29771 root mem REG 252,1 72232 1835987 /root/jiayouactprod2/lib/reflectasm-1.11.7.jar
java 29771 root mem REG 252,1 45267 1835997 /root/jiayouactprod2/lib/osgl-storage-1.8.0.jar
java 29771 root mem REG 252,1 173587 1835941 /root/jiayouactprod2/lib/commons-io-2.2.jar
java 29771 root mem REG 252,1 2440899 1835986 /root/jiayouactprod2/lib/ecj-4.6.1.jar
java 29771 root mem REG 252,1 2478616 1840522 /root/jiayouactprod2/lib/act-1.8.14.jar
java 29771 root mem REG 252,1 246174 1840606 /root/jiayouactprod2/lib/commons-beanutils-1.9.3.jar
java 29771 root mem REG 252,1 31881 1835962 /root/jiayouactprod2/lib/image4j-0.7.jar
java 29771 root mem REG 252,1 298895 1835951 /root/jiayouactprod2/lib/ebean-agent-11.11.1.jar
java 29771 root mem REG 252,1 299308 1835937 /root/jiayouactprod2/lib/snakeyaml-1.21.jar
java 29771 root mem REG 252,1 192895 1836000 /root/jiayouactprod2/lib/pat-1.5.3.jar
java 29771 root mem REG 252,1 630994 1835999 /root/jiayouactprod2/lib/rythm-engine-1.3.0.jar
java 29771 root mem REG 252,1 122867 1835991 /root/jiayouactprod2/lib/genie-1.9.1.jar
java 29771 root mem REG 252,1 471901 1840670 /root/jiayouactprod2/lib/logback-core-1.2.3.jar
java 29771 root mem REG 252,1 387307 1840602 /root/jiayouactprod2/lib/jodd-core-3.7.1.jar
java 29771 root mem REG 252,1 38903 1835946 /root/jiayouactprod2/lib/avaje-classpath-scanner-3.1.1.jar
java 29771 root mem REG 252,1 31218 1835993 /root/jiayouactprod2/lib/osgl-logging-1.3.0.jar
java 29771 root mem REG 252,1 63777 1835959 /root/jiayouactprod2/lib/validation-api-1.1.0.Final.jar
java 29771 root mem REG 252,1 23482 1835972 /root/jiayouactprod2/lib/jfiglet-0.0.8.jar
java 29771 root mem REG 252,1 71075 1835963 /root/jiayouactprod2/lib/cdi-api-1.2.jar
java 29771 root mem REG 252,1 264636 1840672 /root/jiayouactprod2/lib/jiayouact-1.0-SNAPSHOT.jar
java 29771 root mem REG 252,1 41668 1835968 /root/jiayouactprod2/lib/javase-3.3.2.jar
java 29771 root mem REG 252,1 24404 1835965 /root/jiayouactprod2/lib/javax.interceptor-api-1.2.jar
java 29771 root mem REG 252,1 1028504 1835992 /root/jiayouactprod2/lib/osgl-tool-1.18.2.jar
java 29771 root mem REG 252,1 155585 1840457 /root/jiayouactprod2/lib/weixin-java-common-3.2.0.jar
java 29771 root mem REG 252,1 73063 1835964 /root/jiayouactprod2/lib/javax.el-api-3.0.0.jar
java 29771 root mem REG 252,1 1821816 1835956 /root/jiayouactprod2/lib/h2-1.4.196.jar
java 29771 root mem REG 252,1 4092400 1840611 /root/jiayouactprod2/lib/bcprov-jdk15on-1.59.jar
java 29771 root mem REG 252,1 70604 1835988 /root/jiayouactprod2/lib/commons-fileupload-1.3.3.jar
java 29771 root mem REG 252,1 85756 1835984 /root/jiayouactprod2/lib/okio-1.14.0.jar
java 29771 root mem REG 252,1 57718 1840601 /root/jiayouactprod2/lib/jodd-http-3.7.1.jar
java 29771 root mem REG 252,1 229478 1836077 /root/jiayouactprod2/lib/weixin-java-pay-3.2.0.jar
java 29771 root mem REG 252,1 58691 1835954 /root/jiayouactprod2/lib/act-sql-common-1.4.4.jar
java 29771 root mem REG 252,1 640724 1835990 /root/jiayouactprod2/lib/joda-time-2.10.1.jar
java 29771 root mem REG 252,1 16516 1840593 /root/jiayouactprod2/lib/jcl-over-slf4j-1.7.24.jar
java 29771 root mem REG 252,1 39402 1835939 /root/jiayouactprod2/lib/ebean-annotation-4.3.jar
java 29771 root mem REG 252,1 321590 1835950 /root/jiayouactprod2/lib/jackson-core-2.9.5.jar
java 29771 root mem REG 252,1 1011798 1836002 /root/jiayouactprod2/lib/mvel2-2.2.8.Final.jar
java 29771 root mem REG 252,1 49248 1835940 /root/jiayouactprod2/lib/avaje-datasource-3.2.2.jar
java 29771 root mem REG 252,1 19716 1840603 /root/jiayouactprod2/lib/jodd-upload-3.7.1.jar
java 29771 root mem REG 252,1 2484154 1835958 /root/jiayouactprod2/lib/act-1.8.15.jar
java 29771 root mem REG 252,1 35516 1835952 /root/jiayouactprod2/lib/avaje-agentloader-2.1.2.jar
java 29771 root mem REG 252,1 2420727 1835936 /root/jiayouactprod2/lib/ebean-11.23.1.jar
java 29771 root mem REG 252,1 517653 1835981 /root/jiayouactprod2/lib/xnio-api-3.3.8.Final.jar
java 29771 root mem REG 252,1 208700 1835989 /root/jiayouactprod2/lib/commons-io-2.5.jar
java 29771 root mem REG 252,1 6744933 1840664 /root/jiayouactprod2/lib/alipay-sdk-java-3.4.27.ALL.jar
java 29771 root mem REG 252,1 7188 1840459 /root/jiayouactprod2/lib/xmlpull-1.1.3.1.jar
java 29771 root mem REG 252,1 2484191 1835901 /root/jiayouactprod2/lib/act-1.8.15-SNAPSHOT.jar
java 29771 root mem REG 252,1 60327 1835935 /root/jiayouactprod2/lib/act-ebean-1.7.5.jar
java 29771 root mem REG 252,1 330399 1835967 /root/jiayouactprod2/lib/javaparser-core-2.4.0.jar
java 29771 root mem REG 252,1 549133 1840458 /root/jiayouactprod2/lib/xstream-1.4.9.jar
java 29771 root mem REG 252,1 588337 1840609 /root/jiayouactprod2/lib/commons-collections-3.2.2.jar
java 29771 root mem REG 252,1 265253 1840671 /root/jiayouactprod2/lib/jiayouact-1.2.jar
java 29771 root mem REG 252,1 336803 1835949 /root/jiayouactprod2/lib/antlr4-runtime-4.7.1.jar
java 29771 root mem REG 252,1 2036609 1836004 /root/jiayouactprod2/lib/mysql-connector-java-8.0.11.jar
java 29771 root mem REG 252,1 7241 1835998 /root/jiayouactprod2/lib/osgl-tool-ext-1.3.0.jar
java 29771 root mem REG 252,1 412117 1835983 /root/jiayouactprod2/lib/okhttp-3.10.0.jar
java 29771 root mem REG 252,1 553762 1835933 /root/jiayouactprod2/lib/jedis-2.9.0.jar
java 29771 root mem REG 252,1 69254 1835970 /root/jiayouactprod2/lib/jcommander-1.72.jar
java 29771 root mem REG 252,1 405053 1835976 /root/jiayouactprod2/lib/act-asm-5.0.5.jar
java 29771 root mem REG 252,1 122752 1835945 /root/jiayouactprod2/lib/genie-1.9.0.jar
java 29771 root mem REG 252,1 231952 1840599 /root/jiayouactprod2/lib/gson-2.8.0.jar
java 29771 root mem REG 252,1 2497 1835966 /root/jiayouactprod2/lib/javax.inject-1.jar
java 29771 root mem REG 252,1 66051243 1311044 /usr/java/jdk1.8.0_191-amd64/jre/lib/rt.jar
java 29771 root mem REG 252,1 126952 1311026 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libzip.so
java 29771 root mem REG 252,1 65928 262212 /lib64/libnss_files-2.12.so
java 29771 root mem REG 252,1 231976 1310990 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libjava.so
java 29771 root mem REG 252,1 66056 1311025 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/libverify.so
java 29771 root mem REG 252,1 7671 1835957 /root/jiayouactprod2/lib/osgl-version-2.0.0-BETA-4-JAVA7.jar
java 29771 root mem REG 252,1 7600 1835947 /root/jiayouactprod2/lib/avaje-classpath-scanner-api-2.2.jar
java 29771 root mem REG 252,1 46177 1835948 /root/jiayouactprod2/lib/ebean-migration-11.9.1.jar
java 29771 root mem REG 252,1 41203 1835953 /root/jiayouactprod2/lib/slf4j-api-1.7.25.jar
java 29771 root mem REG 252,1 113371 1836003 /root/jiayouactprod2/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar
java 29771 root mem REG 252,1 2243036 1835927 /root/jiayouactprod2/lib/guava-17.0.jar
java 29771 root mem REG 252,1 727567 1840461 /root/jiayouactprod2/lib/httpclient-4.5.jar
java 29771 root mem REG 252,1 322234 1840473 /root/jiayouactprod2/lib/httpcore-4.4.1.jar
java 29771 root mem REG 252,1 268780 1835985 /root/jiayouactprod2/lib/jline-2.14.6.jar
java 29771 root mem REG 252,1 66469 1835980 /root/jiayouactprod2/lib/jboss-logging-3.3.2.Final.jar
java 29771 root mem REG 252,1 32768 655385 /tmp/hsperfdata_root/29771
java 29771 root mem REG 252,1 17022752 1311030 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/server/libjvm.so
java 29771 root mem REG 252,1 108560 1310961 /usr/java/jdk1.8.0_191-amd64/jre/lib/amd64/jli/libjli.so
java 29771 root mem REG 252,1 48819 1836066 /root/jiayouactprod2/lib/ebean-test-docker-1.5.10.jar
java 29771 root mem REG 252,1 255587 1835971 /root/jiayouactprod2/lib/jansi-1.16.jar
java 29771 root mem REG 252,1 26290 1835955 /root/jiayouactprod2/lib/jboss-transaction-api_1.2_spec-1.1.1.Final.jar
java 29771 root 0r CHR 1,3 0t0 3788 /dev/null
java 29771 root 1u CHR 136,0 0t0 3 /dev/pts/0
java 29771 root 2u CHR 136,0 0t0 3 /dev/pts/0
java 29771 root 3r REG 252,1 66051243 1311044 /usr/java/jdk1.8.0_191-amd64/jre/lib/rt.jar
java 29771 root 4r REG 252,1 2497 1835966 /root/jiayouactprod2/lib/javax.inject-1.jar
java 29771 root 5r REG 252,1 231952 1840599 /root/jiayouactprod2/lib/gson-2.8.0.jar
java 29771 root 6r REG 252,1 122752 1835945 /root/jiayouactprod2/lib/genie-1.9.0.jar
java 29771 root 7r REG 252,1 405053 1835976 /root/jiayouactprod2/lib/act-asm-5.0.5.jar
java 29771 root 8r REG 252,1 69254 1835970 /root/jiayouactprod2/lib/jcommander-1.72.jar
java 29771 root 9r REG 252,1 553762 1835933 /root/jiayouactprod2/lib/jedis-2.9.0.jar
java 29771 root 10r REG 252,1 412117 1835983 /root/jiayouactprod2/lib/okhttp-3.10.0.jar
java 29771 root 11r REG 252,1 7241 1835998 /root/jiayouactprod2/lib/osgl-tool-ext-1.3.0.jar
java 29771 root 12r REG 252,1 2036609 1836004 /root/jiayouactprod2/lib/mysql-connector-java-8.0.11.jar
java 29771 root 13r REG 252,1 336803 1835949 /root/jiayouactprod2/lib/antlr4-runtime-4.7.1.jar
java 29771 root 14r REG 252,1 265253 1840671 /root/jiayouactprod2/lib/jiayouact-1.2.jar
java 29771 root 15r REG 252,1 26290 1835955 /root/jiayouactprod2/lib/jboss-transaction-api_1.2_spec-1.1.1.Final.jar
java 29771 root 16r REG 252,1 255587 1835971 /root/jiayouactprod2/lib/jansi-1.16.jar
java 29771 root 17r REG 252,1 66469 1835980 /root/jiayouactprod2/lib/jboss-logging-3.3.2.Final.jar
java 29771 root 18r REG 252,1 268780 1835985 /root/jiayouactprod2/lib/jline-2.14.6.jar
java 29771 root 19r REG 252,1 322234 1840473 /root/jiayouactprod2/lib/httpcore-4.4.1.jar
java 29771 root 20r REG 252,1 727567 1840461 /root/jiayouactprod2/lib/httpclient-4.5.jar
java 29771 root 21r REG 252,1 2243036 1835927 /root/jiayouactprod2/lib/guava-17.0.jar
java 29771 root 22r REG 252,1 113371 1836003 /root/jiayouactprod2/lib/hibernate-jpa-2.1-api-1.0.0.Final.jar
java 29771 root 23r REG 252,1 588337 1840609 /root/jiayouactprod2/lib/commons-collections-3.2.2.jar
java 29771 root 24r REG 252,1 41203 1835953 /root/jiayouactprod2/lib/slf4j-api-1.7.25.jar
java 29771 root 25r REG 252,1 549133 1840458 /root/jiayouactprod2/lib/xstream-1.4.9.jar
java 29771 root 26r REG 252,1 330399 1835967 /root/jiayouactprod2/lib/javaparser-core-2.4.0.jar
java 29771 root 27r REG 252,1 60327 1835935 /root/jiayouactprod2/lib/act-ebean-1.7.5.jar
java 29771 root 28r REG 252,1 2484191 1835901 /root/jiayouactprod2/lib/act-1.8.15-SNAPSHOT.jar
java 29771 root 29r REG 252,1 7188 1840459 /root/jiayouactprod2/lib/xmlpull-1.1.3.1.jar
java 29771 root 30r REG 252,1 6744933 1840664 /root/jiayouactprod2/lib/alipay-sdk-java-3.4.27.ALL.jar
java 29771 root 31r REG 252,1 208700 1835989 /root/jiayouactprod2/lib/commons-io-2.5.jar
java 29771 root 32r REG 252,1 517653 1835981 /root/jiayouactprod2/lib/xnio-api-3.3.8.Final.jar
java 29771 root 33r REG 252,1 2420727 1835936 /root/jiayouactprod2/lib/ebean-11.23.1.jar
java 29771 root 34r REG 252,1 35516 1835952 /root/jiayouactprod2/lib/avaje-agentloader-2.1.2.jar
java 29771 root 35r REG 252,1 2484154 1835958 /root/jiayouactprod2/lib/act-1.8.15.jar
java 29771 root 36r REG 252,1 19716 1840603 /root/jiayouactprod2/lib/jodd-upload-3.7.1.jar
java 29771 root 37r REG 252,1 49248 1835940 /root/jiayouactprod2/lib/avaje-datasource-3.2.2.jar
java 29771 root 38r REG 252,1 1011798 1836002 /root/jiayouactprod2/lib/mvel2-2.2.8.Final.jar
java 29771 root 39r REG 252,1 321590 1835950 /root/jiayouactprod2/lib/jackson-core-2.9.5.jar
java 29771 root 40r REG 252,1 39402 1835939 /root/jiayouactprod2/lib/ebean-annotation-4.3.jar
java 29771 root 41r REG 252,1 16516 1840593 /root/jiayouactprod2/lib/jcl-over-slf4j-1.7.24.jar
java 29771 root 42r REG 252,1 640724 1835990 /root/jiayouactprod2/lib/joda-time-2.10.1.jar
java 29771 root 43r REG 252,1 58691 1835954 /root/jiayouactprod2/lib/act-sql-common-1.4.4.jar
java 29771 root 44r REG 252,1 229478 1836077 /root/jiayouactprod2/lib/weixin-java-pay-3.2.0.jar
java 29771 root 45r REG 252,1 57718 1840601 /root/jiayouactprod2/lib/jodd-http-3.7.1.jar
java 29771 root 46r REG 252,1 85756 1835984 /root/jiayouactprod2/lib/okio-1.14.0.jar
java 29771 root 47r REG 252,1 70604 1835988 /root/jiayouactprod2/lib/commons-fileupload-1.3.3.jar
java 29771 root 48r REG 252,1 4092400 1840611 /root/jiayouactprod2/lib/bcprov-jdk15on-1.59.jar
java 29771 root 49r REG 252,1 1821816 1835956 /root/jiayouactprod2/lib/h2-1.4.196.jar
java 29771 root 50r REG 252,1 73063 1835964 /root/jiayouactprod2/lib/javax.el-api-3.0.0.jar
java 29771 root 51r REG 252,1 155585 1840457 /root/jiayouactprod2/lib/weixin-java-common-3.2.0.jar
java 29771 root 52r REG 252,1 1028504 1835992 /root/jiayouactprod2/lib/osgl-tool-1.18.2.jar
java 29771 root 53r REG 252,1 24404 1835965 /root/jiayouactprod2/lib/javax.interceptor-api-1.2.jar
java 29771 root 54r REG 252,1 41668 1835968 /root/jiayouactprod2/lib/javase-3.3.2.jar
java 29771 root 55r REG 252,1 264636 1840672 /root/jiayouactprod2/lib/jiayouact-1.0-SNAPSHOT.jar
java 29771 root 56r REG 252,1 71075 1835963 /root/jiayouactprod2/lib/cdi-api-1.2.jar
java 29771 root 57r REG 252,1 23482 1835972 /root/jiayouactprod2/lib/jfiglet-0.0.8.jar
java 29771 root 58r REG 252,1 63777 1835959 /root/jiayouactprod2/lib/validation-api-1.1.0.Final.jar
java 29771 root 59r REG 252,1 31218 1835993 /root/jiayouactprod2/lib/osgl-logging-1.3.0.jar
java 29771 root 60r REG 252,1 46177 1835948 /root/jiayouactprod2/lib/ebean-migration-11.9.1.jar
java 29771 root 61r REG 252,1 7600 1835947 /root/jiayouactprod2/lib/avaje-classpath-scanner-api-2.2.jar
java 29771 root 62r REG 252,1 7671 1835957 /root/jiayouactprod2/lib/osgl-version-2.0.0-BETA-4-JAVA7.jar
java 29771 root 63r REG 252,1 48819 1836066 /root/jiayouactprod2/lib/ebean-test-docker-1.5.10.jar
java 29771 root 64r REG 252,1 38903 1835946 /root/jiayouactprod2/lib/avaje-classpath-scanner-3.1.1.jar
java 29771 root 65r REG 252,1 387307 1840602 /root/jiayouactprod2/lib/jodd-core-3.7.1.jar
java 29771 root 66r REG 252,1 471901 1840670 /root/jiayouactprod2/lib/logback-core-1.2.3.jar
java 29771 root 67r REG 252,1 122867 1835991 /root/jiayouactprod2/lib/genie-1.9.1.jar
java 29771 root 68r REG 252,1 630994 1835999 /root/jiayouactprod2/lib/rythm-engine-1.3.0.jar
java 29771 root 69r REG 252,1 192895 1836000 /root/jiayouactprod2/lib/pat-1.5.3.jar
java 29771 root 70r REG 252,1 299308 1835937 /root/jiayouactprod2/lib/snakeyaml-1.21.jar
java 29771 root 71r REG 252,1 298895 1835951 /root/jiayouactprod2/lib/ebean-agent-11.11.1.jar
java 29771 root 72r REG 252,1 31881 1835962 /root/jiayouactprod2/lib/image4j-0.7.jar
java 29771 root 73r REG 252,1 246174 1840606 /root/jiayouactprod2/lib/commons-beanutils-1.9.3.jar
java 29771 root 74r REG 252,1 2478616 1840522 /root/jiayouactprod2/lib/act-1.8.14.jar
java 29771 root 75r REG 252,1 2440899 1835986 /root/jiayouactprod2/lib/ecj-4.6.1.jar
java 29771 root 76r REG 252,1 173587 1835941 /root/jiayouactprod2/lib/commons-io-2.2.jar
java 29771 root 77r REG 252,1 45267 1835997 /root/jiayouactprod2/lib/osgl-storage-1.8.0.jar
java 29771 root 78r REG 252,1 72232 1835987 /root/jiayouactprod2/lib/reflectasm-1.11.7.jar
java 29771 root 79r REG 252,1 589224 1835978 /root/jiayouactprod2/lib/fastjson-1.2.52.jar
java 29771 root 80r REG 252,1 116664 1835982 /root/jiayouactprod2/lib/xnio-nio-3.3.8.Final.jar
java 29771 root 81r REG 252,1 10634 1835942 /root/jiayouactprod2/lib/avaje-datasource-api-3.2.jar
java 29771 root 82r REG 252,1 519087 1835960 /root/jiayouactprod2/lib/mail-1.5.0-b01.jar
java 29771 root 83r REG 252,1 34222 1835994 /root/jiayouactprod2/lib/osgl-cache-1.5.0.jar
java 29771 root 84r REG 252,1 74365 1835996 /root/jiayouactprod2/lib/osgl-http-1.9.0.jar
java 29771 root 85r REG 252,1 395748 1835973 /root/jiayouactprod2/lib/jsoup-1.11.3.jar
java 29771 root 86r REG 252,1 150182 1835995 /root/jiayouactprod2/lib/osgl-mvc-1.9.0.jar
java 29771 root 87r REG 252,1 62983 1835961 /root/jiayouactprod2/lib/activation-1.1.jar
java 29771 root 88r REG 252,1 70053 1835938 /root/jiayouactprod2/lib/persistence-api-2.2.1.jar
java 29771 root 89r REG 252,1 31613 1836006 /root/jiayouactprod2/lib/ebean-test-config-11.21.1.jar
java 29771 root 90r REG 252,1 284184 1840505 /root/jiayouactprod2/lib/commons-codec-1.10.jar
java 29771 root 91r REG 252,1 544403 1835969 /root/jiayouactprod2/lib/core-3.2.1.jar
java 29771 root 92r REG 252,1 114892 1835974 /root/jiayouactprod2/lib/patchca-0.0.1.jar
java 29771 root 93r REG 252,1 538735 1840615 /root/jiayouactprod2/lib/weixin-java-mp-3.2.0.jar
java 29771 root 94r REG 252,1 2442625 1835975 /root/jiayouactprod2/lib/guava-20.0.jar
java 29771 root 95r REG 252,1 40692 1840587 /root/jiayouactprod2/lib/httpmime-4.5.jar
java 29771 root 96r REG 252,1 111969 1835934 /root/jiayouactprod2/lib/commons-pool2-2.4.2.jar
java 29771 root 97r REG 252,1 122892 1835944 /root/jiayouactprod2/lib/genie-1.9.1-20181130.014323-2.jar
java 29771 root 98r REG 252,1 290339 1840669 /root/jiayouactprod2/lib/logback-classic-1.2.3.jar
java 29771 root 99r REG 252,1 2203611 1835979 /root/jiayouactprod2/lib/undertow-core-1.4.26.Final.jar
java 29771 root 100r REG 252,1 497679 1835977 /root/jiayouactprod2/lib/org.apache.bval.bundle-1.1.2.jar
java 29771 root 101r REG 252,1 24956 1840460 /root/jiayouactprod2/lib/xpp3_min-1.1.4c.jar
java 29771 root 102r REG 252,1 479881 1836001 /root/jiayouactprod2/lib/commons-lang3-3.5.jar
java 29771 root 103r REG 252,1 264705 1840673 /root/jiayouactprod2/lib/jiayouact-1.1.jar
java 29771 root 104r REG 252,1 11320 1840600 /root/jiayouactprod2/lib/qrcode-utils-1.1.jar
java 29771 root 105r REG 252,1 596435 1836005 /root/jiayouactprod2/lib/protobuf-java-2.6.0.jar
java 29771 root 106r REG 252,1 301298 1835943 /root/jiayouactprod2/lib/snakeyaml-1.23.jar
java 29771 root 107r REG 252,1 546512 1835921 /root/jiayouactprod2/lib/core-3.3.2.jar
java 29771 root 108r REG 252,1 60686 1840607 /root/jiayouactprod2/lib/commons-logging-1.1.1.jar
java 29771 root 109r REG 252,1 792825 1840610 /root/jiayouactprod2/lib/bcpkix-jdk15on-1.59.jar
java 29771 root 110r REG 252,1 2245803 1311033 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/localedata.jar
java 29771 root 111w REG 252,1 57762446 1573857 /root/jiayouactprod2/act.log
java 29771 root 112w REG 252,1 0 1575271 /root/jiayouactprod2/act-db.log
java 29771 root 113w REG 252,1 0 1575274 /root/jiayouactprod2/act-metric.log
java 29771 root 114r REG 252,1 3133655 1311213 /usr/java/jdk1.8.0_191-amd64/jre/lib/charsets.jar
java 29771 root 115r REG 252,1 670340 1311277 /usr/java/jdk1.8.0_191-amd64/jre/lib/jsse.jar
java 29771 root 116r CHR 1,8 0t0 3792 /dev/random
java 29771 root 117r CHR 1,9 0t0 3793 /dev/urandom
java 29771 root 118r CHR 1,8 0t0 3792 /dev/random
java 29771 root 119r CHR 1,8 0t0 3792 /dev/random
java 29771 root 120r CHR 1,9 0t0 3793 /dev/urandom
java 29771 root 121r CHR 1,9 0t0 3793 /dev/urandom
java 29771 root 122r REG 252,1 115159 1311206 /usr/java/jdk1.8.0_191-amd64/jre/lib/jce.jar
java 29771 root 123r REG 252,1 3866653 1311154 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/cldrdata.jar
java 29771 root 124r FIFO 0,8 0t0 15137044 pipe
java 29771 root 125u unix 0xffff88023bb751c0 0t0 15136955 socket
java 29771 root 126w FIFO 0,8 0t0 15137044 pipe
java 29771 root 127u REG 0,9 0 3786 [eventpoll]
java 29771 root 128r FIFO 0,8 0t0 15137045 pipe
java 29771 root 129w FIFO 0,8 0t0 15137045 pipe
java 29771 root 130u REG 0,9 0 3786 [eventpoll]
java 29771 root 131r FIFO 0,8 0t0 15137046 pipe
java 29771 root 132w FIFO 0,8 0t0 15137046 pipe
java 29771 root 133u REG 0,9 0 3786 [eventpoll]
java 29771 root 134r FIFO 0,8 0t0 15137047 pipe
java 29771 root 135w FIFO 0,8 0t0 15137047 pipe
java 29771 root 136u REG 0,9 0 3786 [eventpoll]
java 29771 root 137r FIFO 0,8 0t0 15137048 pipe
java 29771 root 138w FIFO 0,8 0t0 15137048 pipe
java 29771 root 139u REG 0,9 0 3786 [eventpoll]
java 29771 root 140u unix 0xffff880237c50180 0t0 15137051 socket
java 29771 root 141u IPv4 15137053 0t0 TCP *:silkmeter (LISTEN)
java 29771 root 142r REG 252,1 247683 1311163 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunpkcs11.jar
java 29771 root 143r REG 252,1 41538 1311161 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunec.jar
java 29771 root 144r REG 252,1 274457 1311162 /usr/java/jdk1.8.0_191-amd64/jre/lib/ext/sunjce_provider.jar
java 29771 root 145u unix 0xffff880237ed6dc0 0t0 15137057 /tmp/.java_pid29771.tmp
java 29771 root 147r REG 252,1 1129617 1311276 /usr/java/jdk1.8.0_191-amd64/jre/lib/resources.jar
java 29771 root 148u IPv4 15206926 0t0 TCP 10.26.160.234:49782->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 149u IPv4 15206927 0t0 TCP 10.26.160.234:49783->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 150u IPv4 15206928 0t0 TCP 10.26.160.234:49784->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 151u IPv4 15206929 0t0 TCP 10.26.160.234:49785->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 152u IPv4 15206930 0t0 TCP 10.26.160.234:49786->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 153u IPv4 15206931 0t0 TCP 10.26.160.234:49787->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 154u IPv4 15206932 0t0 TCP 10.26.160.234:49788->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 155u IPv4 15206933 0t0 TCP 10.26.160.234:49789->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 156u IPv4 15206934 0t0 TCP 10.26.160.234:49790->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 157u IPv4 15206935 0t0 TCP 10.26.160.234:49791->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 158u IPv4 15206936 0t0 TCP 10.26.160.234:49792->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 159u IPv4 15206937 0t0 TCP 10.26.160.234:49793->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 160u IPv4 15206938 0t0 TCP 10.26.160.234:49794->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 161u IPv4 15206939 0t0 TCP 10.26.160.234:49795->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 162u IPv4 15206940 0t0 TCP 10.26.160.234:49796->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 163u IPv4 15206941 0t0 TCP 10.26.160.234:49797->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 164u IPv4 15206942 0t0 TCP 10.26.160.234:49798->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 165u IPv4 15206943 0t0 TCP 10.26.160.234:49799->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 166u IPv4 15207643 0t0 TCP 10.26.160.234:49829->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 167u IPv4 15207644 0t0 TCP 10.26.160.234:49830->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 168u IPv4 15208348 0t0 TCP 10.26.160.234:49852->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 169u IPv4 15208349 0t0 TCP 10.26.160.234:49853->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 170u IPv4 15209064 0t0 TCP 10.26.160.234:49878->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 171u IPv4 15210078 0t0 TCP 10.26.160.234:49963->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 172u IPv4 15209065 0t0 TCP 10.26.160.234:49879->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 173u IPv4 15209066 0t0 TCP 10.26.160.234:49880->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 174u IPv4 15210079 0t0 TCP 10.26.160.234:49964->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 175u IPv4 15206185 0t0 TCP 10.26.160.234:49757->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 176u IPv4 15206186 0t0 TCP 10.26.160.234:49758->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 177u IPv4 15207645 0t0 TCP 10.26.160.234:49831->100.98.251.215:mysql (ESTABLISHED)
java 29771 root 178u IPv4 15137180 0t0 TCP 127.0.0.1:48300->127.0.0.1:6379 (ESTABLISHED)
java 29771 root 179u IPv4 15137183 0t0 TCP 127.0.0.1:48301->127.0.0.1:6379 (ESTABLISHED)
java 29771 root 180u REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 181u IPv4 15137196 0t0 TCP *:5460 (LISTEN)
java 29771 root 182u IPv4 15175446 0t0 TCP 127.0.0.1:5460->127.0.0.1:46962 (ESTABLISHED)
java 29771 root 183r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 184u REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 185r REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 186w CHR 1,3 0t0 3788 /dev/null
java 29771 root 187r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 188r REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 189r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 190r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 191r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 192r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 193r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 194w CHR 1,3 0t0 3788 /dev/null
java 29771 root 195r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 196r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 197u IPv4 15137585 0t0 TCP 127.0.0.1:48334->127.0.0.1:6379 (ESTABLISHED)
java 29771 root 198u REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 199r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 200r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 201r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 202r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 203r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 204r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 205r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 206r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 207r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 208r REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 209r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 210r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 211r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
java 29771 root 212r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 213r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 214r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
**中间省略N个css,js的连接**
java 29771 root 1263u REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 1264u REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 1265u REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
@CrossLee 感谢感谢! 这个是个很大的发现. 不过我今天在本地尝试了一下,不能重现这个问题. 你能把你的 asset 下面那几个 log 里面出现的资源发给我试试吗?
asset.zip @greenlaw110 github 不能直接上传css,我打了包上传了
主要是这几个
java 29771 root 206r REG 252,1 85578 1835932 /root/jiayouactprod2/classes/asset/js/jquery.min.js
java 29771 root 207r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 208r REG 252,1 132736 1835930 /root/jiayouactprod2/classes/asset/css/zhifubao/antui.min.css
java 29771 root 209r REG 252,1 36277 1835928 /root/jiayouactprod2/classes/asset/css/weixin/weui.min.css
java 29771 root 210r REG 252,1 12414 1835926 /root/jiayouactprod2/classes/asset/css/page.css
@greenlaw110 我新弄了个工程,没有其他东西,只有一个页面。 项目跑起来,访问localhost:5460,然后查看act.pid的值,然后在命令行lsof -n| grep $act.pid的值,你看下结果。 helloworld-1.0-SNAPSHOT-b181216_1806.tar.gz