Would still appreciate any help. Installed OSS on ...
# replication-ask-ai
g
Would still appreciate any help. Installed OSS on Ubuntu 22.04.2 LTS. Getting the Oops!Something went wrong… on startup of webserver. Logs arent really helpful as all the get requests are coming with status 200 and i cant find anything indicating the error.
k
A message from kapa.ai
I'm sorry to hear that you're experiencing issues with your Airbyte installation. Based on the information provided, it's difficult to pinpoint the exact cause of the issue. However, here are a few steps you can take to troubleshoot: 1. Check the logs: The logs can provide detailed information about what's happening behind the scenes. You can access them by running
docker logs airbyte-server > server.logs
in your terminal. This will output the logs to a file named
server.logs
which you can then inspect for any errors or warnings. 2. Check your Docker installation: Some users have reported issues with the snap version of Docker on Ubuntu. If you installed Docker using snap, try uninstalling it and reinstalling Docker using apt instead. You can do this by running
sudo apt-get remove docker docker-engine <http://docker.io|docker.io> containerd runc
followed by
sudo apt-get install docker-ce docker-ce-cli <http://containerd.io|containerd.io>
. 3. Update Airbyte: Make sure you're running the latest version of Airbyte. You can check your current version by running
docker-compose config | grep image:
in your terminal. If you're not on the latest version, you can update by pulling the latest Docker image with
docker pull airbyte/airbyte
. 4. Reach out to the community: If you're still unable to resolve the issue, consider reaching out to the Airbyte community on their [forum](https://discuss.airbyte.io/) or [Slack channel](https://airbytehq.slack.com/). Other users may have encountered similar issues and could provide further assistance. 5. Open a Github ticket: If all else fails, you can open a support ticket on the [Airbyte Github page](https://github.com/airbytehq/airbyte/issues). The Airbyte team is very responsive and should be able to help you resolve the issue. Remember, the more information you can provide about your issue (such as error messages, screenshots, and detailed descriptions of what you've tried so far), the easier it will be for others to help you. Good luck! Sources: - [Forum Discussion](https://discuss.airbyte.io/t/3009) - [Troubleshooting Guide](https://docs.airbyte.com/troubleshooting) - [Forum Discussion](https://discuss.airbyte.io/t/3583) - [Previous Support Conversation in Slack](https://airbytehq.slack.com/archives/C021JANJ6TY/p1673298424719189)