タグ

2014年5月29日のブックマーク (2件)

  • Hadoop initial configuration on OSX

    In this post we’ll get hadoop confgured and copy a file to the hdfs filesystem. If you haven’t already installed the hadoop distribution and set up SSH keys, please do so before proceeding. These instructions assume you are using the homebrew provided version of hadoop installed to /usr/local/Cellar/hadoop/<version>. Setting up hadoop directories We need to set a few variables and tell hadoop wher

  • 多段SSHの設定を.ssh/configにまとめる - Qiita

    概要 踏み台サーバを経由した多段SSHの設定をconfigにまとめる方法 接続するマシンは、WANやゲートウェイ内のネットワークのいずれにも属する可能性があると想定(ノートPC等) ネットワーク図 図のようにゲートウェイ経由でしかアクセスできないネットワーク内にさらにゲートウェイがあるネットワークを想定 単純な多段SSHの書き方 host gateway HostName sshgate.hoge User hoge Host RemoteHost-out HostName RemoteHost User fuga ProxyCommand ssh -W %h:%p gateway 上記の設定を~/.ssh/configに書いた後、 ssh RemoteHost-out でgateway経由でのアクセスが可能 複数に同時に設定を適応する場合 .ssh/configには複数の設定をワイルドカ

    多段SSHの設定を.ssh/configにまとめる - Qiita