Deploy a MeiliSearch instance on DigitalOcean

    A “droplet” is a set of resources, as a Virtual Machine, or a Server, in which you can run your own applications.
    In any DigitalOcean page, when you are logged in, you will find a menu in the upper-right corner. Click on “Create” -> “Droplets”.

    2. Select MeiliSearch snapshot

    By default, DigitalOcean will display the “distributions” tab. Select the “Marketplace” tab and search for “meili”. Select it.

    Marketplace

    3. Select your plan

    Select your plan. Plans start at $5 (click on “See all plans” for more options). Memory-optimized options will give you better results for a production environment on big datasets.

    4. Select a region for your droplet

    Select the region where you want to deploy your droplet. Remember, the closer you are to your users or customers, the better will be their search experience with MeiliSearch.

    Select region

    Select your SSH key in order to be able to connect to your droplet later. If you don’t see your SSH key add yours to your account.

    If you need help with this, visit

    You can also set a password for user if you prefer this authentication method.

    Add ssh key

    6. Choose your droplet name and tags

    Tags are a very good method to know who created resources, and for organizing resources or projects. Try to always add some tags to make clear what are the server purposes.

    Add tags

    7. Finally click on ‘Create Droplet’

    8. Your MeiliSearch is running (in development environment)

    Instance creation in progress…

    Creating

    … done!

    Copy the public IP address:

    Copy IP

    Paste it in your browser. If this screen is shown, your MeiliSearch is now ready!

    Configure production settings in your MeiliSearch droplet

    1. Make your domain name point to your droplet

    If you want to use your own domain name (or sub-domain), add A record in your domain name provider account.

    Domain to  MeiliSearch

    This should work out of the box. Your domain name should now be linked to your MeiliSearch instance. You can now do a health check to verify that your instance is running and your DNS is well configured:

    The server should answer with a 200 OK status code and the following body {"status":"available"} as shown in the example below:

    1. ...
    2. HTTP/1.1 200 OK
    3. {"status":"available"}
    4. ...

    2. Set API key and SSL (HTTPS)

    MeiliSearch is currently running in a development environment. You haven’t set up an API key, meaning that anyone can read/write from your MeiliSearch, and you aren’t using HTTPS yet, which makes this configuration unsafe for production.
    To start the configuration process, connect via SSH to your new MeiliSearch Droplet and follow the instructions:

    2.1. Run the configuration script

    Open a terminal and start a new SSH connection with the IP you got from DigitalOcean.

    Write in your terminal ssh root@<your-ip-address> and press Enter to establish connection:

    Write yes and press Enter to accept the authentication process.

    A script will run automatically, asking for your settings and desired configuration. If you want to run this script again anytime, you can do so by using the following command:

    1. meilisearch-setup

    Your MeiliSearch Droplet is ready to be used in production.

    To check if everything is running smoothly, do an HTTP call to the route:

    1. ...
    2. HTTP/1.1 200 OK
    3. ...
    4. ...

    Enjoy!