Skip to main content
Filter by
Sorted by
Tagged with
3 votes
4 answers
184 views

I'm writing C code, with Rowley CrossStudio 5.3.0, for a board with an STM32F401, that "do things" after receiving commands incoming from a RS485 line. The board has a bootloader code at ...
Pietro66's user avatar
  • 101
0 votes
1 answer
37 views

I have written a script for restarting computers on a network. I have it working just fine, the one issue I am running into is error messages popping up in the host. The script pulls a list of system ...
RustyAndroid's user avatar
1 vote
0 answers
390 views

I'm trying to trigger the SCCM reboot countdown timer on a Windows machine using PowerShell. The countdown window appears as expected, but when the timer reaches 0, the system does not reboot. Instead,...
Random206's user avatar
  • 826
0 votes
0 answers
70 views

When I submit a job to a Flink 1.19.1 Standalone Cluster and configure the Fixed Delay Restart Strategy, I intentionally use numeric/0 in the job to trigger an exception. However, during the next ...
yang xia's user avatar
1 vote
1 answer
158 views

I aim to create a PowerShell Script that restarts the computer twice; however, I have some doubts about this way that I am aiming to do this task. I write the following script with a Start-Sleep in ...
Jose Serra's user avatar
0 votes
1 answer
149 views

I have Pi-Hole and Homepage running as separate docker-compose.yml files. When I reboot my Docker host, Homepage finishes loading before Pi-Hole. The problem is that Pi-Hole is my DNS server, and the ...
ZPMMaker's user avatar
  • 120
0 votes
1 answer
793 views

We have a requirment to restart the Azure databricks notebooks running from databricks workflow from the point of failure.I have gone through the repair and rerun concept in databricks and did a ...
Adigkar's user avatar
  • 13
1 vote
1 answer
222 views

The majority of this code is from Bro Code's Python tutorial on how to make a snake game in Python. I decided to add a "Play again?" button on the game over screen, and when pressed would ...
Pete's user avatar
  • 11
1 vote
1 answer
821 views

Looking to return the number of Pod restarts per Namespace in the last hour (or 24 hours). Working in an Openshift Kubernetes environment with Grafana for development and display. Using ...
Robert123's user avatar
0 votes
1 answer
101 views

I want to restart my application when the user has the app in the background after one hour. I already did some research and I use a Service: public class BackgroundService extends Service { ...
Lucas Doineau's user avatar
0 votes
1 answer
560 views

I have a problem with the container restart duration. For me 1 minute between container restart time is acceptable but based on the container restart policy the wait time increases after each restart....
Vazgen Torosyan's user avatar
1 vote
2 answers
350 views

I need to restart 5 or 6 computers at the same time. It works nice with the command restart-computer. But I want to add -wait to be sure each server has restarted. So, of course, I can do something ...
Matt's user avatar
  • 23
0 votes
1 answer
83 views

I am looking to kill and restart a specific task if it is anything other than running on multiple remote machines without using WinRM or pskill. I have come up with the following code. When the task ...
Nathan Perkins's user avatar
0 votes
1 answer
29 views

Why do I keep getting this error when writing data after I restart Apache IoTDB, causing the data writing progress to fail? The error message is: [ERROR] 2023-09-15 15:44:00,692 [pool-2-thread-9:28321]...
shuww's user avatar
  • 143
0 votes
0 answers
29 views

I am trying to restart my spider once every 30 minutes, for parsing a website, to which I get an error. The first launch is successful, the next one is an error. Spider Code: def run_spider(): ...
Danil Pet's user avatar
0 votes
0 answers
138 views

I have been using Quartz Scheduler in my Java Wildfly backend application for 2 years now (and before that in another project). I use it to trigger integrations with other systems on a minute/hourly/...
Terraviper-5's user avatar
0 votes
0 answers
138 views

I'm having trouble restarting my project when I run it even with springboot dev-tools and IDE configured to do so. GitHub's link from the project. Attached are prints of my IDE settings. Build ...
Dhionatã Carlos Vieira's user avatar
1 vote
2 answers
3k views

I am using Expo App and have a screen where user can change the language. When selecting language change user will be asked to confirm the selection. Upon confirming I want to reload the app. I tried ...
ivkovic.boris's user avatar
1 vote
0 answers
87 views

I have a Docker service (specifically MongoDB). After some kind of failure (specifically No space left on device), it gets weird: Command docker-compose logs --follow --tail=10 -t service-name exits ...
v6ak's user avatar
  • 1,656
-1 votes
1 answer
63 views

I have this bash script that restarts/monitors myscript while { myscript; rc=$?; true; }; do echo "'myscript' crashed with exit code $rc. Restarting..." >&2 sleep 1 done ...
supra's user avatar
  • 1
0 votes
2 answers
1k views

The kernel for mynotebook.ipynb appears to have died. It will restart automatically. from paddleocr import PaddleOCR, draw_ocr ocr = PaddleOCR(use_angle_cls=True, lang='en', use_gpu=False) result = ...
Ha__sh's user avatar
  • 1
2 votes
0 answers
104 views

Jenkins doesn't come back after restart from the URL. But when you go on the machine and look at the jenkins service it is running. This is what can be seen in the jenkins.wrapper.log: 2023-05-23 08:...
Kristina Barutska's user avatar
0 votes
1 answer
3k views

I'm developing a Django website, in which top menu should reflect changes in the page structure. In some sections (such as "About") changes are rare, so the menu is kept as a separate HTML ...
Michael Romanov's user avatar
0 votes
1 answer
311 views

I enabled docker container to restart automatically during crashes/system reboots etc. For this we applied the docker restart policy to always for an already running container . Sent a SIGHUP signal ...
Zama Ques's user avatar
  • 1,554
0 votes
1 answer
706 views

Setting up custom build agents using Kubernetes plugin on Jenkins represents a major issue. Every time the Jenkins master node restarts, the custom agent templates defined in Manage Jenkins > ...
Anouar's user avatar
  • 11

1
2 3 4 5
31