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
官方网站:
目录
1.查看错误日志 /var/log/cron **********. 1
1.2.1 No space left on device. 1
[if !supportLists]第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]
网友评论