我在我的机器上安装了Jenkins版本1.480.3和Email-Extention Plugin 2.30.2.
来自"管理詹金斯"部分的测试邮件工作正常.当我向我的工作添加可编辑的电子邮件通知时,我没有收到它.
还尝试在可编辑的电子邮件通知高级部分中配置"触发器".这也没有用.构建的控制台日志显示已触发电子邮件.
有人可以帮我解决这个问题吗?
我试图让SUBINACL实用程序只显示MSDTC服务的信息.
我输入subinacl/service mstdc,我收到错误5访问被拒绝
C:\temp>subinacl /service msdtc
msdtc - OpenService Error : 5 Access is denied.
Elapsed Time: 00 00:00:00
Done: 1, Modified 0, Failed 1, Syntax errors 0
Last Done : msdtc
Last Failed: msdtc - OpenService Error : 5 Access is denied.
Run Code Online (Sandbox Code Playgroud)
如果我为DHCP服务运行相同的命令,它给了我所有的安全性.我在管理员下运行它.在注册表中的某处我可以为MSDTC解决这个问题吗?
我使用的是Windows 2008 R2 64位.
谢谢.
I am trying to build PHP 5.3.6 with Apache 2.0.55 using gcc compiler in Solaris 10 SPARC. My requirement is to build the Static portable binary of php.
Following is the configure statement I used.
./configure \
--enable-static=yes \
--prefix=/opt/genesys/gvp/php \
--with-apxs2=/opt/genesys/gvp/apache/bin/apxs \
--with-config-file-path=/opt/genesys/gvp/apache/conf \
--disable-cli \
--disable-cgi \
--with-zlib-dir=/usr/local \
--enable-bcmath \
--with-curl=/usr/local \
--with-gdbm=/usr/local \
--with-gd \
--with-png-dir=/usr/local \
--with-libxml-dir=/usr/local \
--with-xsl=/usr/local \
--with-gettext \
--with-iconv=/usr/local \
--without-mysql \
--enable-shmop \
--enable-sockets \
--enable-xml \
--with-libexpat-dir=/usr/local \
--with-iconv-dir=/usr/local …
我的应用程序需要与SQL Server 2008建立安全连接.在服务器端启用了"强制加密",以下是我的C#应用程序中的连接字符串.
Initial Catalog=emp_test;Persist Security Info=True;User ID=sa;Password=***;Data Source=172.21.70.94;Provider=SQLOLEDB;Use Encryption for Data=True;Trust Server Certificate=True;
Run Code Online (Sandbox Code Playgroud)
我没有在服务器中提供任何证书 - 因此我提供了Trust Server Certificate = True,因此未验证自签名服务器证书.
但是没有建立与以下错误的连接.
数据库错误:[DBNETLIB] [ConnectionOpen(SECDoClientHandshake()).] SSL安全性错误.
没有与安全性相关的两个属性,它可以正常工作.
我需要做些什么才能让它发挥作用?