Tag: Shell
All the articles with the tag "Shell".
Mac、linux安装brew终极办法
Published: at 04:13 PM安装brew的时候是不是经常碰到连不上或者下载缓慢的情况,下面方法可以帮你解决这个问题: 在终端粘贴如下命令回车就可以了,注意执行后的命令行提示,可能要输入开机密码 /bin/zsh -c "$(curl -fsSL https//gite...
linux expect scp自动输入密码
Published: at 09:26 AMExpect是一个根据脚本与其他交互程序进行“对话”的程序,通过脚本,Expect根据程序的输出信息来判断需要什么输入,然后将输入信息发送给程序。详细文档(https//linux.die.net/man/1/expect) 现在通过一个简单的例子来使用它,使用scp在不同机器间传输文件每次都要输入密...
linux 简单服务启动、关闭脚本
Published: at 09:35 AMlinux 简单服务启动、关闭脚本 假如我们的目录结构如下: /home/project/bin/shell 脚本所在目录 /home/project/TestServer/bin 可执行程序目录 /home/project/TestServer/lib 依赖库目录 服务名为:TestServer 启动脚本start.sh: /bin/bash appNa...
Linux常用命令大全
Published: at 06:38 AM清理缓存 echo 1 > /proc/sys/vm/dropcaches echo 2 > /proc/sys/vm/dropcaches echo 3 > /proc/sys/vm/dropcaches 查看是否被linux系统OOM killer egrep -i -r 'killed process' /var/log 解压war包 unzip –oq news-test.war –d news-test ...
linux实用命令备忘录
Published: at 02:28 PM查看某个进程是否存在 ps -ef grep 进程名 查看一个端口被什么进程占用 netstat -tnlp grep 端口号 -t或--tcp:显示TCP传输协议的连线状况; -n或--numeric:直接使用ip地址,而不通过域名服务器; -l或--listening:显示监控中的服务器的Socket; -p或--...
简单shell守护脚本——mongodb
Published: at 02:06 AM简单shell守护脚本——mongodb 由于云服务器内存不够,有时候mongodb会崩溃掉,此时我的博客会完全访问不了。写个进程守护脚本让它自动重启。 /bin/sh export RUNDIR=/root/mongodb/bin while true; do server=ps aux grep mongod grep -v grep ...