我有一个没有图形界面的 centOS 服务器。我只通过 ssh 连接到它。因此,GPU 的使用可能并不多。我想让服务器将它用作额外的 CPU 内核。这可能吗?我该怎么做?
主页
/
user-101328
Don Rhummy's questions
Don Rhummy
Asked:
2015-12-11 12:16:07 +0800 CST
我按照 Apache 文档的指示安装了 VC_redist.x86.exe,但是当我运行httpd.exe -k install
它时出现错误:
this program can't start because vcruntime140.dll is missing
from your computer. Try reinstalling the program to fix this problem.
安装 VC_redist.x64.exe 也没有解决问题。
为什么会丢失?安装“VC_redist.x86.exe”后需要重启吗?还有别的吗?
Don Rhummy
Asked:
2014-04-12 16:04:48 +0800 CST
我在 CentOS 上设置了 apache 服务器。我正在尝试添加 SSL。我能够创建证书和密钥,然后更新/etc/httpd/conf.d/ssl.conf
为具有以下配置:
/etc/httpd/conf.d/ssl.conf
#Where I put my cert
SSLCertificateFile /etc/pki/tls/certs/ca.crt
#where I put my key
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
然后我更新了/etc/httpd/conf/httpd.conf
:
/etc/httpd/conf/httpd.conf
Listen 443
SSLEngine on
SSLCertificateFile /etc/pki/tls/certs/ca.crt
SSLCertificateKeyFile /etc/pki/tls/private/ca.key
然后我跑了service httpd restart
,我得到了错误:
Stopping httpd: [OK]
Starting httpd: (98)Address already in use: make_sock: could not bind to address [::]:443
[OK]
我需要做什么才能启用 SSL?