文章目录
一:机器103设置密钥对免密登录
root@vboxnode3ccccccttttttchenyang \~\]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Created directory '/root/.ssh'.
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
\[root@vboxnode3ccccccttttttchenyang \~\]# ls
anaconda-ks.cfg before-calico.yaml bigdata calico.yaml logs recommended.yaml
\[root@vboxnode3ccccccttttttchenyang \~\]# cd /root
\[root@vboxnode3ccccccttttttchenyang \~\]# ls
anaconda-ks.cfg before-calico.yaml bigdata calico.yaml logs recommended.yaml
\[root@vboxnode3ccccccttttttchenyang \~\]# ssh-keygen -t rsa
Generating public/private rsa key pair.
Enter file in which to save the key (/root/.ssh/id_rsa):
Enter passphrase (empty for no passphrase):
Enter same passphrase again:
Your identification has been saved in /root/.ssh/id_rsa.
Your public key has been saved in /root/.ssh/id_rsa.pub.
The key fingerprint is:
SHA256:iDJChgXvhOSh9xBSNORW8fW8UeeHgTxwEYpbu3MPGUc root@vboxnode3ccccccttttttchenyang
The key's randomart image is:
±--\[RSA 2048\]----+
\|oBB o. . .o=+o \|
\|=\*.+ . . + ++o o \|
\|++B . . \* .E .\|
\|o= o . . o + . . \|
\|. + o . S o . . \|
\| . o . + \|
\| o + \|
\| o o \|
\| . \|
±---\[SHA256\]-----+
\[root@vboxnode3ccccccttttttchenyang \~\]# cd /root/.ssh
\[root@vboxnode3ccccccttttttchenyang .ssh\]# ls
id_rsa id_rsa.pub
## 二:机器102设置密钥对免密登录
```sql
[root@vboxnode3ccccccttttttchenyang .ssh]# ssh-copy-id chenyang-mine-vbox02
/usr/bin/ssh-copy-id: INFO: Source of key(s) to be installed: "/root/.ssh/id_rsa.pub"
The authenticity of host 'chenyang-mine-vbox02 (192.168.56.102)' can't be established.
ECDSA key fingerprint is SHA256:SGpvRTxwvfuiJB6N+Gl0IRJZ0Bh4ggdISEqytykpPN8.
ECDSA key fingerprint is MD5:2e:91:01:39:bd:6f:b9:a8:3b:3d:9c:07:3c:81:bc:c7.
Are you sure you want to continue connecting (yes/no)? y
Please type 'yes' or 'no': yes
/usr/bin/ssh-copy-id: INFO: attempting to log in with the new key(s), to filter out any that are already installed
/usr/bin/ssh-copy-id: INFO: 1 key(s) remain to be installed -- if you are prompted now it is to install the new keys
root@chenyang-mine-vbox02's password:
Permission denied, please try again.
root@chenyang-mine-vbox02's password:
Permission denied, please try again.
root@chenyang-mine-vbox02's password:
Permission denied (publickey,gssapi-keyex,gssapi-with-mic,password).
```
```sql
[root@vboxnode3ccccccttttttchenyang .ssh]# ssh chenyang-mine-vbox02
root@chenyang-mine-vbox02's password:
Last failed login: Sun Aug 27 22:58:22 CST 2023 from vboxnode3ccccccttttttchenyang on ssh:notty
There were 3 failed login attempts since the last successful login.
Last login: Sun Aug 27 22:52:26 2023 from 192.168.56.1
-bash: "export: 未找到命令
-bash: /etc/kubernetes/admin.conf: 没有那个文件或目录
-bash: /etc/kubernetes/kubelet.conf: 权限不够
-bash: "export: 未找到命令
```
```sql
[root@chenyang-mine-vbox02 ~]# ssh vboxnode3ccccccttttttchenyang
The authenticity of host 'vboxnode3ccccccttttttchenyang (192.168.56.103)' can't be established.
ECDSA key fingerprint is SHA256:SGpvRTxwvfuiJB6N+Gl0IRJZ0Bh4ggdISEqytykpPN8.
ECDSA key fingerprint is MD5:2e:91:01:39:bd:6f:b9:a8:3b:3d:9c:07:3c:81:bc:c7.
Are you sure you want to continue connecting (yes/no)? yes
Warning: Permanently added 'vboxnode3ccccccttttttchenyang,192.168.56.103' (ECDSA) to the list of known hosts.
root@vboxnode3ccccccttttttchenyang's password:
Last login: Sun Aug 27 22:48:56 2023 from 192.168.56.1
[root@vboxnode3ccccccttttttchenyang ~]# ls
anaconda-ks.cfg before-calico.yaml bigdata calico.yaml logs recommended.yaml
```
## 三:机器103安装Hadoop安装包
### 3.1:wget拉取安装Hadoop包
wget https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
```sql
wget https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
```
```sql
[root@vboxnode3ccccccttttttchenyang ~]# wget https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
--2023-08-27 22:59:48-- https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
正在解析主机 mirrors.aliyun.com (mirrors.aliyun.com)... 182.40.60.209, 140.249.32.209, 150.139.245.176, ...
正在连接 mirrors.aliyun.com (mirrors.aliyun.com)|182.40.60.209|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:408587111 (390M) [application/octet-stream]
正在保存至: "hadoop-2.10.1.tar.gz"
100%[=================================================================================>] 408,587,111 7.86MB/s 用时 37s
2023-08-27 23:00:26 (10.5 MB/s) - 已保存 "hadoop-2.10.1.tar.gz" [408587111/408587111])
```
```sql
[root@vboxnode3ccccccttttttchenyang ~]# cd /usr/local/home/
[root@vboxnode3ccccccttttttchenyang home]# ;ls
-bash: 未预期的符号 `;' 附近有语法错误
[root@vboxnode3ccccccttttttchenyang home]# ls
bigdata docker log.file sentinel-dashboard-1.8.6.jar server
[root@vboxnode3ccccccttttttchenyang home]# cd bigdata/
[root@vboxnode3ccccccttttttchenyang bigdata]# ls
[root@vboxnode3ccccccttttttchenyang bigdata]# pwd
/usr/local/home/bigdata
[root@vboxnode3ccccccttttttchenyang bigdata]# cd ~
[root@vboxnode3ccccccttttttchenyang ~]# ls
anaconda-ks.cfg before-calico.yaml bigdata calico.yaml hadoop-2.10.1.tar.gz logs recommended.yaml
```
### 3.2:解压移到指定目录
#### 3.2.1:解压移动路径异常信息
```sql
[root@vboxnode3ccccccttttttchenyang ~]# tar -zxvf hadoop-2.10.1.tar.gz //usr/local/home/bigdata
tar: //usr/local/home/bigdata:归档中找不到
tar: 由于前次错误,将以上次的错误状态退出
[root@vboxnode3ccccccttttttchenyang ~]# tar -zxvf hadoop-2.10.1.tar.gz /usr/local/home/bigdata
tar: /usr/local/home/bigdata:归档中找不到
tar: 由于前次错误,将以上次的错误状态退出
[root@vboxnode3ccccccttttttchenyang ~]# rm -rf bigdata/
[root@vboxnode3ccccccttttttchenyang ~]# ls
anaconda-ks.cfg before-calico.yaml calico.yaml logs recommended.yaml
[root@vboxnode3ccccccttttttchenyang ~]# wget https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
--2023-08-27 23:04:49-- https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
正在解析主机 mirrors.aliyun.com (mirrors.aliyun.com)... 140.249.32.209, 150.139.245.176, 117.24.169.248, ...
正在连接 mirrors.aliyun.com (mirrors.aliyun.com)|140.249.32.209|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:408587111 (390M) [application/octet-stream]
正在保存至: "hadoop-2.10.1.tar.gz"
100%[=================================================================================>] 408,587,111 15.4MB/s 用时 50s
2023-08-27 23:05:39 (7.80 MB/s) - 已保存 "hadoop-2.10.1.tar.gz" [408587111/408587111])
```
#### 3.2.2:切换指定目录,进行解压,因为上述还是不行,应该是根目录解压有限制
切换指定目录,进行解压,因为上述还是不行,应该是根目录解压有限制
```sql
[root@vboxnode3ccccccttttttchenyang ~]# cd /usr/local/home/bigdata
[root@vboxnode3ccccccttttttchenyang bigdata]# ls
[root@vboxnode3ccccccttttttchenyang bigdata]# wget https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
--2023-08-27 23:07:12-- https://mirrors.aliyun.com/apache/hadoop/common/hadoop-2.10.1/hadoop-2.10.1.tar.gz
正在解析主机 mirrors.aliyun.com (mirrors.aliyun.com)... 182.40.60.209, 150.139.245.178, 150.139.245.179, ...
正在连接 mirrors.aliyun.com (mirrors.aliyun.com)|182.40.60.209|:443... 已连接。
已发出 HTTP 请求,正在等待回应... 200 OK
长度:408587111 (390M) [application/octet-stream]
正在保存至: "hadoop-2.10.1.tar.gz"
100%[=================================================================================>] 408,587,111 15.1MB/s 用时 26s
2023-08-27 23:07:38 (15.1 MB/s) - 已保存 "hadoop-2.10.1.tar.gz" [408587111/408587111])
```
```sql
[root@vboxnode3ccccccttttttchenyang bigdata]# ls
hadoop-2.10.1.tar.gz
[root@vboxnode3ccccccttttttchenyang bigdata]# tar -zxvf hadoop-2.10.1.tar.gz
hadoop-2.10.1/
hadoop-2.10.1/bin/
hadoop-2.10.1/bin/hadoop
hadoop-2.10.1/bin/hadoop.cmd
hadoop-2.10.1/bin/rcc
hadoop-2.10.1/bin/hdfs
hadoop-2.10.1/bin/hdfs.cmd
hadoop-2.10.1/bin/container-executor
hadoop-2.10.1/bin/test-container-executor
hadoop-2.10.1/bin/yarn
hadoop-2.10.1/bin/yarn.cmd
hadoop-2.10.1/bin/mapred
hadoop-2.10.1/bin/mapred.cmd
hadoop-2.10.1/etc/
hadoop-2.10.1/etc/hadoop/
hadoop-2.10.1/etc/hadoop/core-site.xml
hadoop-2.10.1/etc/hadoop/ssl-client.xml.example
hadoop-2.10.1/etc/hadoop/ssl-server.xml.example
hadoop-2.10.1/etc/hadoop/hadoop-env.cmd
hadoop-2.10.1/etc/hadoop/hadoop-env.sh
hadoop-2.10.1/etc/hadoop/hadoop-metrics.properties
hadoop-2.10.1/etc/hadoop/hadoop-metrics2.properties
hadoop-2.10.1/etc/hadoop/hadoop-policy.xml
hadoop-2.10.1/etc/hadoop/log4j.properties
hadoop-2.10.1/etc/hadoop/hdfs-site.xml
hadoop-2.10.1/etc/hadoop/httpfs-log4j.properties
hadoop-2.10.1/etc/hadoop/httpfs-site.xml
hadoop-2.10.1/etc/hadoop/httpfs-env.sh
hadoop-2.10.1/etc/hadoop/httpfs-signature.secret
hadoop-2.10.1/etc/hadoop/kms-acls.xml
hadoop-2.10.1/etc/hadoop/kms-env.sh
hadoop-2.10.1/etc/hadoop/kms-log4j.properties
hadoop-2.10.1/etc/hadoop/kms-site.xml
hadoop-2.10.1/etc/hadoop/yarn-env.cmd
hadoop-2.10.1/etc/hadoop/yarn-site.xml
hadoop-2.10.1/etc/hadoop/container-executor.cfg
hadoop-2.10.1/etc/hadoop/slaves
hadoop-2.10.1/etc/hadoop/yarn-env.sh
hadoop-2.10.1/etc/hadoop/capacity-scheduler.xml
hadoop-2.10.1/etc/hadoop/configuration.xsl
hadoop-2.10.1/etc/hadoop/mapred-queues.xml.template
hadoop-2.10.1/etc/hadoop/mapred-env.cmd
hadoop-2.10.1/etc/hadoop/mapred-env.sh
hadoop-2.10.1/etc/hadoop/mapred-site.xml.template
hadoop-2.10.1/lib/
hadoop-2.10.1/lib/native/
hadoop-2.10.1/lib/native/examples/
hadoop-2.10.1/lib/native/examples/pipes-sort
hadoop-2.10.1/lib/native/examples/wordcount-nopipe
hadoop-2.10.1/lib/native/examples/wordcount-part
hadoop-2.10.1/lib/native/examples/wordcount-simple
hadoop-2.10.1/lib/native/libhadoop.a
hadoop-2.10.1/lib/native/libhadoop.so
hadoop-2.10.1/lib/native/libhadoop.so.1.0.0
hadoop-2.10.1/lib/native/libhdfs.a
hadoop-2.10.1/lib/native/libhdfs.so
hadoop-2.10.1/lib/native/libhdfs.so.0.0.0
hadoop-2.10.1/lib/native/libhadooputils.a
hadoop-2.10.1/lib/native/libhadooppipes.a
hadoop-2.10.1/libexec/
hadoop-2.10.1/libexec/hadoop-config.cmd
hadoop-2.10.1/libexec/hadoop-config.sh
hadoop-2.10.1/libexec/hdfs-config.cmd
hadoop-2.10.1/libexec/hdfs-config.sh
hadoop-2.10.1/libexec/httpfs-config.sh
hadoop-2.10.1/libexec/kms-config.sh
hadoop-2.10.1/libexec/yarn-config.cmd
hadoop-2.10.1/libexec/yarn-config.sh
hadoop-2.10.1/libexec/mapred-config.cmd
hadoop-2.10.1/libexec/mapred-config.sh
hadoop-2.10.1/sbin/
hadoop-2.10.1/sbin/FederationStateStore/
hadoop-2.10.1/sbin/FederationStateStore/MySQL/
hadoop-2.10.1/sbin/FederationStateStore/MySQL/FederationStateStoreDatabase.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/FederationStateStoreStoredProcs.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/FederationStateStoreUser.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/dropDatabase.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/dropStoreProcedures.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/dropTables.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/dropUser.sql
hadoop-2.10.1/sbin/FederationStateStore/MySQL/FederationStateStoreTables.sql
hadoop-2.10.1/sbin/FederationStateStore/SQLServer/
hadoop-2.10.1/sbin/FederationStateStore/SQLServer/FederationStateStoreStoreProcs.sql
hadoop-2.10.1/sbin/FederationStateStore/SQLServer/FederationStateStoreTables.sql
hadoop-2.10.1/sbin/stop-all.sh
hadoop-2.10.1/sbin/start-all.cmd
hadoop-2.10.1/sbin/stop-all.cmd
hadoop-2.10.1/sbin/hadoop-daemon.sh
hadoop-2.10.1/sbin/hadoop-daemons.sh
hadoop-2.10.1/sbin/slaves.sh
hadoop-2.10.1/sbin/start-all.sh
hadoop-2.10.1/sbin/distribute-exclude.sh
hadoop-2.10.1/sbin/hdfs-config.cmd
hadoop-2.10.1/sbin/start-dfs.cmd
hadoop-2.10.1/sbin/stop-dfs.cmd
hadoop-2.10.1/sbin/hdfs-config.sh
hadoop-2.10.1/sbin/refresh-namenodes.sh
hadoop-2.10.1/sbin/start-balancer.sh
hadoop-2.10.1/sbin/start-dfs.sh
hadoop-2.10.1/sbin/start-secure-dns.sh
hadoop-2.10.1/sbin/stop-balancer.sh
hadoop-2.10.1/sbin/stop-dfs.sh
hadoop-2.10.1/sbin/stop-secure-dns.sh
hadoop-2.10.1/sbin/httpfs.sh
hadoop-2.10.1/sbin/kms.sh
hadoop-2.10.1/sbin/start-yarn.cmd
hadoop-2.10.1/sbin/stop-yarn.cmd
hadoop-2.10.1/sbin/start-yarn.sh
hadoop-2.10.1/sbin/stop-yarn.sh
hadoop-2.10.1/sbin/yarn-daemon.sh
hadoop-2.10.1/sbin/yarn-daemons.sh
hadoop-2.10.1/sbin/mr-jobhistory-daemon.sh
hadoop-2.10.1/share/
hadoop-2.10.1/share/doc/
hadoop-2.10.1/share/doc/hadoop/
hadoop-2.10.1/share/doc/hadoop/common/
hadoop-2.10.1/share/doc/hadoop/common/api/
```
#### 3.2.3:安装成功,查看Hadoop版本
##### 3.2.3.1:显示JAVA_HOME未找到
hadoop version
\[root@vboxnode3ccccccttttttchenyang bigdata\]# hadoop version
Error: JAVA_HOME is not set and could not be found.
#### 3.2.4:配置Hadoop的Java环境变量

```powershell
[root@vboxnode3ccccccttttttchenyang bigdata]# vi /etc/profile
[root@vboxnode3ccccccttttttchenyang bigdata]# java -version
openjdk version "1.8.0_362"
OpenJDK Runtime Environment (build 1.8.0_362-b08)
OpenJDK 64-Bit Server VM (build 25.362-b08, mixed mode)
[root@vboxnode3ccccccttttttchenyang bigdata]# javac
用法: javac