active questions tagged restart - Stack Overflow most recent 30 from stackoverflow.com 2009-12-20T17:44:28Z http://stackoverflow.com/feeds/tag/restart http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1934681/is-onapplicationstart-is-good-idea-in-coldfusion 0 is onApplicationStart is good Idea in Coldfusion? CFUser 2009-12-20T02:15:55Z 2009-12-20T08:29:28Z <p>Hello All,</p> <p>I have to Use a Variable(Query Resultset) in coldfusion, which will get the results from Other Application DB, and Stores in Coldfusion Application. </p> <p>Main idea is I need to call the other Application DB only at Server startup time and cache the results in local. And i need to read the variable in other pages in my Application. I wont overwrite that variable in any page.</p> <p>On googling I found that '<code>onApplicationStart</code>' is useful to assign the variables at Application Startup time.</p> <p>Can Some one suggest me using the <code>onApplicationStart</code> is fine or is there any other way, we can assign a variable at startup time(one time).</p> <p>If <code>onApplicationStart</code> is fine any one suggest me how to use, may be any link where it is explained clearly is helpful.</p> <p>Thanks for the Help</p> http://stackoverflow.com/questions/1923958/pascal-readln-is-restarting-the-pc 1 Pascal Readln is restarting the PC o9mma 2009-12-17T19:20:19Z 2009-12-19T15:32:04Z <p>I have a problem, though it might be virus. In my school, when i compile pascal programms and IF there is readln on the end - the computer restarts. The OS is windows XP.</p> <p>Does anyone here know something about dealing this issue ? Thanks in advance. </p> http://stackoverflow.com/questions/1917831/bounce-multiple-servers-using-ant 0 bounce multiple servers using ant Angrezy 2009-12-16T21:21:28Z 2009-12-16T22:57:36Z <p>Hi All, This is restart target code which is defined in build.xml</p> <p><hr></p> <p>target name="restart"</p> <p>propertycopy name="remote.host" from="deploy.${target.env}.host.${remote.id}"</p> <p>propertycopy name="remote.port" from="deploy.${target.env}.port.${remote.id}"</p> <pre><code>sshexec trust="true" host="${remote.host}" port="${remote.port}" username="${scm.user}" keyfile="${scm.user.key}" command="sudo /usr/local/bin/bounce_jboss" </code></pre> <p>target</p> <p><hr></p> <p>server information is defined in build.properties.</p> <p>The above code is working fine, but the restarting process is very late bcas its stopping-starting server one and later its stopping-starting another server, </p> <p>Is there a way where i can restart both servers parallely with a time frame of 45 seconds.</p> http://stackoverflow.com/questions/1916706/sharepoint-designer-how-to-restart-a-workflow 0 Sharepoint Designer - how to restart a workflow notnot 2009-12-16T18:36:13Z 2009-12-16T19:20:24Z <p>Is there a way, through SPD (w/o the state machine extension), to restart a workflow?</p> http://stackoverflow.com/questions/1835773/restart-multi-threaded-perl-script-and-close-mysql-connection 2 restart multi-threaded perl script and close mysql connection ankimal 2009-12-02T21:00:45Z 2009-12-02T23:02:58Z <p>I have a Perl script that reads a command file and restarts itself if necessary by doing:</p> <p>myscript.pl:</p> <pre><code>exec '/home/foo/bin/myscript.pl'; exit(0); </code></pre> <p>Now, this works fine except for one issue. The thread that reads the command file does not have access to the DBI handle I use. And over a number of restarts I seem to build up the number of open mysql connections till I get the dreaded "Too Many Connections" error. The DBI spec says:</p> <p><em>"Because of this (possibly temporary) restriction, newly created threads must make their own connections to the database. Handles can't be shared across threads."</em></p> <p>Any way to close connections or perhaps a different way to restart the script?</p> http://stackoverflow.com/questions/1816978/capistrano-not-restarting 0 Capistrano not restarting JZ 2009-11-29T22:20:05Z 2009-12-01T03:43:15Z <p>Capistrano is deploying cold, deploying updates and uploading the symlink fine. It will not however restart. </p> <p>I notice that permission is denied on the /script/process/reaper file. I have found <a href="http://www.mail-archive.com/capistrano@googlegroups.com/msg04485.html" rel="nofollow">a suggestion</a> implying the file needs updated permissions. Does anyone have experience with this?</p> <pre><code>Macintosh-5:barcoden fogonthedowns$ cap deploy:restart * executing `deploy:restart' * executing "/home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper" servers: ["owens.fogonthedowns.com"] Password: [owens.fogonthedowns.com] executing command ** [out :: owens.fogonthedowns.com] sh: /home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper: Permission denied command finished failed: "sh -c \"/home/fogonthedowns/owens.fogonthedowns.com/current/script/process/reaper\"" on owens.fogonthedowns.com Macintosh-5:barcoden fogonthedowns$ </code></pre> http://stackoverflow.com/questions/1780163/why-does-tomcat-take-time-to-recognize-the-folder-on-shutting-down-and-restarting 0 why does tomcat take time to recognize the folder on shutting down and restarting it? Anonymous 2009-11-22T22:06:40Z 2009-11-23T01:27:33Z <p>I work on a folder and tomcat recognizes the folder. But, when I shutdown and restart tomcat it is taking time to recognize the same folder. Can anybody tell me why?</p> <p>I see the error report in catalina.out. It gives a list of errors but finally says Nov 22, 2009 2:08:58 PM org.apache.catalina.startup.Catalina start INFO: Server startup in 1403 ms</p> http://stackoverflow.com/questions/1714213/wipe-svn-to-reinitialise 0 Wipe SVN to reinitialise wishi_ 2009-11-11T10:03:52Z 2009-11-11T10:20:53Z <p>Hi!</p> <p>Does anybody know how to delete the complete svn repository including old revisions? I just want to start again ;)</p> <p>Thanks, wishi</p> http://stackoverflow.com/questions/1705340/how-do-i-go-about-getting-a-page-to-restart-processing-in-c 0 How do I go about getting a page to restart processing in C#? Iain Fraser 2009-11-10T02:44:13Z 2009-11-10T04:22:13Z <p>I'm working with a CMS which allows you to develop your own custom controls which get dynamically included at runtime. So I have a custom control which alters a datasource (NHibernate cache) and as I'm at a point in the process where the CMS has already read this data from the cache, I need to restart the processing of the page somehow so that the CMS picks up the new cache data. </p> <p>I know there are probably more elegant ways of doing this, but because I am unable to directly alter the data held by the CMS' core once it has read from the cache and because of the way the control gets loaded by the CMS I am out of alternatives (I think).</p> <p>I have tried doing a Response.Redirect() to the requested URL, but most browsers will think this is an infinite loop and kill the request. Any other ideas?</p> http://stackoverflow.com/questions/1136280/killing-the-windows-shell 1 Killing the Windows Shell [closed] Boldewyn 2009-07-16T08:53:53Z 2009-11-05T16:27:40Z <p>On Linux machines you have the handy <code>Ctrl+Alt+Backspace</code> to restart the X server, if your GUI hangs.</p> <p>Is there something comparable on Windows? I.e., a combination of key strokes to kill/restart the Windows shell in situations where the task manager is not a viable way?</p> <p>Cheers,</p> http://stackoverflow.com/questions/1463689/how-do-i-code-a-watchdog-timer-to-restart-a-windows-service 1 How do I code a watchdog timer to restart a Windows service? Jeff Pan 2009-09-23T02:32:00Z 2009-11-03T14:06:49Z <p>I'm very interested in the answer to another question regarding watchdog timers for Windows services (see <a href="http://stackoverflow.com/questions/218447/best-way-to-determine-if-a-net-windows-service-has-not-hung/218498#218498">here</a>). That answer stated:</p> <blockquote> <p>I have also used an internal watchdog system running in another thread. That thread looks at the main thread for activity like log output or a toggling event. If the activity is not seen then the service is considered hung and I shutdown the service.</p> <p>In this case you can configure windows to auto-restart a stopped service and that might clear the problem (as long as it's not an internal logic bug).</p> <p>Also services I work with have text logs that are written to a log. In addition for services that are about to "sleep for a bit", I log the time for the next wake up. I use MTAIL to watch a log for output."</p> </blockquote> <p>Could anyone give some sample code how to use an internal watchdog running in another thread, since I currently have a task to develop a windows service which will be able to self restart in case it failed, hung up, etc.</p> <p>I really appreciate your help.</p> http://stackoverflow.com/questions/1647811/c-restarting-application-conflicts-with-program-already-running-error 1 C# - Restarting application conflicts with "program already running" error Nate Shoffner 2009-10-30T03:13:56Z 2009-10-30T03:28:41Z <p>When I call the Application.Restart() method, the error comes up that detects whether the application is currently running. Is there anyway around this?</p> <pre><code> static void Main(string[] args) { string proc = Process.GetCurrentProcess().ProcessName; Process[] processes = Process.GetProcessesByName(proc); if (processes.Length &gt; 1) { MessageBox.Show("Program is already running.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error); } else { Application.EnableVisualStyles(); Application.SetCompatibleTextRenderingDefault(false); Application.Run(new Form1()); } } </code></pre> http://stackoverflow.com/questions/1625518/start-all-webapps-at-tomcat-5-5-restart -1 Start all webapps at tomcat 5.5 restart mario 2009-10-26T15:36:46Z 2009-10-26T16:02:23Z <p>Hi, I have a problem with my tomcat 5.5 on a CentOs 5.3.<br /> This tomcat manages 4 web application (struts 1, spring, hibernate, postgresql).<br /> Well, when I launch /etc/init.d/tomcat restart, always only 2 or max three application come up, almost 1 doesn't come up. Look that not always the same doesn't come up (there are no problem with the application, it's only a tomcat problem). Maybe tomcat can't start the applications due it need more time to manage the connection pool?</p> <pre> AbandonedObjectPool is used (org.apache.tomcat.dbcp.dbcp.AbandonedObjectPool@5443563e) LogAbandoned: true RemoveAbandoned: true RemoveAbandonedTimeout: 60 Oct 26, 2009 4:37:45 PM org.apache.catalina.core.StandardContext start SEVERE: Error listenerStart Oct 26, 2009 4:37:45 PM org.apache.catalina.core.StandardContext start SEVERE: Context [/demo1] startup failed due to previous errors log4j:WARN No appenders could be found for logger (org.apache.commons.digester.Digester.sax). log4j:WARN Please initialize the log4j system properly. AbandonedObjectPool is used (org.apache.tomcat.dbcp.dbcp.AbandonedObjectPool@3159fa96) LogAbandoned: true RemoveAbandoned: true RemoveAbandonedTimeout: 60 </pre> http://stackoverflow.com/questions/1611256/automatically-restart-program-when-error-occur 1 Automatically restart program when error occur jack 2009-10-23T03:36:43Z 2009-10-23T06:44:25Z <p>The program is like this:</p> <pre><code>HEADER CODE urllib2.initialization() try: while True: urllib2.read(somebytes) urllib2.read(somebytes) urllib2.read(somebytes) ... except Exception, e: print e FOOTER CODE </code></pre> <p>My question is when error occurs (timeout, connection reset by peer, etc), how to restart from urllib2.initialization() instead of existing main program and restarting from HEADER CODE again?</p> http://stackoverflow.com/questions/1580110/sharepoint-virtualpathproviders-and-application-restarts 1 SharePoint, VirtualPathProviders and Application Restarts Nariman 2009-10-16T19:56:46Z 2009-10-20T09:53:51Z <p>Given that the only way to unload dynamically compiled assemblies (to reclaim memory) is to unload the app domain, how does SharePoint rely on VirtualPathProviders, for master pages and page layouts in particular, without bumping into this limitation?</p> <p>The restart can be delayed through various settings but not avoided completely when master pages and page layouts are updated and published frequently, correct?</p> <p>(Is the lack of info on this attributed to it being a more theoretical limit that's not common in publishing patterns? Have you personally noticed the rate of changes to master pages or layouts causing app instability? Should SharePoint come with a warning?)</p> <p>Any CMS-esque capability that leverages dynamic WebForms (including, by default, MVC views) is susceptible to rate-of-change instability, correct?</p> <p><strong>Update on No-Compile Pages:</strong> </p> <p>No-compile pages In ASP.NET 2.0, the compilation model has been significantly refactored and extended. Site precompilation is perhaps the most popular and loudly requested of the new features. Another quite interesting feature is no-compile pages. They are special pages that just never get compiled. So what’s the ultimate purpose of no-compile pages, and what’s the difference between them and static HTML pages? To start off, you create a no-compile page by setting the CompilationMode attribute on the @Page directive to Never. When a no-compile page is requested, no page assembly is created and persisted to disk. Instead, an instance of the page builder component is cached in memory and used to create the page output for each and every request. The page builder is a special component that supports the page parser in building the page control tree. When compilation is turned on, the control tree is used to obtain a class to compile. When compilation is off, the control tree is used to obtain markup. Needless to say, classes are necessary if you want to give programmers the power of attaching their own code to the page. No-compile pages are made of server controls and literals but contain no code at all. </p> <p>No-compile pages are not for every application. They are exclusively designed for improving the scalability on very large web sites with thousands of pages. No-compile pages can’t be bound to a code file and can’t contain a server-side block. The only executable piece of code allowed in a no-compile page are $-expressions. There are two main benefits out of no-compile pages. In a secure environment like SharePoint, no-compile pages prevent developers from writing potentially buggy code that can cause problems to the hosting environment and even tear it down. In a large content-based web site, no-compile pages avoid the need to compile thousands of pages. </p> <p>References:</p> <p>[1] – <a href="http://haacked.com/archive/2009/04/22/scripted-db-views.aspx" rel="nofollow">http://haacked.com/archive/2009/04/22/scripted-db-views.aspx</a></p> http://stackoverflow.com/questions/1568761/android-restarting-an-activity-inside-a-tab-by-passing-data-to-it 0 Android: Restarting an activity inside a tab by passing data to it? Legend 2009-10-14T20:25:10Z 2009-10-15T11:23:54Z <p>I have a main activity which contains a tabhost which holds three other activities and starts them when necessary. On the main activity, I provide an option for selecting a value and based on this I need to change certain aspects. I am aware of Intent communication via the startActivityForResult. I get the value of the selection but now I need to change the content of the active tab... How would I go about doing this? Will I send the data to the running activity or just restart the activity by passing new values?</p> <p>The activities inside the tabs are just listviews...</p> http://stackoverflow.com/questions/1566084/is-it-possible-to-restart-a-pc-using-pure-net-and-without-using-p-invoke 3 Is it possible to restart a PC using "pure" .NET and *without* using p/invoke? joshcomley 2009-10-14T13:00:45Z 2009-10-14T14:39:27Z <p>Is it possible, without employing pinvoke, to restart a PC using .NET?</p> <p>I kind of just repeated the title, but I'm not too sure how to elaborate much further!</p> <p><b>Edit:</b></p> <p>I should have mentioned that don't want to use "shutdown -r" as a solution.</p> <p>I was really after a pure .NET way, something like:</p> <p><code>Environment.ShutDown();</code></p> <p>In other words, something that is maintained with .NET as new versions of Windows arise.</p> <p><b>Edit 2:</b></p> <p><em>Please</em> stop asking "what's wrong with p/invoke". Those sort of answers are exactly what SO users seem to love; the supposed "lateral" approach to answering a question. However, although there is no real problem with p/invoke and I will happily use it, what on earth is wrong with asking if .NET has a more official way of achieving something? If it's in .NET then any API changes between OSes will (most likely) get reflected. Whatever the reason, it's not a crime to seek to minimise DLL import usage is it?</p> <p>I'm sure if I included something in a question like:</p> <pre><code>[DllImport("something32.dll")] static extern int ClimbWall32Ex(IntPtr32 blah); </code></pre> <p>And you could just do:</p> <pre><code>SomeNamespace.ClimbWall(); </code></pre> <p>Everyone one here would scream: "what is wrong with using <code>SomeNamespace.ClimbWall();</code>??"</p> <p>Sigh.</p> http://stackoverflow.com/questions/1534462/resin-restarts-when-class-files-or-servlets-are-uploaded 0 Resin Restarts when class files or Servlets are uploaded. JM 2009-10-07T21:55:12Z 2009-10-07T22:44:11Z <p>Hi. When we upload a .class file or a servlet to the server, the web server restarts. This does not happen when we upload a JSP. Is there a way to configure Resin so that it dynamically loads the class without restarting the web server?</p> http://stackoverflow.com/questions/1512045/how-to-disable-orientation-change-in-android 1 How to disable orientation change in Android ? PHP Jedi 2009-10-02T22:12:44Z 2009-10-02T23:19:33Z <p>Hi</p> <p>I have an application that i just would like to use in portrait mode, so i have defined android:screenOrientation="portrait" in the manifest xml. This works ok for the htc magic phone. </p> <p>BUT I have a problem with the HTC G1 phone as i open the hardware qwerty keyboard (not the virtual keyboard). My activity stays in portrait mode, but seems to get restarted and looses all its states. This does not happen with the hero version.</p> <p>My application is quite big so i dont want it to restart and loose all its states when the keyboard is opened. Any idea on how i can do that?</p> http://stackoverflow.com/questions/1486030/program-restart 0 Program Restart Tornike 2009-09-28T08:49:57Z 2009-09-28T10:19:22Z <p>I have a Program which is written in C++. It is a program which needs to be restarted when network connection is lost ...</p> <p>I have written program code which is pinging IP and I'm stuck on that ...</p> <p>Can anybody show me the code for the next step</p> <p>Thank you beforehand.</p> http://stackoverflow.com/questions/1477121/reconnect-rmi-client-after-server-restart 2 Reconnect RMI client after server restart Aaron Digulla 2009-09-25T12:50:54Z 2009-09-28T08:00:48Z <p>I have an RMI server and a desktop RMI client. When I restart the server, I get errors in the client. Is it possible to restart the RMI connection without restarting the client?</p> <p>[EDIT] Here is the stacktrace:</p> <pre><code>java.rmi.ConnectException: Connection refused to host: xxx.xxx.xxx.xxx; nested exception is: java.net.ConnectException: Connection refused: connect at ...user code... Caused by: java.rmi.ConnectException: Connection refused to host: xxx.xxx.xxx.xxx; nested exception is: java.net.ConnectException: Connection refused: connect at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:574) at sun.rmi.transport.tcp.TCPChannel.createConnection(TCPChannel.java:185) at sun.rmi.transport.tcp.TCPChannel.newConnection(TCPChannel.java:171) at sun.rmi.server.UnicastRef.invoke(UnicastRef.java:94) at java.rmi.server.RemoteObjectInvocationHandler.invokeRemoteMethod(RemoteObjectInvocationHandler.java:179) at java.rmi.server.RemoteObjectInvocationHandler.invoke(RemoteObjectInvocationHandler.java:132) at $Proxy0.search(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:592) at org.springframework.remoting.rmi.RmiClientInterceptorUtils.invokeRemoteMethod(RmiClientInterceptorUtils.java:108) at org.springframework.remoting.rmi.RmiClientInterceptor.doInvoke(RmiClientInterceptor.java:362) at org.springframework.remoting.rmi.RmiClientInterceptor.invoke(RmiClientInterceptor.java:258) at org.springframework.aop.framework.ReflectiveMethodInvocation.proceed(ReflectiveMethodInvocation.java:171) at org.springframework.aop.framework.JdkDynamicAopProxy.invoke(JdkDynamicAopProxy.java:204) at $Proxy1.search(Unknown Source) ... 3 more Caused by: java.net.ConnectException: Connection refused: connect at java.net.PlainSocketImpl.socketConnect(Native Method) at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333) at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195) at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182) at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:367) at java.net.Socket.connect(Socket.java:524) at java.net.Socket.connect(Socket.java:474) at java.net.Socket.&lt;init&gt;(Socket.java:371) at java.net.Socket.&lt;init&gt;(Socket.java:184) at sun.rmi.transport.proxy.RMIDirectSocketFactory.createSocket(RMIDirectSocketFactory.java:22) at sun.rmi.transport.proxy.RMIMasterSocketFactory.createSocket(RMIMasterSocketFactory.java:128) at sun.rmi.transport.tcp.TCPEndpoint.newSocket(TCPEndpoint.java:569) ... 20 more </code></pre> http://stackoverflow.com/questions/1329001/how-to-prevent-system-from-shutting-down-or-restart-in-a-win32-service 2 How to Prevent System from Shutting down or Restart in a Win32 service? Isaac 2009-08-25T15:23:15Z 2009-09-25T20:00:02Z <p>i want to prevent users from shut down or restart the system. my application runs as a Win32 Native Service (written by C++) and under LocalSystem account. </p> <p>i heard about WM_QUERYENDSESSION it's solution: creating a hidden window and capturing WM_QUERYENDSESSION to prevent shutdown.</p> <p>but this solution is not really clean and also have to create one window for each desktop. So i have to enumerate desktops and also care about when a desktop created/destoryed. All of these make the situation nasty!</p> <p>Is there any way to detect shutdown/restart event and prevent system shutdown/restart?</p> <p>(It is not important that the event is shutdown or restart, both of them must be cancelled!)</p> http://stackoverflow.com/questions/1435188/fast-restart-technique-instead-of-keeping-the-good-state-availability-and-consis 1 Fast restart technique instead of keeping the good state (availability and consistency) Superfilin 2009-09-16T20:08:48Z 2009-09-25T03:56:29Z <p>How often do you solve your problems by restarting a computer, router, program, browser? Or even by reinstalling the operating system or software component?</p> <p>This seems to be a common pattern when there is a suspect that software component does not keep its state in the right way, then you just get the initial state by restarting the component.</p> <p>I've heard that Amazon/Google has a cluster of many-many nodes. And one important property of each node is that it can restart in seconds. So, if one of them fails, then returning it back to initial state is just a matter of restarting it.</p> <p>Are there any languages/frameworks/design patterns out there that leverage this techinque as a first-class citizen?</p> <p><strong>EDIT</strong> The link that describes some principles behind Amazon as well as overall principles of availability and consistency: <a href="http://www.infoq.com/presentations/availability-consistency" rel="nofollow">http://www.infoq.com/presentations/availability-consistency</a></p> http://stackoverflow.com/questions/1462932/is-there-a-restart-function-in-windows-c 1 Is there a 'restart' function in Windows/C++ Keand64 2009-09-22T22:18:27Z 2009-09-23T04:50:18Z <p>In a windows project I am working on, I intend to have a menu selection that copletely restarts the app. Is there a Windows or C++ function that does this?</p> http://stackoverflow.com/questions/779405/how-do-i-restart-my-c-winform-application 1 How do I restart my C# WinForm Application? Noffie 2009-04-22T21:52:20Z 2009-09-09T20:11:09Z <p>Developing a C# .NET 2.0 WinForm Application. Need the application to close and restart itself.</p> <pre><code>Application.Restart(); </code></pre> <p>The above method has <a href="http://stackoverflow.com/questions/95098/why-is-application-restart-not-reliable">proven to be unreliable</a>.</p> <p>What is a better way to restart the application?</p> http://stackoverflow.com/questions/349884/how-do-i-programatically-restart-a-system-servicenot-apache-from-apache-in-linu 1 How do I programatically restart a system service(not apache) from apache in linux? ScArcher2 2008-12-08T15:36:39Z 2009-09-06T06:42:11Z <p>I need to simple way to allow an end user to restart tomcat from a web page served from apache on the same box.</p> <p>We're trying to make it easy for our QC department to deploy a new version of our webapp to apache. We're using samba, but we need an easy way for them to stop / start the tomcat server before/after the deployment.</p> <p>This would only be for internal qc boxes. Is there an existing solution for this? or would it be easier to write a few quick php application to handle this?</p> http://stackoverflow.com/questions/1357023/how-to-restart-the-w3wp-exe-process-using-asp-net-c 0 How to restart the w3wp.exe process using asp.net C#? Mike108 2009-08-31T11:33:30Z 2009-08-31T11:38:40Z <p>How to restart the w3wp.exe process using asp.net C#? For example, I want to click a button in a webform page to restart the w3wp.exe process in the server.</p> http://stackoverflow.com/questions/1193278/debugging-asp-net-website-from-visual-studio-causes-restart-of-the-website 0 Debugging ASP.NET website from Visual Studio causes restart of the website Jaap 2009-07-28T10:39:02Z 2009-08-10T22:05:32Z <p>Somehow, since some time I'm experiencing problems with debugging my ASP.NET website. Every time I try to debug the website ASP.NET shuts down (global.asax_Application_End is called).<br /> I believe this is triggered because the site is built by Visual Studio. However, manually (re)build the site and then start debugging also restarts the site. Even debugging and ending the debugging session, clicking a couple of buttons on the site to get to the desired state, and start a debugging session again still triggers a build action, which causes the site to restart.<br /> Since restarting resets HttpRuntime.Cache booting the site takes a long time, and sometimes I want to debug some situation that involves caching.</p> <p>Now there is a setting on the website's property pages:<br /> Start Action (F5):<br /> Before running startup page:<br /> No Build / Build Page / Build Web Site.</p> <p>I've set it to No Build, restarted Visual Studio, but still it triggers the build action every time I hit F5 or the Start debugging button...</p> <p>Anyone any ideas as to how to resolve this??</p> <p>Thanks,</p> <p>Jaap</p> http://stackoverflow.com/questions/1212241/executing-sc-exe-from-net-process-unable-to-start-and-stop-service 0 Executing sc.exe from .NET Process unable to start and stop service. Jason 2009-07-31T12:20:32Z 2009-08-04T12:09:20Z <p>I'm trying to restart the service from a remote machine. Here is my code. The problem is that I need to enter <code>startinfo.filename = "sc.exe"</code> since I'm putting <code>"start /wait sc"</code> this is causing an error. Here is my code, any thoughts. Also if anyone has any idea how to keep the cmd window open after this is ran so I could see the code that was ran that would be awesome. </p> <pre><code>string strCommandStop1; string strCommandStop2; string strCommandStart1; string strCommandStart2; string strServer = "\\" + txtServerName.Text; string strDb1 = "SqlAgent$" + txtInsName.Text; string strDb2 = "MSSQL$" + txtInsName.Text; strCommandStop1 = @"start /wait sc " + strServer + " Stop " + strDb1; strCommandStop2 = @"start /wait sc " + strServer + " Stop " + strDb2; strCommandStart1 = @"start /wait sc " + strServer + " Start " + strDb2; strCommandStart2 = @"start /wait sc " + strServer + " Start " + strDb1; try { ProcessStartInfo startInfo = new ProcessStartInfo(); startInfo.CreateNoWindow = true; startInfo.Arguments = strCommandStop1; startInfo.Arguments = strCommandStop2; startInfo.Arguments = strCommandStart1; startInfo.Arguments = strCommandStart2; startInfo .FileName = "sc.exe"; Process.Start(startInfo); } catch (Exception e) { MessageBox.Show(e.Message); } </code></pre> http://stackoverflow.com/questions/1194741/starting-and-stopping-a-named-instance-of-sql-server-2005-from-a-client-computer 0 Starting and stopping a named instance of SQL server 2005 from a client computer Jason 2009-07-28T15:03:14Z 2009-07-28T15:23:43Z <p>The issue I'm running into is that I don't always have access to the server but I need to restart the database on the server. Is this possible if so how would I do this?</p> <p>I know you can start and stop a named instance from cmd from the server. Not sure how to do from client.</p>