linux报错整理-1
2019-05-20 本文已影响0人
刘Huai
1. 安装软件时候报错
报错yum install的时候提示:Loaded plugins: fastestmirror 加载插件
'fastestmirror'是yum的一个加速插件,这里是插件提示信息是插件不能用了。
不能用就先别用呗,禁用掉,先yum了再说。
1.修改插件的配置文件
# vi /etc/yum/pluginconf.d/fastestmirror.conf
enabled = 1//由1改为0,禁用该插件
2.修改yum的配置文件
# vi /etc/yum.conf
plugins=1//改为0,不使用插件
参考:
http://blog.csdn.net/pk0071/article/details/14170065
2. 同步的时候报错,解决方法 模块名前边不要加 /
[root@nfs01 /]# rsync -av /webdata_bak rsync_backup@10.0.0.41::/nfsbak
ERROR: The remote path must start with a module name not a /
rsync error: error starting client-server protocol (code 5) at main.c(1648) [sender=3.1.2]
3. nfs 挂载报错
mount.nfs: access denied by server while mounting 172.16.1.31:/dasa
访问拒绝原因1: 配置文件网段错误
访问拒绝原因2:配置文件写错,或者挂载目录写错
mount.nfs: /upload is busy or already mounted
卸载所有挂载 目录,重新挂载
4. ansible 删除用户
"msg": "userdel: user old is currently used by process 6639\n",
原因 用户正在登陆,注销用户就可以解决
5. ansible
ERROR! the field 'hosts' is required but was not set
未设置hosts主机
6. nginx
nginx: [emerg] getpwnam("www") failed
没有创建www用户,服务无法启动
7. ansible playbook 设置变量第三种方法之后
Invalid characters were found in group names but not replaced, use -vvvv to see details
翻译:在组名中发现无效字符,但未被替换,请使用-vvvv查看详细信
ansible 下边hosts文件中有无效字符,更改掉就行了
8. ansible 剧本设置变量第二种方法
The task includes an option with an undefined variable
变量无效,检查变量名称是否正确,与剧本中的变量设置是否一致