You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[BugFix] mkdir $STARROCKS_HOME/meta in bin/start_fe.sh (StarRocks#48940)
## Why I'm doing:
When I run `./bin/start_fe.sh` after running `build.sh`, it reports an error:
```
2024-07-25 16:57:39.027Z ERROR (main|1) [MetaHelper.checkMetaDir():166] meta dir /data/starrocks/output/fe/meta does not exist
2024-07-25 16:57:39.031Z ERROR (main|1) [StarRocksFE.start():185] StarRocksFE start failed
com.starrocks.common.InvalidMetaDirException: null
at com.starrocks.leader.MetaHelper.checkMetaDir(MetaHelper.java:167) ~[starrocks-fe.jar:?]
at com.starrocks.StarRocksFE.start(StarRocksFE.java:120) ~[starrocks-fe.jar:?]
at com.starrocks.StarRocksFE.main(StarRocksFE.java:83) ~[starrocks-fe.jar:?]
```
This is because we have not created `meta` directory.
## What I'm doing:
Add `mkdir $STARROCKS_HOME/meta` command in bin/start_fe.sh
Signed-off-by: Yinzuo Jiang <jiangyinzuo@foxmail.com>
0 commit comments