Re: [Gluster-users] Announcing Gluster release 4.0.1 (Short Term Maintenance)

2018-03-28 Thread Thing
Hi,

Thanks, if anyone has the time could you review what I did?

I wrote up the process I did as follows.

Did I do anything wrong? have I missed anything?

Not sure firewall is 100% right.

(note I was recovering a brick from a previous ovirt/gluster 3.x install
and wanted to keep the data hence the lvm2 stuff)
4.10.4*Gluster 4.0*

*https://wiki.centos.org/HowTos/GlusterFSonCentOS#head-338b2d9d4c8a798ed7444f4f356c2a67ae8f7dc5
*

   -

   *Make sure the servers point at the internal DNS servers 192.168.1.241
   and 192.168.1.104 and that domain and search lines are present*
   -

   *Setup each in forward and reverse DNS*

   -

   *Setup the servers in /etc/hosts*


*192.168.1.31glusterp1.graywitch.co.nz
   glusterp1**192.168.1.32
glusterp2.graywitch.co.nz 
glusterp2**192.168.1.33glusterp3.graywitch.co.nz
   glusterp3*

*Install EPEL*

   -

   *yum install
http://dl.fedoraproject.org/pub/epel/epel-release-latest-7.noarch.rpm
*


*Install Gluster 4.0*

*https://wiki.centos.org/SpecialInterestGroup/Storage
*

*https://wiki.centos.org/SpecialInterestGroup/Storage/gluster-Quickstart
*




   -

   *yum install centos-release-gluster40*

   -

   *mkdir -p /bricks/brick1*

   -

   *Either create a new volume group, or recover esisting group.*

   -

  *To recover, run pvs and lvs  note the volume group and run vgchange,*


*vgchange -a y  vg-gluster-prod1*


   -

   *add to /etc/fstab,*


*/dev/vg-gluster-prod1/gluster-prod1  /bricks/brick1 xfs defaults 1 2*


   -

   *Setup the servers in DNS*

   -

   *yum install glusterfs-server*

   -

   *Start the gluster service,*

   -

  *systemctl enable glusterd*

  -

  *systemctl start glusterd*

  -

  *systemctl status glusterd*


*● **glusterd.service - GlusterFS, a clustered file-system server*
*Loaded: loaded (/usr/lib/systemd/system/glusterd.service; enabled;
vendor preset: disabled)*   *Active: active (running) since Wed
2018-03-28 15:22:20 NZDT; 2min 42s ago*  *Process: 17341
ExecStart=/usr/sbin/glusterd -p /var/run/glusterd.pid --log-level
$LOG_LEVEL $GLUSTERD_OPTIONS (code=exited, status=0/SUCCESS)* *Main
PID: 17342 (glusterd)*   *CGroup: /system.slice/glusterd.service**
  └─**17342 /usr/sbin/glusterd -p /var/run/glusterd.pid
--log-level INFO*
*Mar 28 15:22:20 glustep1.graywitch.co.nz
 systemd[1]: Starting GlusterFS, a
clustered file-system server...**Mar 28 15:22:20
glustep1.graywitch.co.nz  systemd[1]:
Started GlusterFS, a clustered file-system server.**[root@glustep1 ~]#
*


   -

   *Now we need to set the firewall*

   -

   *Run, f**irewall-cmd –state it should reply “running”*

   -

  *firewall-cmd --add-service=nfs --add-service=samba
--add-service=samba-client –permanent*

  -

  *firewall-cmd --add-port=111/tcp --add-port=139/tcp
--add-port=445/tcp --add-port=965/tcp –add-port=2049/tcp*

  -

  *firewall-cmd --zone=public --add-rich-rule='rule family="ipv4"
source address="192.168.1.31" accept'*

  -

  *firewall-cmd --zone=public --add-rich-rule='rule family="ipv4"
source address="192.168.1.32" accept'*

  -

  *firewall-cmd --zone=public --add-rich-rule='rule family="ipv4"
source address="192.168.1.33" accept'*

  -

  *firewall-cmd --add-port=24007/tcp --add-port=24008/tcp –permanent*

  -

  *firewall-cmd --add-port=24009/tcp --permanent*

  -

  *firewall-cmd --reload*


*This should give us,*
*[root@glustep1 ~]# firewall-cmd --zone=public --list-all**public
(active)*  *target: default*  *icmp-block-inversion: no*  *interfaces:
em1*  *sources: *  *services: ssh dhcpv6-client nfs samba
samba-client*  *ports: 111/tcp 139/tcp 445/tcp 965/tcp 2049/tcp
38465-38469/tcp 631/tcp 111/udp 963/udp 49152-49251/tcp 24007/tcp
24008/tcp 24009/tcp*  *protocols: *  *masquerade: no*  *forward-ports:
*  *source-ports: *  *icmp-blocks: *  *rich rules: **[root@glustep1
~]# *


   -

   *yum -y install nmap to allow troubleshooting*

   -

   *setup the gluster volume,*

   -

  *gluster volume create gv0 replica 3
glusterp1:/bricks/brick1/gv0 glusterp2:/bricks/brick1/gv0
glusterp3:/bricks/brick1/gv0*

  -

   *Start the volume,*

   -

  *gluster volume start gv0*

  -

   *check the volume*

   -

  *gl**uster volume info*



*Volume Name: gv0Type: Replicate**Volume ID:
a92ef588-5e86-459d-bd46-a0df65f2bd4e* *Status: Created* *Snapshot
Count: 0* *Number
of Bricks: 1 x 3 = 3* *Transport-type: tcp* *Bricks:* *Brick1:
glusterp1:/bricks/brick1/gv0* *Brick2: 

Re: [Gluster-users] Announcing Gluster release 4.0.1 (Short Term Maintenance)

2018-03-28 Thread Niels de Vos
On Wed, Mar 28, 2018 at 01:10:22PM -0400, Vlad Kopylov wrote:
> I think we are missing 3.12.7 in CentOS releases.

It is available in the testing repository. Either nobody confirmed that
the packages are OK, or I missed the report. You can get the 3.12.7
version with these commands:

  # yum install centos-release-gluster
  # yum --enablerepo=centos-gluster312 install glusterfs-server

Thanks,
Niels


> 
> On Wed, Mar 28, 2018 at 4:47 AM, Niels de Vos  wrote:
> > On Wed, Mar 28, 2018 at 02:57:55PM +1300, Thing wrote:
> >> Hi,
> >>
> >> Thanks, yes, not very familiar with Centos and hence googling took a while
> >> to find a 4.0 version at,
> >>
> >> https://wiki.centos.org/SpecialInterestGroup/Storage
> >
> > The announcement for Gluster 4.0 in CentOS should contain all the
> > details that you need as well:
> > https://lists.centos.org/pipermail/centos-announce/2018-March/022805.html
> >
> > HTH,
> > Niels
> >
> >
> >>
> >> On 28 March 2018 at 14:37, Kaleb S. KEITHLEY  wrote:
> >>
> >> >
> >> > Go to [1], click on CentOS, the README.txt has links to the CentOS
> >> > Storage SIG where you can find information on installing RPMs from the
> >> > CentOS Storage SIG.
> >> >
> >> >
> >> > On 03/27/2018 08:53 PM, Thing wrote:
> >> > > Hi,
> >> > >
> >> > > Thanks, any howtos/docs/notes for installing gluster4.0.x on Centos 7
> >> > > please?
> >> > >
> >> > > On 27 March 2018 at 01:28, Shyam Ranganathan  >> > > > wrote:
> >> > >
> >> > > The Gluster community is pleased to announce the release of Gluster
> >> > > 4.0.1 (packages available at [1]).
> >> > >
> >> > > Release notes for the release can be found at [2].
> >> > >
> >> > > Thanks,
> >> > > Gluster community
> >> > >
> >> > > [1] Packages:
> >> > > https://download.gluster.org/pub/gluster/glusterfs/4.0/4.0.1/
> >> > > 
> >> > >
> >> > > [2] Release notes:
> >> > > https://github.com/gluster/glusterfs/blob/v4.0.1/doc/
> >> > release-notes/4.0.1.md
> >> > >  >> > release-notes/4.0.1.md>
> >> > > ___
> >> > > Gluster-users mailing list
> >> > > Gluster-users@gluster.org 
> >> > > http://lists.gluster.org/mailman/listinfo/gluster-users
> >> > > 
> >> > >
> >> > >
> >> > >
> >> > >
> >> > > ___
> >> > > Gluster-users mailing list
> >> > > Gluster-users@gluster.org
> >> > > http://lists.gluster.org/mailman/listinfo/gluster-users
> >> > >
> >> >
> >> >
> >
> >> ___
> >> Gluster-users mailing list
> >> Gluster-users@gluster.org
> >> http://lists.gluster.org/mailman/listinfo/gluster-users
> >
> > ___
> > Gluster-users mailing list
> > Gluster-users@gluster.org
> > http://lists.gluster.org/mailman/listinfo/gluster-users
___
Gluster-users mailing list
Gluster-users@gluster.org
http://lists.gluster.org/mailman/listinfo/gluster-users


Re: [Gluster-users] Announcing Gluster release 4.0.1 (Short Term Maintenance)

2018-03-28 Thread Vlad Kopylov
I think we are missing 3.12.7 in CentOS releases.

On Wed, Mar 28, 2018 at 4:47 AM, Niels de Vos  wrote:
> On Wed, Mar 28, 2018 at 02:57:55PM +1300, Thing wrote:
>> Hi,
>>
>> Thanks, yes, not very familiar with Centos and hence googling took a while
>> to find a 4.0 version at,
>>
>> https://wiki.centos.org/SpecialInterestGroup/Storage
>
> The announcement for Gluster 4.0 in CentOS should contain all the
> details that you need as well:
> https://lists.centos.org/pipermail/centos-announce/2018-March/022805.html
>
> HTH,
> Niels
>
>
>>
>> On 28 March 2018 at 14:37, Kaleb S. KEITHLEY  wrote:
>>
>> >
>> > Go to [1], click on CentOS, the README.txt has links to the CentOS
>> > Storage SIG where you can find information on installing RPMs from the
>> > CentOS Storage SIG.
>> >
>> >
>> > On 03/27/2018 08:53 PM, Thing wrote:
>> > > Hi,
>> > >
>> > > Thanks, any howtos/docs/notes for installing gluster4.0.x on Centos 7
>> > > please?
>> > >
>> > > On 27 March 2018 at 01:28, Shyam Ranganathan > > > > wrote:
>> > >
>> > > The Gluster community is pleased to announce the release of Gluster
>> > > 4.0.1 (packages available at [1]).
>> > >
>> > > Release notes for the release can be found at [2].
>> > >
>> > > Thanks,
>> > > Gluster community
>> > >
>> > > [1] Packages:
>> > > https://download.gluster.org/pub/gluster/glusterfs/4.0/4.0.1/
>> > > 
>> > >
>> > > [2] Release notes:
>> > > https://github.com/gluster/glusterfs/blob/v4.0.1/doc/
>> > release-notes/4.0.1.md
>> > > > > release-notes/4.0.1.md>
>> > > ___
>> > > Gluster-users mailing list
>> > > Gluster-users@gluster.org 
>> > > http://lists.gluster.org/mailman/listinfo/gluster-users
>> > > 
>> > >
>> > >
>> > >
>> > >
>> > > ___
>> > > Gluster-users mailing list
>> > > Gluster-users@gluster.org
>> > > http://lists.gluster.org/mailman/listinfo/gluster-users
>> > >
>> >
>> >
>
>> ___
>> Gluster-users mailing list
>> Gluster-users@gluster.org
>> http://lists.gluster.org/mailman/listinfo/gluster-users
>
> ___
> Gluster-users mailing list
> Gluster-users@gluster.org
> http://lists.gluster.org/mailman/listinfo/gluster-users
___
Gluster-users mailing list
Gluster-users@gluster.org
http://lists.gluster.org/mailman/listinfo/gluster-users


Re: [Gluster-users] Gluster Global Meetup (Community Meeting Fun!)

2018-03-28 Thread Amye Scavarda
Notes from Global Meetup:
- Translator Conversations: we've got a number of translators that aren't
actively maintained. We should clean these up in our next release.
https://github.com/gluster/community/issues/24 is an issue to track this
work, hopefully in time for 4.1. Assistance requested! If you know of a
translator that's not maintained, come mark it here!

Next meetup:
- We had better turnout as an IRC meeting, so let's move back to that for
11 April to try things out again.
 #gluster-meeting on freenode, 15:00 UTC on 11 April.
Open agenda: https://bit.ly/gluster-community-meetings
- Reminders to go out the day before and 10 minutes before, amye to host
again.


On Tue, Mar 20, 2018 at 11:34 AM, Amye Scavarda  wrote:

> Hey all!
> In the spirit of trying something new with the Community Meeting, this
> next one is changing a bit.
> I'm calling it 'Gluster Global Meetup' for lack of a better name (names
> welcomed) - and we're putting it on a video call.
> Same time as the community meeting, but a little different on the format.
>
> Here's a video call link for this that I'll add to the community meeting
> IRC channel and our agenda:
> https://bluejeans.com/u/ascavard
> Gluster Global Meetup
> - 4.0, looking forward to 4.1
> - Translator Conversations: what's new, what's coming, what's broken, what
> should be retired
> - Community Working Group notes
> - Any other items of Business
>
> Looking forward to seeing you there!
> - amye
>
> --
> Amye Scavarda | a...@redhat.com | Gluster Community Lead
>



-- 
Amye Scavarda | a...@redhat.com | Gluster Community Lead
___
Gluster-users mailing list
Gluster-users@gluster.org
http://lists.gluster.org/mailman/listinfo/gluster-users

Re: [Gluster-users] Announcing Gluster release 4.0.1 (Short Term Maintenance)

2018-03-28 Thread Niels de Vos
On Wed, Mar 28, 2018 at 02:57:55PM +1300, Thing wrote:
> Hi,
> 
> Thanks, yes, not very familiar with Centos and hence googling took a while
> to find a 4.0 version at,
> 
> https://wiki.centos.org/SpecialInterestGroup/Storage

The announcement for Gluster 4.0 in CentOS should contain all the
details that you need as well:
https://lists.centos.org/pipermail/centos-announce/2018-March/022805.html

HTH,
Niels


> 
> On 28 March 2018 at 14:37, Kaleb S. KEITHLEY  wrote:
> 
> >
> > Go to [1], click on CentOS, the README.txt has links to the CentOS
> > Storage SIG where you can find information on installing RPMs from the
> > CentOS Storage SIG.
> >
> >
> > On 03/27/2018 08:53 PM, Thing wrote:
> > > Hi,
> > >
> > > Thanks, any howtos/docs/notes for installing gluster4.0.x on Centos 7
> > > please?
> > >
> > > On 27 March 2018 at 01:28, Shyam Ranganathan  > > > wrote:
> > >
> > > The Gluster community is pleased to announce the release of Gluster
> > > 4.0.1 (packages available at [1]).
> > >
> > > Release notes for the release can be found at [2].
> > >
> > > Thanks,
> > > Gluster community
> > >
> > > [1] Packages:
> > > https://download.gluster.org/pub/gluster/glusterfs/4.0/4.0.1/
> > > 
> > >
> > > [2] Release notes:
> > > https://github.com/gluster/glusterfs/blob/v4.0.1/doc/
> > release-notes/4.0.1.md
> > >  > release-notes/4.0.1.md>
> > > ___
> > > Gluster-users mailing list
> > > Gluster-users@gluster.org 
> > > http://lists.gluster.org/mailman/listinfo/gluster-users
> > > 
> > >
> > >
> > >
> > >
> > > ___
> > > Gluster-users mailing list
> > > Gluster-users@gluster.org
> > > http://lists.gluster.org/mailman/listinfo/gluster-users
> > >
> >
> >

> ___
> Gluster-users mailing list
> Gluster-users@gluster.org
> http://lists.gluster.org/mailman/listinfo/gluster-users

___
Gluster-users mailing list
Gluster-users@gluster.org
http://lists.gluster.org/mailman/listinfo/gluster-users