Jumpstart Freezing
We downloaded the ZIP, bundled, and started the server using foreman. I set some basic configurations, however everytime I try navigating a few pages on the frontend (i.e. admin area) it freezes. Is this something related to webpacker or foreman settings? I'm forced to restart the server regularly
I have something similar. The server runs, but when I try to navigate away (after logging in as an admin) it loses connection. Sometimes it wont let me open the profile drop down.
I haven't figured it out yet.
I have, thus far, had success, manually typing in the navbar. So I wanted admin, i just added it to the end of the url
I haven't figured it out yet.
I have, thus far, had success, manually typing in the navbar. So I wanted admin, i just added it to the end of the url
When I used "foreman start" that solved the issue I posted above. Everything freezing.
Now I am having the same issue as the OP. When I navigate away, I lose connection.
This is the error I am getting.
14:33:04 web.1 | exited with code 1
14:33:04 system | sending SIGTERM to all processes
14:33:04 guard.1 | terminated by SIGTERM
14:33:04 webpack.1 | terminated by SIGTERM
Now I am having the same issue as the OP. When I navigate away, I lose connection.
This is the error I am getting.
14:33:04 web.1 | exited with code 1
14:33:04 system | sending SIGTERM to all processes
14:33:04 guard.1 | terminated by SIGTERM
14:33:04 webpack.1 | terminated by SIGTERM
I'm seeing lots of ruby crashes as well.
I use foreman to run everything except
I'm not seeing outright freezes - but regular _long_ pauses where requests take 5 or 10 seconds before they progress.
I use foreman to run everything except
rails s
, and run that in a separate tab so that I can throw in byebug when I want to inspect things.I'm not seeing outright freezes - but regular _long_ pauses where requests take 5 or 10 seconds before they progress.
##
It is a good idea to copy both the Redis server and the command line interface into the proper places, either manually using the following commands:
- sudo cp src/redis-server /usr/local/bin/
- sudo cp src/redis-cli /usr/local/bin/
Or just using
##
I accidentally skipped over it the 1st time
sudo make install
.##
I accidentally skipped over it the 1st time
I've been having similar issues (freezing) but different... it seems with HTTP2 and puma... puma seems to hold open connections in a
CLOSE_WAIT
state and then hits the default max in NGINX of 128 and stops responding... (this is with upstream via IP not unix socket and puma bound to 127.0.0.1). By ensuring proxy_http_version 1.1;
in NGINX location for the proxy it seems to allow PUMA to clean up after itself better... is this just me? Am running nginx/1.19.9 on v4 and v6 as a reverse proxy and as per the Gemfile: Puma version: 5.2.2 (ruby 3.0.0-p0).This is an interesting thread, it may be NGINX config or Ruby... (my issue anyway) https://github.com/puma/puma/issues/882
Notifications
You’re not receiving notifications from this thread.