This server was rented at the beginning of this month. It took more than half a day to set system security, as soon as you get it, you can package and download the files on the original server, set disk permissions, install software, and so on. You also forget to carefully check the overall situation,
Wait until you get it done, and you'll habitually look at the system logs! The logs from the past six months have been fully completed! What's spectacular is that the logs in February are connected by thousands or even hundreds of serious errors. There is no interval between them. Contact the JS Team of the rental server, the other party insisted that the system was just newly installed. After I took out these logs and showed them, JS changed to saying that this machine was never used here, and the system was new. How should I be a sb, how many times have the system been restarted after no one has used it? Anyone who knows something better can understand it.
JavaScript does not admit it. I have made so many settings after talking so much time. Now, let's just forget it. I don't want to crack my face. Since it's a shoe worn by others, we have to be careful. It is estimated that we used to launch this server as a cainiao, and the key services of the system should not be shut down. We are not sure if there is any horse on it, but you still have to worry ......
Let's get down to the point where there are a lot of system errors. I set IIS to automatically restart every night in the early morning to release the memory and pressure.
The iisreset/restart statement can be used in this case, but it cannot be used in this service, that is, it cannot be started after it is stopped, and it will die there.
Later I used
Iisreset/restart
Net start IISADMIN
Net start w3svc
It takes more than one minute to start the task again and generate the VSS Error Log:
Shadow Copy Service error: the EventSystem service is disabled, or you can try to start it in safe mode. The Shadow replication service cannot be started in safe mode. If the EventSystem service is enabled in security mode, make sure that the EventSystem service is enabled. CLSID: {4e14fba2-2e22-11d1-9964-00c04fbbb345} Name: ceventsystem [0 × 80040206]
Forget it, let's not talk about the process. Let's talk about my solution and start VSS and related services, but there is nothing in the service panel:
Run cmd
Net stop VSS
Net stop swprv
CD c: \ windows \ system32
Regsvr32 ole32.dll
Regsvr32 vss_ps.dll
Vssvc/register
Regsvr32/I swprv. dll
Regsvr32/I eventcls. dll
Regsvr32 es. dll
Regsvr32 stdprov. dll
Regsvr32 vssui. dll
Regsvr32 MSXML. dll
Regsvr32 msxml3.dll
Regsvr32 msxml4.dll
Net start VSS
Net start swprv
After these commands, you will know what service name VSS is. In the service control panel, find the service name related to it and set it to automatic.
What is the effect? We will see the result tomorrow.