milvus: [Bug]: The default path of configDir
Is there an existing issue for this?
- I have searched the existing issues
Environment
- Milvus version: 2.0.0-rc8
- Deployment mode(standalone or cluster): standalone
- OS(Ubuntu or CentOS): Ubuntu
Current Behavior
I compiled Milvus from source and then i run milvus binary file on another computer.
If i don’t set the environment variable MILVUSCONF, and there is no config file in the running path. The default configDir is the path where i complied Milvus.
Expected Behavior
I want to set the default configDir to be a fixed path, not the absolute path where the Milvus compiled.
Steps To Reproduce
No response
Anything else?
No response
About this issue
- Original URL
- State: closed
- Created 3 years ago
- Comments: 17 (11 by maintainers)
I followed the instructions, during starting a container, there is a problem with
autouseradd: running as root is not permitted. I solved it by runningdocker run --name=milvus-envs -d -v ${my path}:/data/milvus -u "$(id -u):$(id -g)" milvusdb/milvus-env:amd64-ubuntu18.04-latestinstead. Posted this in case someone encountered a similar problem.