假设我有一个 Azure VM myvm.cloudapp.azure.com
。可以使用http://myvm.cloudapp.azure.com
. 现在我想让它安全https://myvm.cloudapp.azure.com
。我已经添加了证书App Service Certificate
,现在我需要Domain Verification
。
如何验证域?
我们在 Windows Server 2012 中运行大量生产应用程序。现在我们的一个应用程序需要 Visual C++ Redistributable https://www.microsoft.com/en-us/download/details.aspx?id=40784。我不希望我的生产运行应用程序受到影响。我主要使用 .NET 框架 4.6 运行 IIS/ASP.NET 应用程序。那么,安装这个有风险吗?
我有一个在 http 和 https 上运行的网站(mysitedomain.com)。这是httpd.conf,
Listen 80
Listen 443
Listen 81
<VirtualHost *:80>
ServerName mysitedomain.com
DocumentRoot "c:/wamp/www/"
</VirtualHost>
<VirtualHost *:443>
ServerName mysitedomain.com
DocumentRoot "c:/wamp/www/"
SSLEngine on
SSLCertificateFile C:/SSL/S-WildCard.cer
SSLCertificateKeyFile C:/SSL/S-WildCard.key
SSLCACertificateFile C:/SSL/S_chain_cert.crt
</VirtualHost>
现在我想在 mysitedomain.com:81 上运行另一个网站,所以我补充说,
<VirtualHost *:81>
ServerName mysitedomain.com:81
DocumentRoot "c:/wamp/www2/"
</VirtualHost>
但这不起作用。有什么我想念的吗?
我的网站,假设 abc.com 正在使用 http 而不是 https。将这些行添加到 httpd.conf 后,
ServerName abc.com
DocumentRoot "c:/wamp/www/"
Listen 443
SSLEngine on
SSLCertificateFile C:/MyPath/MyCertcer
SSLCertificateKeyFile C:/MyPath/MyKey.key
SSLCACertificateFile C:/MyPath/MyCAA.crt
我的网站开始在 https 上工作,但在 http 上停止。这些设置不在虚拟主机或目录中。我正进入(状态,
Bad Request
Your browser sent a request that this server could not understand.
Reason: You're speaking plain HTTP to an SSL-enabled server port.
Instead use the HTTPS scheme to access this URL, please.
Apache/2.4.9 (Win64) OpenSSL/1.0.1g PHP/5.5.12 Server at abc.com Port 443
在我顶部的 conf 中,我也有,
Listen 0.0.0.0:80
Listen [::0]:80
我有一个 C# 控制台应用程序作为Windows Server 2008 R2
. 该应用程序计划在 Windows Task scheduler
每 15 分钟后运行一次。在我的应用程序结束时,
Logger.Log("Killing app");
Environment.Exit(0);
有时(可能每月一次),我的应用程序不会退出。当我检查我的应用程序日志文件时,我看到了这条Killing app
消息。我确信没有错误,也没有崩溃。只是应用程序没有退出。当我检查 时Task Scheduler
,我看到0xC000013A
了Last Run Result
。由于它没有退出,它会阻止我的工作下次运行。同时(相差十分钟),我在事件日志上看到了这条消息,
The description for Event ID 0 from source gupdate cannot be found. Either the component that raises this event is not installed on your local computer or the installation is corrupted. You can install or repair the component on the local computer.
If the event originated on another computer, the display information had to be saved with the event.
The following information was included with the event:
Service stopped
我什至不知道他们是否相关。
我有 FTP 站点。当我输入错误的用户名/密码时,我在 C:\inetpub\logs\LogFiles 中找不到任何日志。我已经检查过,FTP 日志记录,它已启用并且路径是正确的。
我使用 SQL Server 2008 R2 已经有一段时间了。它工作得很好。现在我需要使用 SQL Server 2012。这会影响我现有的数据库吗?在运行 SQL Server 2008 R2 的计算机上安装 SQL Server 2012 涉及多少风险。
我构建了一个在我的网络中运行良好的 asp.net 应用程序,但我收到用户的抱怨,说它在慢速网络中运行不佳。如何模拟这个以便我可以在慢速网络上测试我的应用程序?