hadoop命令备忘】的更多相关文章

hadoop dfsadmin -safemode get 查看namenode是否处于安全模式 hadoop dfsadmin -report 显示文件系统的统计信息,以及所连接的各个datanode的信息 http://hadoop.apache.org/docs/r1.0.4/cn/hdfs_shell.html hadoop fs -copyFromLocal <localsrc> URI hadoop fs -copyFromLocal demo.txt /user/wwj/ hdf…
metasploit 常用命令备忘    MSFconsole Commands-------------------------------------24show exploits 查看所有exploitshow payloads 查看所有payloadshow auxiliary 查看所有auxiliarysearch name 搜索exploit 等info 查看加载模块的信息use name 加载模块LHOST 本机IPRHOST 目标IPset function 设置选项值setg…
git 常用命令备忘 仅作为日常使用备忘,并非常用命名整理 删除源端分支 git push orgin --delete branch_a a分支某次提交应用到b分支 切换到branch_b 分支: git checkout branch_b 提交:git cheery-pick xxxxx(提交SHA-1) 合并多次提交为一次提交 git rebase -i HEAD~4 (合并最近4次提交) 然后编辑提交内容,p选择,s合并到更新的提交 --未完待续…
备忘 Ctrl+u:向文件首翻半屏: Ctrl+d:向文件尾翻半屏: Ctrl+f:向文件尾翻一屏: Ctrl+b:向文件首翻一屏: Esc:从编辑模式切换到命令模式: ZZ:命令模式下保存当前文件所做的修改后退出vi: :行号:光标跳转到指定行的行首: :$:光标跳转到最后一行的行首: x或X:删除一个字符,x删除光标后的,而X删除光标前的: D:删除从当前光标到光标所在行尾的全部字符: dd:删除光标行正行内容: ndd:删除当前行及其后n-1行: nyy:将当前行及其下n行的内容保存到寄存…
开场白:这里简单记录一些常用的bash命令,一则备忘,二来希望可以帮助别人解决一些问题. 1.检测文件是否存在 if [ -f ./foo.txt ] then echo the file exists fi 2. 检测目录是否存在 if [ -d ./test1 ] then echo the directory exists fi 3. 让高亮功能一直存在 androidyue@ubuntu:~/Desktop$ ls | grep s --color=always | more 4.使用c…
备忘: 关闭防火墙:# systemctl stop firewalld 查看防火墙状态:#  systemctl status firewalld 停止防火墙:#  systemctl disable firewalld 禁用防火墙:#  systemctl stop firewalld 查看selinux状态:# sestatus 查看某个文件在那个目录:# whereis phpize 安装5.6版本的php:# yum install php56w-redis.x86_64 php的一个…
最近在用Git,查了点相关资料,逻辑依然不太明了,先整理一部分备忘,以后补充 一.本地Git与Github/码云的关联 1. 设置本地用户名,邮箱 git config --global user.name "用户名" git config --global user.email "邮箱" 2. 生成SSH Key 1. ssh-keygen -t rsa -C "邮箱" 2. clip < ~/.ssh/id_rsa.pub //复制SS…
http://www.cnblogs.com/linjiqin/archive/2013/03/08/2949339.html HBase 为用户提供了一个非常方便的使用方式, 我们称之为“HBase Shell”.HBase Shell 提供了大多数的 HBase 命令, 通过 HBase Shell 用户可以方便地创建.删除及修改表, 还可以向表中添加数据.列出表中的相关信息等.备注:写错 HBase Shell 命令时用键盘上的“Delete”进行删除,“Backspace”不起作用.在启…
系统操作 #使用shutdown命令马上重启系统[root@H32 ~]# shutdown –r now #使用shutdown命令马上关闭系统[root@H32 ~]# shutdown –h now #使用shutdown命令设置在15分钟以后自动重启系统[root@H32 ~]# shutdown –r +15 显示在线登陆用户 who 显示当前操作用户 whoami 显示主机名hostname 显示系统信息uname 动态显示当前耗费资源最多进程信息 top 开启服务 service…
1. 查看进程 ps -a 杀掉进程 kill PID 2. 添加计划任务crontab -e 例如:30 21 * * * service httpd restart 每天21:30重启apache 查看crontab状态 service crond status 3.find / -name jiangkong.zip 4.centos修改主机名命令 需要修改两处:一处是/etc/sysconfig/network,另一处是/etc/hosts,只修改任一处会导致系统启动异常.首先切换到ro…