Comment 2 for bug 1771987

Revision history for this message
Shivashankar C R (shivashankarcr) wrote :

Hi,

I got this issue resolved.

I saw lvm2-lvmetad service was disabled but it was active.

-----------------------
root@ubuntu-Compute1:~#
root@ubuntu-Compute1:~# systemctl status lvm2-lvmetad
● lvm2-lvmetad.service - LVM2 metadata daemon
   Loaded: loaded (/lib/systemd/system/lvm2-lvmetad.service; disabled; vendor preset: enabled)
   Active: active (running) since Tue 2018-06-05 15:09:32 +08; 2h 10min ago
     Docs: man:lvmetad(8)
 Main PID: 1023 (lvmetad)
   CGroup: /system.slice/lvm2-lvmetad.service
           └─1023 /sbin/lvmetad -f

Jun 05 15:09:32 ubuntu-Compute1 systemd[1]: Started LVM2 metadata daemon.
-----------------------

Executed these series of commands and lvm2 was enabled and things started working.

 systemctl enable lvm2-lvmetad.service
 systemctl enable lvm2-lvmetad.socket
 systemctl start lvm2-lvmetad.service
 systemctl start lvm2-lvmetad.socket

 systemctl status lvm2-lvmetad

-----------------------
root@ubuntu-Compute1:~# systemctl status lvm2-lvmetad
● lvm2-lvmetad.service - LVM2 metadata daemon
   Loaded: loaded (/lib/systemd/system/lvm2-lvmetad.service; enabled; vendor preset: enabled)
   Active: active (running) since Tue 2018-06-05 17:29:38 +08; 15h ago
     Docs: man:lvmetad(8)
 Main PID: 1024 (lvmetad)
    Tasks: 1
   Memory: 576.0K
      CPU: 13ms
   CGroup: /system.slice/lvm2-lvmetad.service
           └─1024 /sbin/lvmetad -f
-----------------------
Thanks