+ceph-devel ----- Original Message ----- > From: "Dan Nica" <dan.nica@xxxxxxxxxxxxxxxxxxxx> > To: ceph-users@xxxxxxxx > Sent: Tuesday, 8 December, 2015 7:54:20 PM > Subject: OSD error > Hi guys, > Recently I installed ceph cluster version 9.2.0, and on my osd logs I see > these errors: > 2015-12-08 04:49:12.931683 7f42ec266700 -1 lsb_release_parse - pclose failed: > (13) Permission denied > 2015-12-08 04:49:12.955264 7f42ec266700 -1 lsb_release_parse - pclose failed: > (13) Permission denied > Do I have to worry about it ? what is generating these errors ? Dan, What does "lsb_release -idrc" return on this system? I wonder if we are getting hit with EINTR here maybe and getting SIGPIPE? static void lsb_release_parse(map<string, string> *m, CephContext *cct) { FILE *fp = popen("lsb_release -idrc", "r"); if (!fp) { int ret = -errno; lderr(cct) << "lsb_release_parse - failed to call lsb_release binary with error: " << cpp_strerror(ret) << dendl; return; } char buf[512]; while (fgets(buf, sizeof(buf) - 1, fp) != NULL) { if (lsb_release_set(buf, "Distributor ID:", m, "distro")) continue; if (lsb_release_set(buf, "Description:", m, "distro_description")) continue; if (lsb_release_set(buf, "Release:", m, "distro_version")) continue; if (lsb_release_set(buf, "Codename:", m, "distro_codename")) continue; lderr(cct) << "unhandled output: " << buf << dendl; } if (pclose(fp)) { int ret = -errno; lderr(cct) << "lsb_release_parse - pclose failed: " << cpp_strerror(ret) << dendl; <----------HERE } } Cheers, Brad _______________________________________________ ceph-users mailing list ceph-users@xxxxxxxxxxxxxx http://lists.ceph.com/listinfo.cgi/ceph-users-ceph.com