-
Notifications
You must be signed in to change notification settings - Fork 3
/
npm淘宝.txt
45 lines (24 loc) · 1.61 KB
/
npm淘宝.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
npm install jquery --registry=https://registry.npm.taobao.org
npm install koa-route --registry=https://registry.npm.taobao.org
npm install art-template --save --registry=https://registry.npm.taobao.org
npm install koa-send --save --registry=https://registry.npm.taobao.org
https://github.com/aui/koa-art-template.git
npm install jquery
npm install --registry=https://registry.npm.taobao.org
npm install -g pm2 --registry=https://registry.npm.taobao.org
ps aux | grep pm2
kill -9 pm2项目对应的进程
#注意这里的 pm2 是全局安装的
pm2 update
#问题解决
ps -ef|grep php|grep -v grep|cut -c 9-15|xargs kill -9
ps -ef|grep pm2|grep -v grep|cut -c 9-15|xargs kill -9
管道符"|"用来隔开两个命令,管道符左边命令的输出会作为管道符右边命令的输入。下面说说用管道符联接起来的
几个命令:
"ps - ef"是linux 里查看所有进程的命令。这时检索出的进程将作为下一条命令"grep mcfcm_st"的输入。
"grep mcfcm_st"的输出结果是,所有含有关键字"mcfcm_st"的进程,这是Oracle数据库中远程连接进程的共同特点。
"grep -v grep"是在列出的进程中去除含有关键字"grep"的进程。
"cut -c 9-15"是截取输入行的第9个字符到第15个字符,而这正好是进程号PID。
"xargs kill -9"中的xargs命令是用来把前面命令的输出结果(PID)作为"kill -9"命令的参数,并执行该令。
"kill -9"会强行杀掉指定进程,这样就成功清除了oracle的所有远程连接进程。其它类似的任务,只需要修改"grep php"中的关键字部分就可以了。
pm2 start app.js