Scribble Thoughts
Scribble Thoughts

Reputation: 1

How can I install qdrant without docker

Followed the below given steps in the windows machine:

Installed:

Clone the Qdrant Repository:

Choose a directory for the source code. Run the following command:

git clone https://github.com/qdrant/qdrant.git

Create config.yaml: Open config.yaml in a text editor and add the following, using Windows paths:

storage_path: "C:\\qdrant-data"  
port: 6333
http_port: 6335  
grpc_port: 6336 

Create the C:\qdrant-data directory before running Qdrant.

cargo clean  
cargo build --release

Navigate to the target\release directory:

cd C:\qdrant-source\qdrant\target\release

Run Qdrant (using the full path to config.yaml):

qdrant.exe --config-path "C:\qdrant-source\qdrant\config.yaml"

Access the Web UI:

Tried this : http://localhost:6335/dashboard but unable to acces the webui url, saying static files do not exist

Can someone help me to identify the issue

Upvotes: 0

Views: 79

Answers (1)

hkulekci
hkulekci

Reputation: 1942

Currently, Qdrant has a release for v1.13.4 and on this page you can find different releases for different operating systems.

https://github.com/qdrant/qdrant/releases/tag/v1.13.4

I just tried recently for debian solution and which is qdrant_1.13.4-1_amd64.deb with the following command:

dpkg -i qdrant_1.13.4-1_amd64.deb

After that you can manage the service with systemctl

systemctl status qdrant

And finally, you can manage the configuration file with changing the service file:

vim /etc/systemd/system/qdrant.service

But unfortunately, I don't have any experience with windows installation. Bur for sure, this following installation will help you as well which is also in the releases page

qdrant-x86_64-pc-windows-msvc.zip

Upvotes: 0

Related Questions