Replies: 2 comments
-
@vermorag : hey!! i followed the steps above and am facing the same Error 500 issue as well. Love your help here please |
Beta Was this translation helpful? Give feedback.
0 replies
-
@amazing-cat guys any help will be appreciated |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
Hey There,
I am trying to deploy the Cattr application on a fresh GCP Debian 11 instance, but I'm encountering a 500 error when visiting the URL. Here's a detailed account of the steps I followed and the issues I'm facing:
Steps Followed:
sudo apt update && sudo apt upgrade -y
wget https://dev.mysql.com/get/mysql-apt-config_0.8.30-1_all.deb sudo dpkg -i mysql-apt-config_0.8.30-1_all.deb sudo wget -O /etc/apt/trusted.gpg.d/php.gpg https://packages.sury.org/php/apt.gpg sudo sh -c 'echo "deb https://packages.sury.org/php/ $(lsb_release -sc) main" > /etc/apt/sources.list.d/php.list' sudo apt update sudo apt install mysql-server -y sudo apt install php8.2 php8.2-{bcmath,bz2,intl,gd,mbstring,mysql,zip,curl,xml} -y sudo apt install nginx php8.2-fpm -y
Noticed that running sudo apt install nginx php8.2-fpm -y resulted in Apache2 getting installed, causing nginx to fail when I attempted to start it using systemctl restart nginx. So, I uninstalled Apache:
curl -fsSL https://deb.nodesource.com/setup_18.x | sudo -E bash - sudo apt install -y nodejs
Issues Encountered:
WebSocket connection to wss://10.10.10.218/app/cattr?protocol=7&client=js&version=8.4.8-rc2&flash=false failed.
Additional Information:
Login with: Email: admin@cattr.app & Password: password
Run Local server
Generate IDE helpers:
Can anyone suggest how to troubleshoot this 500 error? Any insights or additional steps I should follow would be greatly appreciated!
Thanks in advance!
Beta Was this translation helpful? Give feedback.
All reactions