king

Linux下查看用户登陆后的操作记录

king 运维技术 2022-11-11 456浏览 0

这时候通过查看历史记录(命令:history)是没有什么意义了。那有没有什么办法实现通过记录登陆后的IP地址和某用户名所操作的历史记录呢?答案:有的。 通过在/etc/profile里面加入以下代码就可以实现: PS1=”`whoami`@`hostname`:”‘[$PWD]’ history USER_IP=`who -u am i 2>/dev/null| awk ‘{print $NF}’|sed -e ‘s/[()]//g’` if [ “$USER_IP” = “” ] then USER_IP=`hostname` fi if [ ! -d /tmp/dbasky ] then mkdir /tmp/dbasky chmod 777 /tmp/dbasky fi if [ ! -d /tmp/dbasky/${LOGNAME} ] then mkdir /tmp/dbasky/${LOGNAME} chmod 300 /tmp/dbasky/${LOGNAME} fi export HISTSIZE=4096 DT=`date ” %Y%m%d_%H%M%S”` export HISTFILE=”/tmp/dbasky/${LOGNAME}/${USER_IP} dbasky.$DT” chmod 600 /tmp/dbasky/${LOGNAME}/*dbasky* 2>/dev/null

其实

继续浏览有关 系统运维 的文章
发表评论