Failed to start network-manager.serveice.service: Unit network-manager.serveice.service not found.
时间: 2024-05-07 17:19:14 浏览: 86
这个错误提示是因为服务单元文件 `network-manager.serveice.service` 不存在而导致的。你可能拼写错误了服务名字。
正确的服务名应该是 `network-manager.service` ,你可以使用下面的命令来启动该服务:
```
sudo systemctl start network-manager.service
```
如果你需要开机自启动该服务,可以使用下面的命令:
```
sudo systemctl enable network-manager.service
```
希望这能帮助到你。
相关问题
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。
阅读全文
相关推荐








