Jimmy Phommarath
11/05/2025, 10:17 AMabctl
Volumes generated by my old version are always here but when I run the new install, it creates a new volume instead of using old... How can I set it ?
Thanks in advance ! 🙂kapa.ai
11/05/2025, 10:17 AMabctl, the behavior depends on which uninstall command you use. According to the [abctl documentation](https://docs.airbyte.com/platform/next/deploying-airbyte/abctl#install-and-manage-local-airbyte-instances), there are two ways to uninstall: 1. To keep your data (default behavior): bash abctl local uninstall 2. To remove all data: bash abctl local uninstall --persisted The documentation states that when you use abctl local uninstall without the --persisted flag, "the data associated with the installed Airbyte instance will not be removed. This is done to allow Airbyte to be reinstalled at a later date with all the data preserved." However, if new volumes are being created instead of reusing the old ones, you may need to completely clean up the installation. Based on the [developer environment reset guide](https://docs.airbyte.com/platform/next/contributing-to-airbyte/developing-locally#resetting-the-airbyte-developer-environment), you can try: 1. Uninstall with the persisted flag: bash abctl local uninstall --persisted 2. Remove the abctl data directory: bash rm -rf ~/.airbyte/ 3. Then reinstall: bash abctl local install Note: Using --persisted will remove all your data, so only use this if you want a completely fresh installation. If you need to preserve your data while fixing the volume issue, I'm sorry, but the knowledge sources don't contain specific information about how to force abctl to reuse existing volumes from a previous installation.Jimmy Phommarath
11/05/2025, 10:18 AMJimmy Phommarath
11/05/2025, 10:19 AMunable to initialize local command: error communicating with kubernetes: unable to fetch kubernetes server version: Get "<https://127.0.0.1:46427/version>": EOF - error from a previous attempt: read tcp 127.0.0.1:51296->127.0.0.1:46427: read: connection reset by peerJimmy Phommarath
11/05/2025, 10:20 AMINFO An error occurred while communicating with the Kubernetes cluster.
If this error persists, you may need to run the "abctl local uninstall" command before attempting to run the
"abctl local install" command again.
Your data will persist between the uninstall and install commands.Henry Mattingly
11/05/2025, 10:14 PM