意外とよく使うのでメモとして残します。
・起動
for x in `cd /etc/init.d ; ls hadoop*` ; do sudo service $x start ; done
・停止
for x in `cd /etc/init.d ; ls hadoop*` ; do sudo service $x stop ; done
Go to list of users who liked
Share on X(Twitter)
Share on Facebook
More than 5 years have passed since last update.
意外とよく使うのでメモとして残します。
・起動
for x in `cd /etc/init.d ; ls hadoop*` ; do sudo service $x start ; done
・停止
for x in `cd /etc/init.d ; ls hadoop*` ; do sudo service $x stop ; done
Register as a new user and use Qiita more conveniently
Go to list of users who liked