From 2cdc886340395c85b7d39a4b7d5d5f62a33cacde Mon Sep 17 00:00:00 2001 From: Simon Cornet Date: Wed, 12 Aug 2020 12:03:03 +0200 Subject: [PATCH] [BLOG] Added 'Rundeck 3.3.1 - MySQL connection' post --- config.toml | 11 +- content/blog/rundeck_331_mysql.md | 22 ++ public/404.html | 4 + public/blog/index.html | 254 +++++++++++------------ public/blog/index.xml | 21 +- public/blog/page/1/index.html | 2 +- public/blog/rundeck_331_mysql/index.html | 171 +++++++++++++++ public/categories/index.html | 4 + public/index.html | 6 +- public/index.xml | 13 +- public/position/coolblue/index.html | 4 + public/position/index.html | 4 + public/position/itcreation/index.html | 4 + public/position/personal/index.html | 4 + public/position/skills/index.html | 4 + public/position/thyssenkrupp/index.html | 4 + public/series/index.html | 4 + public/sitemap.xml | 12 +- public/status/index.html | 4 + public/tags/index.html | 4 + 20 files changed, 417 insertions(+), 139 deletions(-) create mode 100644 content/blog/rundeck_331_mysql.md create mode 100644 public/blog/rundeck_331_mysql/index.html diff --git a/config.toml b/config.toml index d91a093..7badd13 100644 --- a/config.toml +++ b/config.toml @@ -68,16 +68,21 @@ pygmentscodefencesguesssyntax = true [languages.en.menu] [[languages.en.menu.main]] - name = 'Status' + name = 'Blog' weight = 1 + url = 'blog/' + + [[languages.en.menu.main]] + name = 'Status' + weight = 3 url = 'status/' [[languages.en.menu.main]] name = 'About' - weight = 2 + weight = 4 url = 'position/' [[languages.en.menu.main]] name = 'CV' - weight = 3 + weight = 5 url = 'scornet_cv.pdf' diff --git a/content/blog/rundeck_331_mysql.md b/content/blog/rundeck_331_mysql.md new file mode 100644 index 0000000..93b3329 --- /dev/null +++ b/content/blog/rundeck_331_mysql.md @@ -0,0 +1,22 @@ +--- +title: 'Rundeck 3.3.1 - MySQL connection' +description: "Rundeck" +date: "2020-08-12" +--- + +Rundeck 3.3.1 updated its 'mysql-connector-java' dependancy to version 8.0.21 which renamed the   `com.mysql.jdbc.Driver`   classname to   `com.mysql.cj.jdbc.Driver`. + +Reconfigure Rundeck accordingly: + +```shell +/etc/rundeck/rundeck-config.properties: +... +- dataSource.url = jdbc:mysql://localhost/rundeck?autoReconnect=true&useSSL=false ++ dataSource.url = jdbc:mysql://localhost/rundeck?serverTimezone=Europe/Amsterdam +... +- dataSource.driverClassName = com.mysql.jdbc.Driver ++ dataSource.driverClassName = com.mysql.cj.jdbc.Driver ++ dataSource.properties.autoReconnect = true ++ dataSource.properties.useSSL = false +... +``` diff --git a/public/404.html b/public/404.html index 39c66a0..489f076 100644 --- a/public/404.html +++ b/public/404.html @@ -81,6 +81,10 @@