websphere 8.5.5.12 JSESSIONID 长度

来源:互联网 发布:js 判断日期大小 编辑:程序博客网 时间:2024/05/22 20:08

解决方法  : cookie 名 随便改一个    然后保存    然后重启 websphere   .

windows 关闭 websphere 方法,实在没有效果 重启电脑


websphere 进程
websphere 监听的是8880端口, 一个server占用300M的内存。


1。查看进程号


>netstat -aon | findstr "8880"


TCP 0.0.0.0:8880 0.0.0.0:0 LISTENING 7872
TCP [::]:8880 [::]:0 LISTENING 7872


2。查看进程信息


>tasklist | findstr "7872"


java.exe                      7872 Console                    2    329,408 K


3。杀掉进程


>taskkill /pid 7872 /F


SUCCESS: The process with PID 7872 has been terminated.

原创粉丝点击