<@U04SE163WC8> I've updated Mongo connector and i ...
# ask-ai
i
@kapa.ai I've updated Mongo connector and i get this error Could not find image: airbyte/source-mongodb-v2:1.4.2
k
It seems like the MongoDB connector image is not found locally. This could be due to a few reasons: 1. The MongoDB connector version
1.4.2
does not exist or is not available in the Docker registry. Make sure to check the available versions of the MongoDB connector in the Docker registry or on the Airbyte's GitHub page. 2. The MongoDB connector image has not been pulled to your local machine. You can manually pull the image using Docker. The command to do this would be
docker pull airbyte/source-mongodb-v2:1.4.2
. 3. If you are using Airbyte Open Source, you might need to manually update the connector image in your local registry. You can do this by going to Settings in the main navbar, then select Sources, find MongoDB in the list of connectors, and select Change to update your OSS version to the latest available version. You can find more details on how to do this in the [Airbyte Documentation](https://docs.airbyte.com/integrations/sources/monday-migrations#for-airbyte-open-source-update-the-local-connector-image). If the issue persists, consider opening an issue on the [Airbyte GitHub page](https://github.com/airbytehq/airbyte/issues) to get help from the Airbyte community.
i
@kapa.ai what is the process to manually pull the image in my local machine, save the changes and restart the instance to apply these changes?
k
A message from kapa.ai
To manually pull the image to your local machine, you can use the Docker
pull
command. Here's how you can do it: 1. Open your terminal. 2. Run the following command:
Copy code
bash docker pull airbyte/source-mongodb-v2:1.4.2
This command will pull the MongoDB connector image from the Docker registry to your local machine. After pulling the image, you can save the changes and restart your instance. Here's how you can do it: 1. If you are using Airbyte Open Source, go to Settings in the main navbar. 2. Select Sources. 3. Find MongoDB in the list of connectors. 4. You will see two versions listed, the current in-use version and the latest version available. 5. Select Change to update your OSS version to the latest available version. Now, to restart your instance, you can use the Docker
restart
command:
Copy code
bash docker restart {container_id}
Replace
{container_id}
with the ID of your running container. You can get the ID by running
docker ps
. Please note that these instructions are based on the general Docker and Airbyte usage. For specific issues or advanced configurations, consider referring to the official Docker and Airbyte documentation or their respective communities.