Questions tagged [restart]

Restart refers to the process where a software program or system is systematically (and preferably gracefully) shut down then automatically invoked to full functionality without intervention from the user.

Restart is also often referred to as reboot or reset.

Restarting a software program or system is one of the most common ways to troubleshoot problems as it will put the program or system back into a fresh and predictable state

1535 questions
-1
votes
1 answer

Javascript countdown clock with auto restart

What i need is a javascript countdown clock that will start everyday at 7:40am and end at 2:15pm. But when it ends at 2:15pm i need it to auto restart at 7:40 am.
ryan
  • 1
  • 1
-1
votes
1 answer

Weblogic notification for restart

How do I track if weblogic needs restart after any datasource or new service changes? Assuming you do not notice the notification displayed by weblogic... https://images.app.goo.gl/n8eTrycPvMG6w5y69 ignore URL
-1
votes
1 answer

How to return after restarting python?

Here is code: def test(): //restarting python os.execv(sys.executable, [sys.executable] + sys.argv) print("Successfull") return("Succesfull") It's restarting python but not returning or printing value.
nrs
  • 937
  • 3
  • 17
  • 42
-1
votes
1 answer

Resetting a Variable to its Initial Value

Is there a way to reset a value to its initial state. For example, if a=5 and then throughout the program a-=1 continuously until a=0. How would I reset the program so a=5 again?
AM.AM
  • 9
  • 2
-1
votes
2 answers

System Restart Causes CSS to Render Improperly in Rails App

My computer automatically updated in the middle of the night forcing my computer to shut down. After I restart my rails app I am encountering considerable issues surrounding my CCS and as well as several controllers. For example, I am unable to…
dsteinbr1
  • 77
  • 11
-1
votes
1 answer

Autostart script on vps reboot?

I have a vps linux ubuntu 16.04 with some server installed. I'm tired of manually restarting my server all the time. What can I do solve this problem? My servers run with a "screen" All time when i need to restart a server i need do this: (Open the…
Gary0097
  • 11
  • 2
-1
votes
1 answer

restart error with no output

I'm new to coding, I'm trying to replicate a code for a simple calculator, when I try to run the module is gives me a restart error and nothing happens code is from tkinter import* def frame(root, side): w=Frame(root) w.pack(side=side,…
SANELE
  • 1
  • 2
-1
votes
1 answer

Is shutdown, a command or an application?

We can see that while creating a shortcut for shutting down or restart the computer, the command is shutdown.exe /s /t 00 blah blah, So, my question is that is it an application or just a command in cmd.
-1
votes
1 answer

How to auto-start a service after user clears app(android) data

I have a service running in an android app. When the user goes to Settings -> App Manager and clears the app data, it clears all the databases, files, sharedpreferences, contentproviders of the app. Also, kills the services running. I am looking to…
Puneet Chugh
  • 93
  • 10
-1
votes
2 answers

Looking for a shellscript to start and stop Websphere nodes

I am looking for a shellscript to stop and start all nodes in the WebSphere cluster. We have a deploy script for deploying on WAS servers , now we want to edit this script to stop the WAS servers before the deployment and starts after the…
Madhu
  • 61
  • 2
  • 10
-1
votes
2 answers

How do I get my app to launch to the dashboard after exiting app?

I have a problem with an app of mine and I do not know what to do to fix it. I'm new to Android and do not understand java. The app consists of multiple pages containing lists, all with a spinner to navigate between those pages. You select in item…
Nodens
  • 13
  • 3
-1
votes
1 answer

jupyter kernel restarting issue

i get this message when i run the jupyter notebook "The kernel has died, and the automatic restart has failed. It is possible the kernel cannot be restarted. If you are not able to restart the kernel, you will still be able to save the notebook, but…
-1
votes
1 answer

How to restart automatically a java program which is stucked

I have a program A which runs with a method execute() and for every iteration it writes on a txt file a String. Sometimes this program blocks and I need to stop it and just recall the method execute() that knows where to restart from. I have a…
-1
votes
1 answer

Stop threads and re-running them

I have this program in Java (for audio communication with another host) that starts with an instantiation of 2 objects (that are 2 extension of Thread class). In a certain time i need to reboot the program: How can i stop this threads and reboot…
narraccino
  • 43
  • 9
-1
votes
1 answer

How to restart function from nested `if` without duplicating function steps in Python

I am learning python from the 'Learn Python the Hard Way' book and at the moment I am tinkering with one of the exercises. I would like to restart the following function when the nested if statement is True but without repeating the following step…
nocibambi
  • 2,065
  • 1
  • 16
  • 22