<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic LVM problem in Operating System - Linux</title>
    <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276189#M33970</link>
    <description>Hello,&lt;BR /&gt;Beside others I partitioned the following two logical volumes on my hard drive (single hdd 500Gb with Fedora 9) - lvs:&lt;BR /&gt; &lt;BR /&gt;   LV       VG         Attr   LSize   Origin Snap%  Move Log Copy%  Convert&lt;BR /&gt;   LogVol05 VolGroup00 -wi-ao  19.53G&lt;BR /&gt;   LogVol06 VolGroup00 -wi-a- 205.06G&lt;BR /&gt;&lt;BR /&gt;with the following mount points (/etc/fstab):&lt;BR /&gt;&lt;BR /&gt;/dev/VolGroup00/LogVol05 /var ext3 defaults 1 2&lt;BR /&gt;/dev/VolGroup00/LogVol06 /var/lib/mysql ext3 defaults 1 2&lt;BR /&gt;&lt;BR /&gt;When I populated my MySQL databases the process stopped and I found that /var is completely full. I checked /var/lib/mysql, which is there and contained the database I had installed. After removing the bigger DB df showed the following:&lt;BR /&gt;&lt;BR /&gt;Size  Used Avail Use% Mounted on&lt;BR /&gt;/dev/mapper/VolGroup00-LogVol05&lt;BR /&gt;      20G  5.0G   14G  28% /var&lt;BR /&gt;&lt;BR /&gt;but nothing about /dev/VolGroup00/LogVol06 where I though I would have my databases stored.&lt;BR /&gt;&lt;BR /&gt;Can anyone tell me why this problem occurred and how can I assign /var/lib/mysql to LogVol06&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ebi&lt;BR /&gt;</description>
    <pubDate>Thu, 25 Sep 2008 14:02:35 GMT</pubDate>
    <dc:creator>Ebi</dc:creator>
    <dc:date>2008-09-25T14:02:35Z</dc:date>
    <item>
      <title>LVM problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276189#M33970</link>
      <description>Hello,&lt;BR /&gt;Beside others I partitioned the following two logical volumes on my hard drive (single hdd 500Gb with Fedora 9) - lvs:&lt;BR /&gt; &lt;BR /&gt;   LV       VG         Attr   LSize   Origin Snap%  Move Log Copy%  Convert&lt;BR /&gt;   LogVol05 VolGroup00 -wi-ao  19.53G&lt;BR /&gt;   LogVol06 VolGroup00 -wi-a- 205.06G&lt;BR /&gt;&lt;BR /&gt;with the following mount points (/etc/fstab):&lt;BR /&gt;&lt;BR /&gt;/dev/VolGroup00/LogVol05 /var ext3 defaults 1 2&lt;BR /&gt;/dev/VolGroup00/LogVol06 /var/lib/mysql ext3 defaults 1 2&lt;BR /&gt;&lt;BR /&gt;When I populated my MySQL databases the process stopped and I found that /var is completely full. I checked /var/lib/mysql, which is there and contained the database I had installed. After removing the bigger DB df showed the following:&lt;BR /&gt;&lt;BR /&gt;Size  Used Avail Use% Mounted on&lt;BR /&gt;/dev/mapper/VolGroup00-LogVol05&lt;BR /&gt;      20G  5.0G   14G  28% /var&lt;BR /&gt;&lt;BR /&gt;but nothing about /dev/VolGroup00/LogVol06 where I though I would have my databases stored.&lt;BR /&gt;&lt;BR /&gt;Can anyone tell me why this problem occurred and how can I assign /var/lib/mysql to LogVol06&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;Ebi&lt;BR /&gt;</description>
      <pubDate>Thu, 25 Sep 2008 14:02:35 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276189#M33970</guid>
      <dc:creator>Ebi</dc:creator>
      <dc:date>2008-09-25T14:02:35Z</dc:date>
    </item>
    <item>
      <title>Re: LVM problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276190#M33971</link>
      <description>First, ensure you can mount LogVol06:&lt;BR /&gt;&lt;BR /&gt;mount /dev/VolGroup00/LogVol06 /mnt&lt;BR /&gt;&lt;BR /&gt;Then, copy the content of /var/lib/mysql to /mnt&lt;BR /&gt;&lt;BR /&gt;cp -av /var/lib/mysql/* /mnt&lt;BR /&gt;&lt;BR /&gt;Now, ensure that the Mysql database is stopped and mount the LogVol06 into /var/lib/mysql&lt;BR /&gt;&lt;BR /&gt;umount /mnt&lt;BR /&gt;mount /dev/VolGroup00/LogVol06 /var/lib/mysql&lt;BR /&gt;&lt;BR /&gt;Post any errors that you may receive during this procedure.&lt;BR /&gt;&lt;BR /&gt;Welcome to the forum, please remember to assign points to the answers you get. For more info see:&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://forums1.itrc.hp.com/service/forums/helptips.do?#28" target="_blank"&gt;http://forums1.itrc.hp.com/service/forums/helptips.do?#28&lt;/A&gt;</description>
      <pubDate>Thu, 25 Sep 2008 14:56:44 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276190#M33971</guid>
      <dc:creator>Ivan Ferreira</dc:creator>
      <dc:date>2008-09-25T14:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: LVM problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276191#M33972</link>
      <description>Thanks Ivan, that solved my problem with the exception, that after rebooting I had to mount LogVol06 manually despite the fact that my /etc/fstab contains the line:&lt;BR /&gt;&lt;BR /&gt;/dev/VolGroup00/LogVol06 /var/lib/mysql ext3 defaults 1 2&lt;BR /&gt;&lt;BR /&gt;Is there any way to get it mounted at boot time?&lt;BR /&gt;&lt;BR /&gt;Ebi</description>
      <pubDate>Fri, 26 Sep 2008 10:40:42 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276191#M33972</guid>
      <dc:creator>Ebi</dc:creator>
      <dc:date>2008-09-26T10:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: LVM problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276192#M33973</link>
      <description>add the entry in /etc/fstab&lt;BR /&gt;&lt;BR /&gt;/dev/VolGroup00/LogVol06 /var/lib/mysql ext3 defaults 1 2&lt;BR /&gt;</description>
      <pubDate>Fri, 26 Sep 2008 10:57:11 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276192#M33973</guid>
      <dc:creator>Sandeep_Chaudhary</dc:creator>
      <dc:date>2008-09-26T10:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: LVM problem</title>
      <link>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276193#M33974</link>
      <description>Be carefull in the order, &lt;BR /&gt;/var/lib/mysql should be after /var.&lt;BR /&gt;hope that help</description>
      <pubDate>Fri, 26 Sep 2008 13:33:17 GMT</pubDate>
      <guid>https://community.hpe.com/t5/operating-system-linux/lvm-problem/m-p/4276193#M33974</guid>
      <dc:creator>benoit Bruckert</dc:creator>
      <dc:date>2008-09-26T13:33:17Z</dc:date>
    </item>
  </channel>
</rss>

