摘要: 一、shell脚本中$!、$@、$#、$$、$0、$1、$2、$*的含义 $! :Shell最后运行的后台Process的PID(后台运行的最后一个进程的进程ID号) $#:添加到shell当中参数的个数 $$:Shell本身的PID(ProcessID,即脚本运行的当前进程ID号) $0:脚本本身 阅读全文
posted @ 2021-07-06 19:10 豆浆D 阅读(3374) 评论(0) 推荐(0) 编辑
摘要: CentOS7的服务systemctl脚本存放在:/usr/lib/systemd/,有系统(system)和用户(user)之分,需要开机不登陆就能运行的程序,存在系统服务里,即:/usr/lib/systemd/system目录下.CentOS7的每一个服务以.service结尾,一般会分为3部 阅读全文
posted @ 2021-07-06 19:05 豆浆D 阅读(250) 评论(0) 推荐(0) 编辑
摘要: 一 问题 自己开发的程序,如何用shell 脚本实现 启动,关闭,重启,查看状态? 二 方案 #!/bin/sh SERVICE="fm_tuoguan_shell" PROCESS_STATUS="fm" CMD="/developer/robot -s rpcs@node.abc.com:990 阅读全文
posted @ 2021-07-06 18:47 豆浆D 阅读(615) 评论(0) 推荐(0) 编辑
摘要: 下载安装包官网https://activemq.apache.org/download-archives cd /opt wget http://archive.apache.org/dist/activemq/5.11.1/apache-activemq-5.11.1-bin.tar.gz 解压 阅读全文
posted @ 2021-07-06 16:23 豆浆D 阅读(64) 评论(0) 推荐(0) 编辑