Just sharing the learning experience related to @ngrx/store and @ngrx/effects. In my personal opinion, I fell there are tow different types of coding ...
分类:
其他好文 时间:
2016-11-11 07:49:18
阅读次数:
337
Windows不像Linux,Unix那样,ps -ef 查出端口和进程号,然后根据进程号直接kill进程。 Windows根据端口号杀死进程要分三步: 第一步 根据 端口号 寻找 进程号 TCP 127.0.0.1:9050 0.0.0.0:0 LISTENING 2056 看到了吗,端口被进程号 ...
1. 查看端口占用 在windows命令行窗口下执行: netstat -aon|findstr "8080" TCP 127.0.0.1:80 0.0.0.0:0 LISTENING 2448 端口“8080”被PID(进程号)为2448的进程占用。 查看端口“8080”被哪个应用占用,,继续执行 ...
分类:
系统相关 时间:
2016-11-05 18:07:32
阅读次数:
187
C:\>netstat -aon|findstr "8080" TCP 127.0.0.1:8080 0.0.0.0:0 LISTENING 2448看到了吗,端口被进程号为2448的进程占用,继续执行下面命令:C:\>tasklist|findstr "2448" thread.exe 2016 ...
分类:
其他好文 时间:
2016-11-03 16:15:08
阅读次数:
203
错误信息: listen(): bind() failed errno:48 Address already in use for socket: 0.0.0.0:27017 27017端口已经被占用 完整error信息 2016-10-24T23:46:56.314+0800 E NETWORK ...
分类:
数据库 时间:
2016-10-25 02:46:29
阅读次数:
426
一、在reducer中,返回的state必须是全新的对象,否则,redux不会执行listening方法,因为redux会认为state没有更新过,没必要重新渲染view。 出现问题的例子: 是的,就是这个例子,就算旧state的name值修改了,但是redux不会认为state作出改变的,我没有去 ...
分类:
其他好文 时间:
2016-10-24 14:06:04
阅读次数:
137
In addition to listening to the port you specified (1100) the JMX server also listens to a randomly chosen (ephemeral) port.Check, e.g. with lsof -i|g ...
分类:
其他好文 时间:
2016-10-13 14:32:04
阅读次数:
415
#!/bin/bash
###检查docker启动启动
c=`date+%F‘‘%T`
a=`netstat-a|grepdocker|awk‘{print$7}‘`
while:;do
if["$a"=="LISTENING"]
then
echo"$cthedockerisstartup">>/tmp/dockerstatus.log
else
echo"$cthedockerisnotrunning">>/tmp/dockerstatus.log&&s..
分类:
系统相关 时间:
2016-09-30 07:56:02
阅读次数:
168
netstat -anp -a, --all, --listening display all sockets (default: connected) -n, --numeric don't resolve names -p, --programs display PID/Program name ...
分类:
系统相关 时间:
2016-09-21 19:58:48
阅读次数:
192
--windows 2008 r2 系统默认80端口被系统占用的处理 --使用netstat 命令查看指定端口netstat -ano | findstr :80 如下所示:本地的80端口被进程为4的占用 TCP 0.0.0.0:80 0.0.0.0:0 LISTENING 4 TCP 192.16 ...