Unable to stop the IIS Services - windows

Good Day,
I have just installed MySQL workbench and try to run this but the error message is pop up Your connection attempt is failed for user root. When I hit the localhost from my browser it open up the IIS7 page.First I have stopped the services using IIS UI but it didn't work then I have unmarked the IIS from the Windows Turn Feature On/Off and also gave the restart to my machine but it still ping to IIS7. I have also tried the alternate way which was mentioned in the already discussed thread using cmd type iisretart /stop etc. Any guidelines to stop the services of IIS without uninstalling it? Help will be appreciated. Thanks

in the same way for iis7 you can try:
net stop WAS (type Y and then press enter to also stop W3SVC)
net start W3SVC (this starts both WAS and W3SVC)

Try running cmd as administrator and then typing:
net stop MsDepSvc
You can also start the service by typing:
net start MsDepSvc
This will stop or start the Remote agent service for the Microsoft Web Deploy 2.0.

Related

Unable to start Redis in Windows Services. Error 1067: The process terminated unexpectedly

I had installed redis-3.0.504. Followed the installation instructions and now redis-server is running in the port
I had also installed redis in Windows services, but that is not running. I'm also not able to manually start the service. Getting the below error.
Any ideas to start the service?
Right-click in the service in Window Services and go to Properties.
Then go to Log On tab and select Local System account.
Click on the Ok button and start the service.
If you installed this via chocolatey, you need to add the following folder to allow the supplied redis.windows-service.conf to work:
C:\ProgramData\chocolatey\lib\redis-64\Logs
If you didn't install via chocolatey, a missing log folder is still likely to be the culprit.
The Redis port for Windows you are using has been deprecated.
As the last commit in that project suggests you can check out Memurai.
Memurai is a production grade software, actively maintained and freely available for development.

how to force rabbitmq to start automatically when my pc is rebooted

well the subject says it all. My rabbitmq server doesn't start automatically when i reboot my Win7 machine. Well it works when I start the server with the "rabbitmq-server" command but it's kind of annoying to do this whenever I reboot my machine.
It all started when I uninstalled the service in order to add a rabbitmq.config file. I had to uninstall and install the service because and I quote from the rabbitmq website "Windows service users will need to re-install the service after adding or removing a configuration file".
Do you guys have any idea on how to do this ?
It is a Windows Service. Make sure it is set to "automatic".
I solved that problem by unistalling and installing the service, this time i set up the ErlangHome and RabbitMQ home before installing and it worked just fine .
Thank's guys!

Visual Studio 2013 publish failed max connections exceeded

I was publishing using VS Express 2013 for Web and had a sockets error on one of the dlls while publishing and now I can't publish at all - I received a VS error that says The maximum number of connections for this site has been exceeded. Learn more at: http://go.microsoft.com/fwlink/?LinkId=221672#ERROR_EXCEEDED_MAX_SITE_CONNECTIONS. The url referenced in the error doesn't even address the error and I've googled with no luck. I have tried deleting everything from the host and starting from scratch and still no luck; web host has no idea how to fix. Does anyone know how to fix this? I'm getting desperate.
Error was caused by a 10054 socket error (basically host dropped connection). After 3 days webhost finally restarted Web Management Services and problem was fixed. Then I got 1/2 way thru publishing and got the same 10054 socket error and then max connections error. I was publishing a lot of files and it appears that host had a connection time out. I got in chat with host and asked them to restart Web Mgmt Svcs again, waited 20 mins and voila - I was able to publish again. Now I am watching publish and if I see the first socket error I cancel the publish so that it doesn't hit the max site connections error. Then I start publishing again and it picks right up where it left off. Nothing I could do on my end to fix it (believe me I tried everything).
Even i get this issue now and then but not necessary to reset web Management Service. You can go to azure website dashboard and reset your web site/ Application first and check.
I got the same error. I opened the Windows Azure item in the "Server Explorer" went to the
Storage item in the tree select Blobs/wad-control-container and delete all the items in the list
In MS Deploy Server (IIS Server)
Windows Registry Editor Version 5.00
[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\IIS Extensions\MSDeploy\3]
"MaxSiteConnections"=dword:00000010
then reboot windows
Thank #LuvAspNet for saving my time.
For others who need more information, you could restart Web Management Services by creating a .bat file with this command (or run directly in cmd) and run as administrator
net stop wmsvc
net start wmsvc
pause

Not able to start oracle 10g service?

It was working fine. Suddenly when I tried to start the server, it is showing this msg
E:\OracleXE\app\oracle\product\10.2.0\server\BIN>net start OracleServiceXE
The service is not responding to the control function.
More help is available by typing NET HELPMSG 2186.
when i typed NET HELPMSG 2186.
E:\OracleXE\app\oracle\product\10.2.0\server\BIN>NET HELPMSG 2186
The service is not responding to the control function.
EXPLANATION
The service cannot run your command at this time.
ACTION
Try the command again later.
If the problem persists, stop and restart the service.
However, if the problem continues after you have restarted the
service, report t he problem. Be sure to include the name of the
service and the command that was refused, to technical support.
I tried once again after restarting my computer, but no use
This is most commonly due to changing your machines name so the configuration stored in listener.ora is no longer correct. Update the machine name stored in it. The file location is (first part depends on where you installed it):
\Oraclexe\app\oracle\product\10.2.0\server\NETWORK\ADMIN\listner.ora
You can try running the program as an administrator and see if it helps.
a) Right click the program.
b) Select Run as administrator.

Hosting a WCF Service in Vista

I put together a small WCF service in VS2008 and when I try to run the host using an HTTP protocol, it bombs because it doesn't have the proper rights to do so. On my "Host.Open()" line I get this exception: "HTTP could not register URL http://+:9001/. Your process does not have access rights to this namespace." I did not seem to have this problem using TCP. My o/s is Vista Home Premium.
This was happening when I would try to Debug it inside VS2008. After a lot of research, I determined I could get the host to run by building, going to the "bin" folder, and right-clicking on my executable, selecting "Run as Administrator". The same thing happened when I tried to use the WcfSvcHost.exe. I had to open the VS2008 Command Prompt window from my menu using "Run as Admin" before I could successfully get WcfSvcHost to run my service.
Is there a way to do this right instead of using this workaround? Am I going to have similar problems when I try to deploy this next week on a Windows 2003 Server?
This link might help you: http://msdn.microsoft.com/en-us/library/ms733768.aspx
Short version: pre-register the url/namespace from a privileged console
netsh http add urlacl url=http://+:9001/ user=DOMAIN\user
Make sure you are starting VS as administrator..
Locally, you can change your base address to something like this:
<host>
<baseAddresses>
<add baseAddress="http://localhost:8731/Design_Time_Addresses/MyService/" />
</baseAddresses>
</host>
The main part being the addition of "Design _ Time _ Addresses". If you create a WCF Service Library project, it sets up the App.config for the project like this by default. Everything works fine this way, but if you remove "Design _ Time _ Addresses" and try to run it with "http://localhost:8731/MyService/", you will get the error that you are running into.
I was having a similar problem here:
WCF ServiceHost basicHttpBinding 503 error
The netsh command works for Vista, but for Windows 2003 server, there is an HttpCfg.exe utility that allows you to register a URL/namespace for an account. Not sure if the netsh is available in 2003.
I never actually got it to work on Vista, I'm still getting 503 errors when I try to access the services. If you run into the same problem/figure it out, I'd appreciate it if you post again! Thanks

Resources