小编Dzi*_*Jam的帖子

使用自定义 OpenSSL 编译 Apache 后,“此版本的 mod_ssl 是针对较新的库编译的”

我已经编译并安装了较新版本的 OpenSSL,然后执行了 Apache 的全新安装,但它无法启动,日志中显示以下消息:

[Mon Mar 30 15:20:13.302086 2020] [ssl:warn] [pid 25350:tid 139644483991296] AH01882: Init: this version of mod_ssl was compiled against a newer library (Ope
nSSL 1.0.1e 11 Feb 2013, version currently loaded is OpenSSL 0.9.8j-fips 07 Jan 2009) - may result in undefined or erroneous behavior
[Mon Mar 30 15:20:13.302348 2020] [ssl:info] [pid 25350:tid 139644483991296] AH01887: Init: Initializing (virtual) servers for SSL
Run Code Online (Sandbox Code Playgroud)

我使用的指南:How to Upgrade openssl 0.9.8 to 1.0.2 with mod_ssl in Apache 2.2.9

环境

$ ldd …
Run Code Online (Sandbox Code Playgroud)

apache openssl mod-ssl

5
推荐指数
1
解决办法
3775
查看次数

如何通过Job DSL设置Active Choice Parameter的脚本沙箱

我有一个 JobDSL 脚本,它使用 Active Choice 参数插件提供的 Active Choice 参数创建 Jenkins 管道作业。不幸的是,JobDSL 不支持在沙箱中运行 Active Choice Groovy 脚本的参数(在 UI 中可用),因此我尝试通过配置块启用它。

这是我的 JobDSL 脚本:

pipelineJob("my-pipeline") {
  logRotator(-1, 10)
  parameters {
    activeChoiceParam('Branch') {
      description('Lists branches for integration job')
      filterable()
      choiceType('SINGLE_SELECT')
      groovyScript {
          script("return ['The list of branches']")
          fallbackScript("return ['Unable to list branches']")
      }
    }
    activeChoiceReactiveParam('Build') {
      description('Specifies which build from selected branch will be used for deployment. Only builds that contain Terraform plan are listed.')
      choiceType('SINGLE_SELECT')
      groovyScript {
          script("return ['Selected build']")
          fallbackScript("return ['Unable to …
Run Code Online (Sandbox Code Playgroud)

groovy jenkins jenkins-plugins jenkins-job-dsl jenkins-groovy

2
推荐指数
1
解决办法
5521
查看次数