ajout journald-remote

This commit is contained in:
phil 2023-01-07 00:20:05 +01:00
parent 8a5a320a71
commit ef96a368f3
3 changed files with 66 additions and 0 deletions

39
journald-remote/Vagrantfile vendored Normal file
View File

@ -0,0 +1,39 @@
IMAGE_NAME = "debian/bullseye64"
N =2
node_ip = "192.168.56.10"
Vagrant.configure("2") do |config|
config.ssh.insert_key = false
config.vm.provider "virtualbox" do |v|
v.memory = 512
v.cpus = 1
end
config.vm.define "journald-rcv" do |master|
master.vm.box = IMAGE_NAME
master.vm.network "private_network", ip: "192.168.56.10"
master.vm.hostname = "journald-rcv"
master.vm.provision "shell" do |shell|
shell.path = "journald-rcv.sh"
end
# master.vm.provision "ansible" do |ansible|
# ansible.playbook = "kubernetes-setup/master-playbook.yml"
# ansible.extra_vars = {
# node_ip: "192.168.56.10",
# }
# end
end
(1..N).each do |i|
config.vm.define "journald-snd-#{i}" do |node|
node.vm.box = IMAGE_NAME
node.vm.network "private_network", ip: "192.168.56.#{i + 10}"
node.vm.hostname = "journald-snd-#{i}"
node.vm.provision "shell" do |shell|
shell.path = "journald-snd.sh"
shell.args = node_ip
end
end
end
end

View File

@ -0,0 +1,18 @@
#!/bin/bash
sudo apt-get update
sudo apt-get install -y systemd-journal-remote
sudo systemctl enable systemd-journal-remote.socket
sudo cp /lib/systemd/system/systemd-journal-remote.service /etc/systemd/system
sudo sed -i 's/--listen-https=-3/--listen-http=-3/' /etc/systemd/system/systemd-journal-remote.service
[[ -d /var/log/journal/remote ]] || sudo mkdir /var/log/journal/remote
sudo chown systemd-journal-remote /var/log/journal/remote
sudo systemctl daemon-reload
sudo ss -lntp4

View File

@ -0,0 +1,9 @@
#!/bin/bash
sudo apt-get update
sudo apt-get install -y systemd-journal-remote
rpl="s/^# URL=/URL=http:\/\/${1}:19532/"
sudo sed -i "$rpl" /etc/systemd/journal-upload.conf
sudo systemctl enable systemd-journal-upload.service
sudo systemctl restart systemd-journal-upload.service