This script is Deprecated. Instead use start-dfs.sh and start-yarn.sh 23/04/22 08:46:13 WARN util.NativeCodeLoader: Unable to load native-hadoop library for your platform... using builtin-java classes where applicable Starting namenodes on [hadoop]
时间: 2023-06-07 16:11:43 浏览: 272
这是一个关于 Hadoop 的警告信息,告诉您使用的脚本已过时,应改用 start-dfs.sh 和 start-yarn.sh 脚本来启动 Hadoop。此外,还提示无法加载本地 Hadoop 库,因此使用内置的 Java 类。最后,向您展示开始启动 Hadoop 的节点名称。
相关问题
npm WARN deprecated stable@0.1.8: Modern JS already guarantees Array#sort() is a stable sort, so this library is deprecated. See the compatibility table on MDN: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Array/sort#browser_compatibility npm WARN deprecated source-map-url@0.4.1: See https://github.com/lydell/source-map-url#deprecated npm WARN deprecated @hapi/bourne@1.3.2: This version has been deprecated and is no longer supported or maintained npm WARN deprecated @hapi/topo@3.1.6: This version has been deprecated and is no longer supported or maintained npm WARN deprecated eslint-loader@2.2.1: This loader has been deprecated. Please use eslint-webpack-plugin npm WARN deprecated urix@0.1.0: Please see https://github.com/lydell/urix#deprecated npm WARN deprecated har-validator@5.1.5: this library is no longer supported npm WARN deprecated source-map-resolve@0.5.3: See https://github.com/lydell/source-map-resolve#deprecated npm WARN deprecated chokidar@2.1.8: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies npm WARN deprecated chokidar@2.1.8: Chokidar 2 does not receive security updates since 2019. Upgrade to chokidar 3 with 15x fewer dependencies npm WARN deprecated resolve-url@0.2.1: https://github.com/lydell/resolve-url#deprecated npm WARN deprecated html-webpack-plugin@3.2.0: 3.x is no longer supported npm WARN deprecated @hapi/address@2.1.4: Moved to 'npm install @sideway/address' npm WARN deprecated querystring@0.2.0: The querystring API is considered Legacy. new code should use the URLSearchParams API instead. npm WARN deprecated babel-eslint@10.1.0: babel-eslint is now @babel/eslint-parser. This package will no longer receive updates. npm WARN deprecated uuid@3.4.0: Please upgrade to version 7 or higher. Older versions may use Math.random() in certain circumstances, which is known to be problematic. See https://v8.dev/blog/math-random for details. npm WARN deprecated request@2.88.2: request has been deprecated, see https://github.com/request/request/issues/3142 npm WARN deprecated @hapi/hoek@8.5.1: This version has been deprecated and is no longer supported or maintained npm WARN deprecated @hapi/joi@15.1.1: Switch to 'npm install joi' npm WARN deprecated svgo@1.3.2: This SVGO version is no longer supported. Upgrade to v2.x.x. npm WARN deprecated core-js@2.6.12: core-js@<3.23.3 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Some versions have web compatibility issues. Please, upgrade your dependencies to the actual version of core-js. added 1400 packages in 1m
同样,这不是一个问题,而是一堆 npm 的警告信息。这些警告信息是告诉你使用的一些库已经被废弃了,建议你更新或者替换掉这些库。比如:
- `stable` 库已经被废弃,因为现代的 JavaScript 已经保证了 `Array#sort()` 是一个稳定的排序。
- `source-map-url` 库已经被废弃,建议使用其他替代库。
- `@hapi/bourne` 和 `@hapi/topo` 库已经被废弃,建议升级到新版本的 `@hapi` 库。
- `eslint-loader` 库已经被废弃,建议使用 `eslint-webpack-plugin`。
- `chokidar` 库已经被废弃,建议升级到新版本的 `chokidar` 库。
- `html-webpack-plugin` 库的 3.x 版本已经不再支持,建议升级到新版本的库。
- `uuid` 库的旧版本可能在某些情况下使用 `Math.random()`,存在问题,建议升级到新版本的库。
还有其他的警告信息也是类似的,建议你根据警告信息逐一解决这些问题。
2023-05-30T07:36:33.461969Z 0 [Warning] TIMESTAMP with implicit DEFAULT value is deprecated. Please use --explicit_defaults_for_timestamp server option (see documentation for more details). 2023-05-30T07:36:33.463983Z 0 [ERROR] --initialize specified but the data directory has files in it. Aborting. 2023-05-30T07:36:33.464012Z 0 [ERROR] Aborting
这个错误信息表示您在使用 `--initialize` 初始化 MySQL 数据库时,MySQL 数据目录中已经存在了文件,因此 MySQL 无法继续初始化。可能是由于之前已经安装过 MySQL,或者是在数据目录中手动创建了一些文件导致的。
解决此问题的方法是:
1. 删除 MySQL 数据目录中的所有文件。您可以使用以下命令删除 MySQL 数据目录:
```
sudo rm -rf /var/lib/mysql/*
```
2. 重新执行 `--initialize` 命令以初始化 MySQL 数据库。例如,如果您要以默认设置初始化 MySQL 数据库,可以使用以下命令:
```
sudo mysqld --initialize
```
请注意,在执行 `--initialize` 命令之前,确保您已经备份了 MySQL 数据库中的所有数据,以防止数据丢失。
阅读全文