day 18 定时任务调试及用户管理

Day 18


作者:翟玉龙

归档:课堂笔记

2019/3/25

快捷键:

Ctrl  + 1    标题1

Ctrl  + 2    标题2

Ctrl  + 3    标题3

Ctrl  + 4    实例

Ctrl  + 5    程序代码

Ctrl  + 6    正文

格式说明:

蓝色字体:注释

黄色背景:重要

绿色背景:注意

老男孩教育教学核心思想6重:重目标、重思路、重方法、重实践、重习惯、重总结

学无止境,老男孩教育成就你人生的起点!

联系方式:

网站运维QQ交流群:

Linux 385168604架构师390642196

Python 29215534大数据421358633

官方网站:

http://www.oldboyedu.com 

目录

学无止境,老男孩教育成就你人生的起点!... 1

第1章 如何调试定时任务... 1

1.1. 1

1.查看错误日志  /var/log/cron   **********. 1

1.2常见企业故障案例... 1

1.2.1 No space left on device. 1

1.2.2 Export变量生产案例... 1

第2章 用户管理... 2

2.1用户相关文件... 2

2.2 /etc/passwd. 3

2.3 Shadow.. 4

2.4 Group. 4

2.5 Gshadow.. 5

2.6 _shadow.. 5

2.7 MD5. 6

2.8 Bash命令行解释器... 7

2.9用户环境变量及bash -4.2解决方法... 10

2.10 Useradd和usermod. 11

2.11不交互设置密码:... 12



[if !supportLists]第1章 [endif]如何调试定时任务

[if !supportLists]1.1 [endif] 

1.查看错误日志 /var/log/cron   **********

学会最小化排除:

>/var/log/cron

先清空然后再测试和观察。

[if !supportLists]1.     [endif]增加执行任务频率调试任务

把频率调快。************

[if !supportLists]2.     [endif]把定时任务执行时间比当前时间拖后五分钟

00 03

执行,假设当前五点,就调成05

05,有个五分钟的提前量。用来测试。

[if !supportLists]3.     [endif]调整系统时间,把系统时间往前调整。

[if !supportLists]4.     [endif]通过脚本日志输出调试定时任务注意点:有时候程序只能执行一次,一定要在测试环境测试好,然后直接复制到正式

代码发布流程:

办公室测试环境==èIDC机房测试环境==èIDC机房正式环境

防止在正式环境发生错误,从而影响用户体验,业务稳定。

[if !supportLists]1.2 [endif]常见企业故障案例

[if !supportLists]1.2.1 [endif]No space

left on device

磁盘满的报错,原因往往是inode沾满了

因为定时任务没有加&>/dev/null,定时任务执行的时候吧输出给系统root发邮件,邮件服务器postfix服务器默认不开,这些给系统发的邮件都会堆在临时目录(大量小文件存在)

/var/spool/clientmqueue/

/var/spool/Postfix/maildrop

[if !supportLists]1.2.2 [endif]Export变量生产案例

 定时任务在执行脚本的时候,多数情况没办法加载环境变量,特别是(/etc/profile)

登录后怎么操作都对,但是就是放到定时任务不行,

命令行:bash登录方式

[if !supportLists]1.     [endif]手动登录后,加载所有环境变量(~./bash_profile,~/.bash_rc,/etc/profile)

[if !supportLists]2.     [endif]定时任务执行脚本属于非登录状态(/etc/bashrc)

所有运维都会把变量放到此文件/etc/profile。吧这个文件里的变量定义在执行的脚本中重新定义。


具体为crond执行shell是只能识别为数不多地系统环境变量,普通环境变量一般是无法识别的,如果在编写的脚本中需要使用变量,最好使用export重新声明下该变量,以确保脚本正确执行。以后要将其作为一个开发基本规范写上。

1[if !vml]

[endif]

1)在每周6的凌晨3:15执行/home/shell/collect.pl,并将标准输出和标准错误输出到/dev/null设备,请写出crontab中的语句。

######oldboy...

15 03 * * 6 /bin/perl /home/shell/collect.pl>/dev/null 2>&1

2)crontab在11月份内,每天的早上6点到12点中,每隔2小时执行一次/usr/bin/httpd.sh,

怎么实现?

00 6-12/2 * 11 * /bin/sh /usr/bin/httpd.sh&>/dev/null

[if !supportLists]第2章 [endif]用户管理

[if !supportLists]2.1 [endif]用户相关文件

/etc/passwd  用户所在文件

/etc/shadow  密码所在文件

Useradd oldboy 添加用户实际就是修改上述两个文件

Passwd oldboy  改密码实际上就是改密码所在文件


用户组相关文件

 /etc/group 用户组所在文件

 /etc/gshadow 用户组密码所在文件(废弃)

 Useradd oldboy添加用户实际上也会修改上述两个文件(因为要创建同名用户组)

Groupadd sa 添加用户组就是修改上述两个文件

[if !supportLists]2.2 [endif]/etc/passwd

[if !vml]

[endif]Linux是命令行管理,平时输入ls,cp,谁识别,帮我么吧我们想要的输出呢?

这个工具就是Bash (命令行解释器)

CentOS7 默认解释器是bash

[if !vml]

[endif]

[if !supportLists]2.3[endif] Shadow

[if !vml]

[endif]

[if !supportLists]2.4[endif] Group

[if !vml]

[endif]

[if !supportLists]2.5 [endif]Gshadow

[if !vml]

[endif]

[if !supportLists]2.6 [endif]_shadow

[if !vml]

[endif]

[root@oldboyedu ~]# useradd gongli1 -c "beautify woman" -d /tmp -e '2020/10/20'

useradd: warning: the home directory already exists.

Not copying any file from skel directory into it.

[root@oldboyedu ~]# tail -1 /etc/passwd

gongli1:x:1005:1008:beautify woman:/tmp:/bin/bash

[root@oldboyedu ~]# chage -l gongli1

Last password change : Mar 25, 2019

Password expires : never

Password inactive : never

Account expires : Oct 20, 2020  =================

Minimum number of days between password change: 0

Maximum number of days between password change: 99999

Number of days of warning before password expires: 7

给开发等人员添加用户,尽量给截止时间。

/etc/default/useradd 文件

Useradd命令的配置文件

为什么默认的shell就是/bin/bash

为什么默认的家目录在home下

为什么默认的家目录/home、用户名下面有很多隐藏文件,从哪来呢

[if !vml]

[endif]

修改方法:

Useradd -D -s /bin/sh   相当于vim编辑文件

[if !supportLists]2.7 [endif]MD5

md5sum 给文件设置指纹(计算和检查MD5数字信息)


[root@oldboyedu ~]# md5sum /etc/passwd/etc/shadow /etc/group /etc/gshadow

2fe9f002726ed0a138d67cd44722f1a6  /etc/passwd

c2ca41415dca17f1a3dc3c286a9b9bff  /etc/shadow

c475144a13d87a400b5e16fe6bd70baf  /etc/group

659ef4f533df0fa7e457f87755fb1c27  /etc/gshadow



[root@oldboyedu ~]# useradd bingbing


文件发生变化

[root@oldboyedu ~]# md5sum /etc/passwd/etc/shadow /etc/group /etc/gshadow

39d60eff90ecd0326fe59e6464b464ad  /etc/passwd

0aa8d3b157f042876ec0190a2808a377  /etc/shadow

cee8bc6e85f9dfb9dc0a04e452e834f4  /etc/group

cdfd26351f409ee32fca53a22ad15912  /etc/gshadow


[root@oldboyedu ~]# grep bingbing  /etc/passwd /etc/shadow /etc/group/etc/gshadow

/etc/passwd:bingbing:x:1004:1006::/home/bingbing:/bin/bash

/etc/shadow:bingbing:!!:17980:0:99999:7:::

/etc/group:bingbing:x:1006:

/etc/gshadow:bingbing:!::



/etc/passwd文件:

[if !supportLists]2.8 [endif]Bash命令行解释器


Linux是命令行管理,平时输入ls,cp,谁识别,帮我们把我们想要的输出呢?

这个工具就是bash(命令行解释器)。 * ?[abc]



用户登录:输入命令,希望哪个解释器解释(结尾列决定)

/etc/passwd:bingbing:x:1004:1006::/home/bingbing:/bin/bash


CentOS7默认解释器是bash。


/etc/passwd里的解释器

[root@oldboyedu ~]# awk -F ":"'{print $NF}' /etc/passwd|sort|uniq -c

     6 /bin/bash

     1 /bin/sync

     1 /sbin/halt

    18 /sbin/nologin

     1 /sbin/shutdown

[root@oldboyedu ~]# cat /etc/shells

/bin/sh

/bin/bash

/usr/bin/sh

/usr/bin/bash


bash是sh的扩展,sh是bash的软连接。


[root@oldboyedu ~]# ls -l /bin/sh

lrwxrwxrwx. 1 root root 4 Mar  4 11:15 /bin/sh -> bash



/bin/bash /server/scripts/bak.sh


[root@oldboyedu ~]# tail -1 /etc/shadow

bingbing 用户

:!!      密码

:17980   最近更改密码的时间

:0       禁止修改密码的天数

:99999   用户必须更改口令的天数

:7       警告更改密码的期限

:               在用户密码过期之后到禁用账户的天数

:               从1970年1月1日起,到用户被禁用的天数

:               保留


/etc/group

/etc/gshadow



[root@oldboyedu ~]# useradd gongli -u 888-s /sbin/nologin -M


[root@oldboyedu ~]# tail -1 /etc/passwd

gongli:x:888:1007::/home/gongli:/sbin/nologin


bingbing:x:1004:1006::/home/bingbing:/bin/bash



[root@oldboyedu ~]# useradd gongli1 -c"beautify woman" -d /tmp -e '2020/10/20'

useradd: warning: the home directory alreadyexists.

Not copying any file from skel directoryinto it.


[root@oldboyedu ~]# tail -1 /etc/passwd

gongli1:x:1005:1008:beautifywoman:/tmp:/bin/bash


[root@oldboyedu ~]# chage -l gongli1

Last password change                                   : Mar 25, 2019

Password expires                            : never

Password inactive                                  : never

Account expires                                     : Oct 20, 2020  =================

Minimum number of days between passwordchange             : 0

Maximum number of days between passwordchange             : 99999

Number of days of warning before passwordexpires       : 7


给开发等人员添加用户,尽量给截止时间。



[root@oldboyedu ~]# useradd gongli2 -gincahome

[root@oldboyedu ~]# id gongli2

uid=1006(gongli2) gid=1004(incahome)groups=1004(incahome)



/etc/default/useradd文件 useradd命令的配置文件

默认shell就是/bin/bash

为什么默认的家目录在home下

为什么默认的家目录/home/用户名下面有很多隐藏文件,从哪来的。


就是/etc/default/useradd文件配置的。


[root@oldboyedu ~]# cat/etc/default/useradd

# useradd defaults file

GROUP=100

HOME=/home

INACTIVE=-1

EXPIRE=

SHELL=/bin/bash

SKEL=/etc/skel

CREATE_MAIL_SPOOL=yes


修改方法:

useradd -D -s /bin/sh   相当于vim编辑/etc/default/useradd文件。

[root@oldboyedu ~]# useradd -D -s /bin/sh

You have new mail in /var/spool/mail/root

[root@oldboyedu ~]# cat/etc/default/useradd

# useradd defaults file

GROUP=100

HOME=/home

INACTIVE=-1

EXPIRE=

SHELL=/bin/sh

SKEL=/etc/skel

CREATE_MAIL_SPOOL=yes


[root@oldboyedu ~]# useradd chenglong1

You have new mail in /var/spool/mail/root

[root@oldboyedu ~]# tail -1 /etc/passwd

chenglong1:x:1007:1009::/home/chenglong1:/bin/sh

[root@oldboyedu ~]# chage -l chenglong1

Last password change                                   : Mar 25, 2019

Password expires                            : never

Password inactive                                  : never

Account expires                                     : Oct 21, 2020

Minimum number of days between passwordchange             : 0

Maximum number of days between password change             : 99999

Number of days of warning before passwordexpires       : 7

[if !supportLists]2.9 [endif]用户环境变量及bash -4.2解决方法


/etc/skel目录,创建用户默认就会把此目录下的文件拷贝到/home/用户名下。

/etc/skel 为每个用户提供用户环境变量的目录。

[root@oldboyedu ~]# ls /etc/skel -A

.bash_logout  .bash_profile .bashrc

===================================================

.bash_logout  .bash_profile .bashrc用户环境变量


登录系统后,命令行出现如下提示:为什么?

[root@oldboyedu /home/chenglong1]# su -chenglong1

-sh-4.2$

-sh-4.2$

解答:用户的环境变量缺失导致的。

执行如下命令解决

-sh-4.2$ cp /etc/skel/.bash* .

-sh-4.2$ source ./.bash_profile ./.bashrc

[chenglong1@oldboyedu ~]$

[chenglong1@oldboyedu ~]$


-sh-4.2$ exportPS1='[\[\e[34;1m\]\u@\[\e[0m\]\[\e[32;1m\]\H\[\e[0m\]\[\e[31;1m\]\w\[\e[0m\]]\$'

[chenglong1@oldboyedu ~]$

[if !supportLists]2.10 [endif]Useradd和usermod


添加用户要用的文件

/etc/login.defs 了解


添加用户要用的文件

/etc/login.defs  /etc/skel /etc/default/useradd



编辑/etc/passwd,通过注释来删除。

#chenglong1:x:1007:1009::/home/chenglong1:/bin/sh

"/etc/passwd" 30L, 1362Cwritten                                                             

[root@oldboyedu ~]# su - chenglong1

su: user chenglong1 does not exist



[root@oldboyedu ~]# useradd -u 9999 -s

/bin/sh -M -g sa -c "老男孩" -e "2019/5/1" zongsheng

[root@oldboyedu ~]# tail -1 /etc/passwd

zongsheng:x:9999:1003:老男孩:/home/zongsheng:/bin/sh

[root@oldboyedu ~]# id zongsheng

uid=9999(zongsheng) gid=1003(sa)groups=1003(sa)

[root@oldboyedu ~]# chage -l zongsheng

Last password change                                   : Mar 25, 2019

Password expires                            : never

Password inactive                                  : never

Account expires                                     : May 01, 2019

Minimum number of days between password change             : 0

Maximum number of days between passwordchange             : 99999

Number of days of warning before passwordexpires       : 7


usermod -u 8888 -s /bin/bash -m

/home/zongsheng -g incahome -c "男孩" -e "2020/5/1"

[root@oldboyedu ~]# usermod -u 8888 -s

/bin/bash -g incahome -c "男孩" -e "2020/5/1" zongsheng

[root@oldboyedu ~]# chage -l zongsheng

Last password change                                   : Mar 25, 2019

Password expires                            : never

Password inactive                                  : never

Account expires                                     : May 01, 2020

Minimum number of days between passwordchange             : 0

Maximum number of days between passwordchange             : 99999

Number of days of warning before passwordexpires       : 7

[root@oldboyedu ~]# id zongsheng

uid=8888(zongsheng) gid=1004(incahome)groups=1004(incahome)

[root@oldboyedu ~]# tail -1 /etc/passwd

zongsheng:x:8888:1004:男孩:/home/zongsheng:/bin/bash

You have new mail in /var/spool/mail/root


usermod -u 8888 -s /bin/bash -g incahome -c

"男孩" -e"2020/5/1" zongsheng

usermod -m /home/zongsheng zongsheng


[if !supportLists]2.11 [endif]不交互设置密码:

方法1:

[root@oldboyedu ~]# echo 123456|passwd--stdin oldgirl

Changing password for user oldgirl.

passwd: all authentication tokens updatedsuccessfully.


方法2:

[root@oldboyedu ~]# echo 123456 >pass

[root@oldboyedu ~]# cat pass

123456

[root@oldboyedu ~]# passwd --stdin oldgirl

Changing password for user oldgirl.

passwd: all authentication tokens updatedsuccessfully.



[root@oldboyedu ~]# tail -4 /etc/passwd|awk-F ":" '{print $1":oldboy"}' >user.log

[root@oldboyedu ~]# cat user.log

gongli1:oldboy

gongli2:oldboy

chenglong1:oldboy

zongsheng:oldboy


chpasswd对密码文件的要求是上述user.log


方法1:

[root@oldboyedu ~]# chpasswd

方法2:

[root@oldboyedu ~]# tail -4 /etc/passwd|awk-F ":" '{print $1":oldboy"}'|chpass

[if !vml]

[endif]

                                                                             编辑/etc/passwd ,通过注释来删除

[if !vml]

[endif]

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,864评论 6 494
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,175评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,401评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,170评论 1 286
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,276评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,364评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,401评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,179评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,604评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,902评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,070评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,751评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,380评论 3 319
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,077评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,312评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,924评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,957评论 2 351

推荐阅读更多精彩内容