最近在
Hadoop
大数据分析上很流行一个叫/var/tmp/java -c /var/tmp/w.conf
的病毒程序,当然了,我本人也被中招了,后来就把在/var/tmp/
里面的程序删除了,并且将定时任务crontab
也清掉才行,那么问题来了,如何能有效阻止黑客利用hadoop yarn
入侵我们的服务器?授权很重要。
使用方法
在core-siet.xml
配置文件中增加如下三行
<property> <name>hadoop.http.filter.initializers</name> <value>org.apache.hadoop.security.AuthenticationFilterInitializer</value> </property> <property> <name>hadoop.http.authentication.type</name> <value>simple</value> </property> <property> <name>hadoop.http.authentication.signature.secret.file</name> <value>/hadoop/hdfs/hadoop-http-auth-signature-secret</value> </property>
创建/hadoop/hdfs/hadoop-http-auth-signature-secret
文件,里面输入自己想要的密码
然后将此文件复制到集群当中
scp core-site.xml node1:/hadoop_home/etc/hadoop/ ...
重启hadopp集群
./stop-all.sh ./start-all.sh
页面访问
http://localhost:50070?user.nam=你的密码
第一次输入需要,后面会将类似以下信息放到浏览器Cookies中 hadoop.auth="u=你的密码&p=你的密码&t=simple&e=1530846740246&s=xxxxxx"
作者:dounine
链接:https://www.jianshu.com/p/90c12c366d79
点击查看更多内容
为 TA 点赞
评论
共同学习,写下你的评论
评论加载中...
作者其他优质文章
正在加载中
感谢您的支持,我会继续努力的~
扫码打赏,你说多少就多少
赞赏金额会直接到老师账户
支付方式
打开微信扫一扫,即可进行扫码打赏哦