踩坑: 1、php程序执行linux命令是以webserver的user用户(如apache 、www……)操作的,需要在/etc/sudoers添加用户免密码操作权限; 2、以webserver用户执行的命令都只能在其默认根目录中进行,如apache根目录在/usr/share/httpd ; 3 ...
分类:
Web程序 时间:
2018-08-10 19:35:42
阅读次数:
657
今天误操作修改了/etc/sudoers的权限,将它的权限改成了777,结果就导致执行所有sudo的命令都报错。 sudo: /etc/sudoers is world writable sudo: no valid sudoers sources found, quitting 想重新把它的权限修 ...
分类:
系统相关 时间:
2018-08-09 15:47:21
阅读次数:
616
一、用户的管理1、思考:系统中为什么要有用户?底层的安全设定的一部分,用户有特定的权力。限制权力组:用来共享权力的两种:能决定的叫附加组(不一定都有)不能改变的组初始组(所有用户都有)2、用户存在的形式用户是以表格的形式存在加上调用的配置文件3、用户配置文件/etc/passwd用户信息文件用户名称:密码:用户id(用户×××号):组id:用户说明:用户家目录:默认用户使用的shell/etc/g
分类:
系统相关 时间:
2018-08-09 14:57:56
阅读次数:
282
root创建新的账号 1.ssh root@ip 2.add user xx 3.(sudo)gpasswd -a xl sudo 4.sudo visudo 5.xx ALL=(ALL:ALL) ALL 本地配置公钥 a.已有 3. eval "$(ssh-agent -s)"(在.ssh里) 4 ...
分类:
其他好文 时间:
2018-08-08 17:34:14
阅读次数:
174
文件配置: 1, /etc/ssh/sshd_config ssh配置文件 2, /etc/shadow 密码文件 3, /etc/sudoers 授权用户管理文件 4, /etc/issue 系统信息文件,可删除 5,/etc/issue.net 远程登入欢迎信息需要更改 6, /etc/redh ...
分类:
系统相关 时间:
2018-07-29 13:09:02
阅读次数:
247
一.linux服务装机前的优化工作。echo“>/etc/udev/rules.d/70-persistent-net.rules”>/etc/rc.local开机自动执行2.关闭SELINUXsed-i‘s#SELINUX=enforcing#SELINUX=disabled#g’/etc/selinux/configgetenforce(查看SELINUX)setenforce0(
分类:
系统相关 时间:
2018-07-28 13:59:26
阅读次数:
210
如果执行sudo命令的用户没有执行sudo的权限,执行sudo命令时会报下面的错[rootr@localhost ]# sudo yum install gcc-c++ rootr is not in the sudoers file.This incident will be reported设置 ...
分类:
系统相关 时间:
2018-07-27 14:36:29
阅读次数:
184
CentOS6系统下,普通用户使用sudo执行命令时报错: xxx is not in the sudoers file.This incident will be reported" 解决方法就是在/etc/sudoers文件里给该用户添加权限。如下: 1.切换到root用户下 2./etc/su ...
分类:
其他好文 时间:
2018-07-26 18:42:17
阅读次数:
614
1先进入root下: sudo -i 2.在/home下: useradd -r -m -s /bin/bash spark 建立新用户 spark passwd spark 添加密码 3、添加权限 chmod +w /etc/sudoers vim /etc/sudoers 添加一句 : spar ...
分类:
系统相关 时间:
2018-07-26 14:54:19
阅读次数:
159
ubuntu添加账号useradd-d/home/test-m-s/bin/bashtestvim/etc/sudoerstestALL=(ALL)NOPASSWD:ALL查看所有用户的crontabforuin`cat/etc/passwd|cut-d":"-f1`;docrontab-l-u$u;done
分类:
系统相关 时间:
2018-07-25 17:04:07
阅读次数:
184