1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

Rundeckの構築方法

Posted at

概要

Rundeckとは、PagerDuty, Inc. によって開発されたジョブ管理のソフトウェアである。 ジョブの作成、実行、管理、スケジューリング等をすることができる。 Rundeckは、Javaで動作するため多くのOSで利用可能である。
https://www.designet.co.jp/faq/term/?id=UnVuZGVjaw

一言でいうとcronの進化系かなと思います。

構築手順

1.javaインストール

sudo apt-get install openjdk-11-jre-headless

2.リポジトリ署名キーをインポート

curl -L https://packages.rundeck.com/pagerduty/rundeck/gpgkey | sudo apt-key add -

3.rundeckインストール

sudo apt-get update
sudo apt-get install rundeck

4.daemon-reload及びrundeck起動

sudo systemctl daemon-reload
sudo service rundeckd start

5.ログ確認

tail -f /var/log/rundeck/service.log

6.以下のようなログが出力されればOK

Grails application running at http://localhost:4440 in environment: production

7.今回localhostではないところで動かしているので、以下設定を変更する

vi /etc/rundeck/rundeck-config.properties 
#grails.serverURL=http://localhost:4440
grails.serverURL=http://192.168.11.14:4440

1.rundeck再起動

sudo service rundeckd restart

初期アカウント
ユーザー名 : admin
パスワード : admin

スクリーンショット 2024-06-11 22.16.02.png

1
2
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
2

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?