Unrecognized option: net try 'C:\Program Files\MongoDB\Server\6.0\bin\mongod.exe --help' for more information PS C:\MongoDB>
时间: 2023-08-18 19:08:19 浏览: 99
这个问题看起来是在运行 MongoDB时出现了错误。根据错误提示,它表明输入了一个未识别的选项。你可以尝试运行 'C:\Program Files\MongoDB\Server\6.0\bin\mongod.exe --help' 来获取更多关于mongod的信息。这将显示有关可用选项的帮助文档,以帮助你找出问题所在。
相关问题
在执行hadoop jar $HADOOP_HOME/share/hadoop/tools/lib/hadoop-streaming-*.jar \ -files mapper.py \ -mapper mapper.py \ -files reducer.py \ -reducer reducer.py \ -input input.txt \ -output output时报错ERROR streaming.StreamJob: Unrecognized option: -files
如果你使用的 Hadoop 版本是 2.6.0 或以上的版本,那么 `-files` 选项已经被弃用了,改为使用 `-archives` 选项。
所以你可以将命令中的 `-files` 替换为 `-archives`,例如:
```
hadoop jar $HADOOP_HOME/share/hadoop/tools/lib/hadoop-streaming-*.jar \
-archives mapper.py#mapper.py,reducer.py#reducer.py \
-mapper mapper.py \
-reducer reducer.py \
-input input.txt \
-output output
```
这样就可以避免这个错误了。
Unrecognized option: --serveice usage: hive -d,--define <key=value> Variable substitution to apply to Hive commands. e.g. -d A=B or --define A=B --database <databasename> Specify the database to use -e <quoted-query-string> SQL from command line -f <filename> SQL from files -H,--help Print help information --hiveconf <property=value> Use value for given property --hivevar <key=value> Variable substitution to apply to Hive commands. e.g. --hivevar A=B -i <filename> Initialization SQL file -S,--silent Silent mode in interactive shell -v,--verbose Verbose mode (echo executed SQL to the console) ^C
看起来你输入的命令有错误,其中的 --serveice 应该是 --service。你可能想要使用以下命令来启动 Hive 服务:
```
hive --service <servicename>
```
其中 `<servicename>` 可以是以下之一:cli、metastore、hiveserver2、hwi 或 jar。请注意,在启动服务之前,您需要确保正确配置了 Hive 和 Hadoop。
阅读全文