编写脚本: [root@localhost ~]# vim /shell/lnmp.sh #!/bin/bash yum -y install epel-release &> /dev/null yum -y clean all &> /dev/null yum -y install nginx p ...
分类:
系统相关 时间:
2020-06-21 20:02:38
阅读次数:
57
记录所有用户登录系统的任何操作日志,以便有据可查。1.编辑/etc/profile文件vim/etc/profilehistoryUSER=`whoami`USER_IP=`who-uami2>/dev/null|awk‘{print$NF}‘|sed-e‘s/[()]//g‘`if["$USER_IP"=""];thenUSER_IP=`hostname`fiif[!-d/var/log/
分类:
系统相关 时间:
2020-06-17 10:43:12
阅读次数:
63
记录所有用户登录系统的任何操作日志,以便有据可查。1.编辑/etc/profile文件vim/etc/profilehistoryUSER=`whoami`USER_IP=`who-uami2>/dev/null|awk‘{print$NF}‘|sed-e‘s/[()]//g‘`if["$USER_IP"=""];thenUSER_IP=`hostname`fiif[!-d/var/log/
分类:
系统相关 时间:
2020-06-17 10:33:52
阅读次数:
61
1.进入你的home目录 cd ~ 2.编辑.bashrc文件 vi .bashrc 3. 将下面的代码加入到文件的最后处 function git_branch { branch="`git branch 2>/dev/null | grep "^\*" | sed -e "s/^\*\ //"` ...
分类:
系统相关 时间:
2020-06-12 10:50:36
阅读次数:
127
一开始执行的命令是 nohup 命令 & 然后过了一天,整个服务器宕掉了,原因是生成的日志文件太多 最后方案 nohup 命令 1>/dev/null 2>&1 & ...
分类:
系统相关 时间:
2020-06-10 19:04:26
阅读次数:
58
命令:nohup java -jar xx.jar >/dev/null &Linux 运行jar包命令如下:方式一: java -jar shareniu.jar 特点:当前ssh窗口被锁定,可按CTRL + C打断程序运行,或直接关闭窗口,程序退出 那如何让窗口不锁定?方式二 java -jar ...
分类:
编程语言 时间:
2020-06-02 09:18:25
阅读次数:
82
来自b站学习课程https://www.bilibili.com/video/BV19t411s7Jx?p=3P3 小节[root@tz script]# ping -c1 www.baidu.com &>/dev/null && echo "baidu is up" || echo "baidu ... ...
分类:
系统相关 时间:
2020-05-31 01:01:00
阅读次数:
73
先无认证方式启动mongodb数据库 /Users/zlp/develop/mongodb/4.2.1/bin/mongod -f config.yaml > /dev/null 2>&1 & config.yaml systemLog: destination: file path: '/User ...
分类:
数据库 时间:
2020-05-22 21:26:38
阅读次数:
171
显示状态1-处于"/"旋转 #!/bin/sh sleep 10 & pid=$! # Process Id of the previous running command spin='-\|/' i=0 while kill -0 $pid 2>/dev/null do i=$(( (i+1) % ...
分类:
系统相关 时间:
2020-05-22 19:39:19
阅读次数:
349
重要目录 | 目录名 | 作用 | 重要目录或文件 | | | | | bin | 存放可执行的二进制文件 || boot|存放系统启动要用到的文件| dev|设备文件 |/dev/zero和/dev/null| etc|系统配置文件|/etc/passwd,/etc/shadow,/etc/gro ...
分类:
系统相关 时间:
2020-05-21 19:56:33
阅读次数:
75