2020-08-12 12:20:38 +02:00
<!DOCTYPE html>
< html lang = "en" >
< head >
< meta charset = "utf-8" >
< meta name = "viewport" content = "width=device-width, initial-scale=1.0" >
< meta http-equiv = "Content-Language" content = "en" >
< meta name = "author" content = "Simon Cornet" >
< meta name = "description" content = "Rundeck" >
< meta name = "keywords" content = "personal, cv" >
< meta name = "twitter:card" content = "summary" / >
< meta name = "twitter:title" content = "Rundeck 3.3.1 - MySQL connection" / >
< meta name = "twitter:description" content = "Rundeck" / >
< meta property = "og:title" content = "Rundeck 3.3.1 - MySQL connection" / >
< meta property = "og:description" content = "Rundeck" / >
< meta property = "og:type" content = "article" / >
< meta property = "og:url" content = "https://simoncor.net/post/rundeck_331_mysql/" / >
< meta property = "article:published_time" content = "2020-08-12T00:00:00+00:00" / >
< meta property = "article:modified_time" content = "2020-08-12T00:00:00+00:00" / >
< base href = "https://simoncor.net/post/rundeck_331_mysql/" >
< title >
Rundeck 3.3.1 - MySQL connection · /usr/home/simon/
< / title >
< link rel = "canonical" href = "https://simoncor.net/post/rundeck_331_mysql/" >
< link href = "https://fonts.googleapis.com/css?family=Lato:400,700%7CMerriweather:300,700%7CSource+Code+Pro:400,700&display=swap" rel = "stylesheet" >
< link rel = "stylesheet" href = "https://use.fontawesome.com/releases/v5.13.0/css/all.css" integrity = "sha384-Bfad6CLCknfcloXFOyFnlgtENryhrpZCe29RTifKEixXQZ38WheV+i/6YWSzkz3V" crossorigin = "anonymous" >
< link rel = "stylesheet" href = "https://cdnjs.cloudflare.com/ajax/libs/normalize/8.0.1/normalize.min.css" integrity = "sha256-l85OmPOjvil/SOvVt3HnSSjzF1TUMyT9eV0c2BzEGzU=" crossorigin = "anonymous" / >
< link rel = "stylesheet" href = "https://simoncor.net/css/coder.min.3219ef62ae52679b7a9c19043171c3cd9f523628c2a65f3ef247ee18836bc90b.css" integrity = "sha256-MhnvYq5SZ5t6nBkEMXHDzZ9SNijCpl8+8kfuGINryQs=" crossorigin = "anonymous" media = "screen" / >
< link rel = "stylesheet" href = "https://simoncor.net/css/coder-dark.min.e78e80fc3a585a4d1c8fc7f58623b6ff852411e38431a9cd1792877ecaa160f6.css" integrity = "sha256-546A/DpYWk0cj8f1hiO2/4UkEeOEManNF5KHfsqhYPY=" crossorigin = "anonymous" media = "screen" / >
< link rel = "icon" type = "image/png" href = "https://simoncor.net/images/favicon-32x32.png" sizes = "32x32" >
< link rel = "icon" type = "image/png" href = "https://simoncor.net/images/favicon-16x16.png" sizes = "16x16" >
2020-10-20 13:36:04 +02:00
< meta name = "generator" content = "Hugo 0.75.1" / >
2020-08-12 12:20:38 +02:00
< / head >
< body class = "colorscheme-dark"
onload=""
>
< main class = "wrapper" >
< nav class = "navigation" >
< section class = "container" >
< a class = "navigation-title" href = "https://simoncor.net/" >
/usr/home/simon/
< / a >
< input type = "checkbox" id = "menu-toggle" / >
< label class = "menu-button float-right" for = "menu-toggle" > < i class = "fas fa-bars" > < / i > < / label >
< ul class = "navigation-list" >
< li class = "navigation-item" >
< a class = "navigation-link" href = "https://simoncor.net/post/" > Blog< / a >
< / li >
< li class = "navigation-item" >
< a class = "navigation-link" href = "https://simoncor.net/status/" > Status< / a >
< / li >
< li class = "navigation-item" >
< a class = "navigation-link" href = "https://simoncor.net/position/" > About< / a >
< / li >
< li class = "navigation-item" >
< a class = "navigation-link" href = "https://simoncor.net/scornet_cv.pdf" > CV< / a >
< / li >
< / ul >
< / section >
< / nav >
< div class = "content" >
< section class = "container page" >
< article >
< header >
< h1 > Rundeck 3.3.1 - MySQL connection< / h1 >
< / header >
< p > Rundeck 3.3.1 updated its ‘ mysql-connector-java’ dependancy to version 8.0.21 which renamed the < code > com.mysql.jdbc.Driver< / code > classname to < code > com.mysql.cj.jdbc.Driver< / code > .< / p >
< p > Reconfigure Rundeck accordingly:< / p >
2020-08-12 18:17:46 +02:00
< div class = "highlight" > < pre style = "color:#e5e5e5;background-color:#000;-moz-tab-size:4;-o-tab-size:4;tab-size:4" > < code class = "language-fallback" data-lang = "fallback" > /etc/rundeck/rundeck-config.properties
< / code > < / pre > < / div > < div class = "highlight" > < pre style = "color:#e5e5e5;background-color:#000;-moz-tab-size:4;-o-tab-size:4;tab-size:4" > < code class = "language-fallback" data-lang = "fallback" > ...
- dataSource.url = jdbc:mysql://localhost/rundeck?autoReconnect=true& useSSL=false
2020-08-12 12:20:38 +02:00
+ dataSource.url = jdbc:mysql://localhost/rundeck?serverTimezone=Europe/Amsterdam
...
- dataSource.driverClassName = com.mysql.jdbc.Driver
+ dataSource.driverClassName = com.mysql.cj.jdbc.Driver
2020-08-12 18:17:46 +02:00
+ dataSource.properties.autoReconnect = true
+ dataSource.properties.useSSL = false
2020-08-12 12:20:38 +02:00
...
< / code > < / pre > < / div >
< / article >
< / section >
< / div >
< footer class = "footer" >
< section class = "container" >
< p > Ansible | FreeBSD | Linux | Networking | Security< / p >
©
2020
Simon Cornet
·
Powered by < a href = "https://gohugo.io/" > Hugo< / a > & < a href = "https://github.com/luizdepra/hugo-coder/" > Coder< / a > .
< / section >
< / footer >
< / main >
< / body >
< / html >