当前位置: 首页 > 知识库问答 >
问题:

添加ec2-user以使用hadoop

吕飞翼
2023-03-14
os.system('/home/hadoop/bin/hdfs dfs -put %s PATH_to_HADOOP' % tmp_output)
   [ec2-user@ip-172-31-0-185 input]$ /home/hadoop/bin/hdfs dfs -ls /
Found 2 items
drwxr-xr-x   - hadoop supergroup          0 2014-04-14 22:21 /hbase
drwxrwx---   - hadoop supergroup          0 2014-04-14 22:19 /tmp
    [ec2-user@ip-172-31-0-185 input]$ /home/hadoop/bin/hdfs dfs -mkdir /tmp/stockmarkets
mkdir: Permission denied: user=ec2-user, access=EXECUTE, inode="/tmp":hadoop:supergroup:drwxrwx---
sudo adduser ec2-user hadoop
Usage: useradd [options] LOGIN
Options:
  -b, --base-dir BASE_DIR       base directory for the home directory of the
                                new account
  -c, --comment COMMENT         GECOS field of the new account
  -d, --home-dir HOME_DIR       home directory of the new account
  -D, --defaults                print or change default useradd configuration
  -e, --expiredate EXPIRE_DATE  expiration date of the new account
  -f, --inactive INACTIVE       password inactivity period of the new account
  -g, --gid GROUP               name or ID of the primary group of the new
                                account
  -G, --groups GROUPS           list of supplementary groups of the new
                                account
  -h, --help                    display this help message and exit
  -k, --skel SKEL_DIR           use this alternative skeleton directory
  -K, --key KEY=VALUE           override /etc/login.defs defaults
  -l, --no-log-init             do not add the user to the lastlog and
                                faillog databases
  -m, --create-home             create the user's home directory
  -M, --no-create-home          do not create the user's home directory
  -N, --no-user-group           do not create a group with the same name as
                                the user
  -o, --non-unique              allow to create users with duplicate
                                (non-unique) UID
  -p, --password PASSWORD       encrypted password of the new account
  -r, --system                  create a system account
  -s, --shell SHELL             login shell of the new account
  -u, --uid UID                 user ID of the new account
  -U, --user-group              create a group with the same name as the user
  -Z, --selinux-user SEUSER     use a specific SEUSER for the SELinux user mapping

所以我都被搞糊涂了..请帮忙>....

暂时还没有答案

 类似资料:
  • 问题内容: 我正在尝试从文件中加载数据,并且想将CREATED_DATE和UPDATED_DATE设置为SYSDATE并将CREATE_BY和UPDATED_BY设置为USER 这是我正在使用的表: 这是数据文件: 和我的控制文件: 当我尝试使用SQL Loader加载它时…所有记录均被拒绝: 有什么想法我做错了吗?提前致谢。 问题答案: 就像Oracle所说的那样:添加到您的控制文件中: 这是必

  • 问题内容: 我希望此javascript在id =“ mainSelect”的选择中创建12到100个选项,因为我不想手动创建所有选项标签。你能给我一些指导吗?谢谢 问题答案: 您可以通过一个简单的循环来实现: JS Perf比较了我和imeVidas的答案,是因为我认为他的表情比我的看起来更容易理解/直观,而且我想知道这将如何转化为实现。根据Chromium14/Ubuntu11.04的说法,其

  • 我在连接EBS卷到我的Ubuntu EC2实例时遇到了问题。 以下是我所做的: > 从Amazon AWS控制台,我创建了一个150GB的EBS卷,并将其附加到Ubuntu11.10EC2实例。在EBS卷属性下,“附件”显示:“[我的Ubuntu实例id]://dev/sdf(附件)” 尝试在Ubuntu盒子上安装驱动器,它告诉我“mount:/dev/sdf不是块设备” 错误: mount:错误

  • 问题内容: 我目前正在运行ec2微型实例,但发现该实例有时会耗尽内存。 除了使用更大的实例大小之外,还可以做什么? 问题答案: 解决此问题的方法是向实例添加(即)空间。 分页通过在硬盘驱动器上创建一个区域并将其用于额外的内存来工作,该内存比普通内存要慢得多,但可用空间更多。 要为您的实例添加此额外空间,请输入: 如果您需要超过1024,则将其更改为更高的值。 要在重新启动后默认启用它,请将此行添加

  • 我的要求是,我使用jsplumb.addEndPoint为两个名为“container0”和“container1”的容器添加两个endpoint。 现在我需要通过编程方式使用连接器链接两个endpoint,但是jsplump.connect创建了一个新endpoint并进行连接,而不是使用我使用jsplump.addEndpoint创建的endpoint。 我如何连接这两个endpoint?此外