0
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?

More than 1 year has passed since last update.

Virtual Box 上仮想マシンに構築したZabbixに接続する

Posted at

システム要件

  • OS : Ubuntu Server 22.04 LTS
  • Oracle VM Virtual Box 6.1

1. Virtual Box 設定

アダプタアドレス確認

#ip addr

コマンド結果

1: lo: <LOOPBACK,UP,LOWER_UP> mtu 65536 qdisc noqueue state UNKNOWN group default qlen 1000
    link/loopback 00:00:00:00:00:00 brd 00:00:00:00:00:00
    inet 127.0.0.1/8 scope host lo
       valid_lft forever preferred_lft forever
    inet6 ::1/128 scope host
       valid_lft forever preferred_lft forever
2: enp0s3: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:7a:7e:75 brd ff:ff:ff:ff:ff:ff
    inet 10.0.2.15/24 metric 100 brd 10.0.2.255 scope global dynamic enp0s3
       valid_lft 84330sec preferred_lft 84330sec
    inet6 fe80::a00:27ff:fe7a:7e75/64 scope link
       valid_lft forever preferred_lft forever

◆設定① アダプタの追加

設定 > ネットワーク > アダプタ2 を選択

割り当て : ホストオンリーアダプタ

以下が追加される

3: enp0s8: <BROADCAST,MULTICAST,UP,LOWER_UP> mtu 1500 qdisc fq_codel state UP group default qlen 1000
    link/ether 08:00:27:26:1b:36 brd ff:ff:ff:ff:ff:ff
    inet 192.168.56.101/24 metric 100 brd 192.168.56.255 scope global dynamic enp0s8
       valid_lft 332sec preferred_lft 332sec
    inet6 fe80::a00:27ff:fe26:1b36/64 scope link
       valid_lft forever preferred_lft forever

◆設定② ポートフォワード設定
設定 > ネットワーク > アダプタ1 を選択

割り当て : NAT

ポートフォワーディング : ホストポート:任意 ゲストポート : 5432

2.コンフィグファイル

DHCPでIPアドレスを取得する

# vi /etc/netplan/00-installer-config.yaml
# This is the network config written by 'subiquity'
network:
  ethernets:
    enp0s3:
      dhcp4: true
    --追記--------------
    enp0s8:
      dhcp4: true
    -------------------
  version: 2

ネットワーク有効化

 ip link set enp0s3 up

3.Zabbix画面にアクセス

http://192.168.56.101/zabbix ※IPアドレスは設定⓵で確認したアドレス

ホスト:localhost

ポート:ポートフォワーディングで設定したホストポート

0
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
0
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?