Re: [CentOS] Semi-OT: ipmitool or ipmicfg: set BMC to use NIC 2

2018-06-29 Thread Chris Adams
Once upon a time, mark  said:
> It's the end of the week, and maybe I'm being dense, but I still don't get
> it: how do I tell the BMC to use eth1? Do I give it eth1's MAC address as
> a gateway?

Choosing the NIC(s) for IPMI is not a general configuration of IPMI;
that's going to be a vendor/hardware specific setting (if it can be done
at all).  Different vendors have different methods of configuring which
NIC(s) have IPMI access.  You won't be able to configure that with
ipmitool; it'll typically have to be set in the BIOS and/or BMC boot
configuration menus.

-- 
Chris Adams 
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Centos 7.5 on Vmware

2018-06-29 Thread Nataraj
On 06/28/2018 02:03 PM, Gregory P. Ennis wrote:
> Everyone,
>
> I am in the initial study phase of putting together a larger virtual
> server while using Centos 7.5 as the operating system of choice for the
>  individual virtual machines.
>
> How do you all like VMware for this, or what other software allows for
> the development of virtural servers that use Centos 7.5
>
> Thanks ahead of time for giving me a head start with your
> experiences
>

It would be helpful if you gave more details about what you were looking
for?  Are you planning to run a bare metal hypervisor, or vmware under
Linux or windows?  What are you performance requirements?  IO? CPU? What
will the VM's be used for?  Do guests requre a graphics console?

Various vmware products ranging from ESXI to vmware workstation are very
popular. I've run several of them. They work.  I now use the Linux
included, kvm/qemu based Red Hat/CentOS virtualization and it meets my
needs very well for general testing/development, email server, web
server kind of stuff.  I also use this setup along with spice to run
test systems with various graphic GUI's.  I would not say that my virt
servers are very heavily loaded.  I have a Dell R210 running CentOS6
KVM/Qemu and a Dell XPS 9360 running Ubuntu 18.04 with kvm/qemu.

If you prefer fancy mangement GUI's over writing scripts and editing
config files, vmware might be better for you. kvm/qemu does include
virt-manager which is a fairly simply GUI to create and manage VM's, but
the user interface is not as comprehensive as the interface for managing
ESXi.

Red Hat does have their high end virtualization products, of which I
believe at least 1 is a bare metal hypervisor.  I have no personal
experience with those products, though if  client came to me with need,
I would examine and seriously consider the Redhat products.

One advantage to the kvm/qemu solution or possibly the redhat
virtualization product is more integrated support.  When I ran vmware, I
used to run into situations where I wanted to beta test the newest
release of some random linux distribution only to find out that vmware
had not yet implemented support for the graphics driver or some other
new hardware feature being used in the OS that I was trying to test.  In
this way, kvm/qemu feels more integrated.  Like other software, kvm/qemu
has bugs here and there, but overall, I'm very happy with it and I like
the price of using it under CentOS and Ubuntu.

I see clients all the time, go out and spend a fortune on huge vmware
clusters, that end up very lightly loaded and could easily be run on a
simple kvm/qemu server running under CentOS (or even one of the desktop
virtualization solutions) with a backup server for redundancy, so I
suggest to consider what your requirements really are.  You could always
go with Redhat if you require support.

Nataraj


___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Samba issues with Win 10

2018-06-29 Thread Fred Smith
On Thu, Jun 28, 2018 at 06:55:21PM -0700, Gordon Messmer wrote:
> On 06/28/2018 07:30 AM, mark wrote:
> >Just ran into a problem: someone with a new laptop, running Win 10,
> >version 1709, tried to map their home directory (served from a CentOS
> >6.9 box, and it fails, with Windows complaining that it no longer
> >supports SMBv1, and if you go to their site, you can install support
> >for that manually
> 
> https://wiki.samba.org/index.php/Samba_3.6_Features_added/changed#SMB2_support

FWIW, with Centos-7 and windows 10, I was finally able to map a Linux
directory to a windows drive, successfully. Problem was selinux, which
I proved by temporarily disabling it (setenforce 0). Doing
"setsebool -P samba_enable_home_dirs 1" then reenabling selinux
(setenforce 1) seems to have fixed it. at least for now.

BTW, I also have max and min smb versions set to 3_11 in my smb.conf
and it all still seems to work.

With 6.9 some of the values/settings may need to be different, but
one thing to check when remote stuff doesn't work, and you've
checked everything else, is to try with setenforce 0. If it suddenly
miraculously works, then its a selinux issue.

-- 
 Fred Smith -- fre...@fcshome.stoneham.ma.us -
  "And he will be called Wonderful Counselor, Mighty God, Everlasting Father,
  Prince of Peace. Of the increase of his government there will be no end. He 
 will reign on David's throne and over his kingdom, establishing and upholding
  it with justice and righteousness from that time on and forever."
--- Isaiah 9:7 (niv) --
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Semi-OT: ipmitool or ipmicfg: set BMC to use NIC 2

2018-06-29 Thread Jonathan Billings
On Fri, Jun 29, 2018 at 05:30:26PM -0400, mark wrote:
> It's the end of the week, and maybe I'm being dense, but I still don't get
> it: how do I tell the BMC to use eth1? Do I give it eth1's MAC address as
> a gateway?

No, use the IP and MAC of the gateway you wish it to use, as if you
were configuring another network device that's on the same network as
eth1 (assuming it's sharing the eth1 physical network port).  THe
important thing to remember is: The BMC is not eth1.  It just happens
to share the physical port you're plugging an ethernet cable into.  It
behaves like there's another computer inside your case, with a vampire
tap on the ethernet port's cable.

For example, if this is your eth1:

$ ip -4 a show dev eth1
2: eth1:  mtu 1500 qdisc fq_codel
state UP group default qlen 1000
inet 10.0.0.5/24 brd 10.0.0.255 scope global dynamic
noprefixroute eth1
   valid_lft 567262sec preferred_lft 567262sec
$ ip -4 route
default via 10.0.0.1 dev eth1 proto dhcp metric 100
10.0.0.0/24 dev eth1 proto kernel scope link src 10.0.0.5 metric 100
$ arp -n 10.0.0.1
Address  HWtype  HWaddress   Flags Mask Iface
10.0.0.1 ether   00:00:11:11:22:22   C  eth1


Then you would pick an IP on your network (lets call it 10.0.0.6) and
set the IPMI interface to use 10.0.0.6/255.255.255.0 and use 10.0.0.1
and 00:00:11:11:22:22 as the defgw MAC.

You won't be able to ping the IP from the same system, but it should
be reachable from other systems on the 10.0.0.0/24 network above.

-- 
Jonathan Billings 
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] Semi-OT: ipmitool or ipmicfg: set BMC to use NIC 2

2018-06-29 Thread mark
Date: Wed, 27 Jun 2018 20:45:44 -0400
From: Jonathan Billings 
> On Wed, Jun 27, 2018 at 05:14:06PM -0400, mark wrote:
>
>> I do see one option of "defgw macaddr" - is that supposed to be a MAC
>> external to the server, or can I use the MAC of eth1 (or whatever the
>> stupid, unrememberable name is)?
>
> As mentioned earlier, the BMC is a different MAC from any interface
> you might see from the OS side.  Think of it as a separate computer that
> shares a physical network port (assuming it doesnt have a dedicated port).

> Imagine what would happen if you put two devices on the network with
> the same MAC.  You don't want to do that.  defgw macaddr is for setting
> what it thnks the Default Gateway's MAC address is.
>
> You will need to set the IP, netmask and gateway using the appropriate
> tool (I prefer ipmitool).  keep in mind that because the device shares a
> port you most likely wont be able to use IPMI to talk over the LAN to the
> device from the OS on the same box.

It's the end of the week, and maybe I'm being dense, but I still don't get
it: how do I tell the BMC to use eth1? Do I give it eth1's MAC address as
a gateway?

 mark

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS-docs] Joining CentOS Storage SIG

2018-06-29 Thread Alan Bartlett
On 29 June 2018 at 16:31, Alan Bartlett  wrote:
> On 29 June 2018 at 16:21, Alan Bartlett  wrote:
>> On 29 June 2018 at 09:07, Niels de Vos  wrote:
>>> On Fri, Jun 29, 2018 at 12:57:13PM +0530, Saravanakumar Arumugam wrote:
>>>

 Sure.
 My wiki login name: Saravanakumar
>>>
>>> Thanks! I've put centos-docs@ on CC so that a wiki admin can create your
>>> personal page and give you permissions to update that.
>>>
>>> And, well, I messed up permissions on
>>> https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/ now. You
>>> can edit the page, but I or others not anymore :-/ I'd appreciate it if
>>> someone corrects my #acl mistake and sets the rights similar to
>>> https://wiki.centos.org/SpecialInterestGroup/Storage :D
>>>
>>> Thanks!
>>> Niels
>>
>> Looking at it now . . .
>>
>> Alan.
>
> Niels,
>
> Please take a look and let me know, perhaps by a private e-mail
> message, if that is what you really would like. (I have cloned the acl
> for the https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/
> page from that on the
> https://wiki.centos.org/SpecialInterestGroup/Storage page and added
> Saravanakumar to the former.)
>
> Alan.

A C-Wiki Homepage has now been initialised --

https://wiki.centos.org/Saravanakumar

Alan.
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS-docs] Joining CentOS Storage SIG

2018-06-29 Thread Alan Bartlett
On 29 June 2018 at 16:21, Alan Bartlett  wrote:
> On 29 June 2018 at 09:07, Niels de Vos  wrote:
>> On Fri, Jun 29, 2018 at 12:57:13PM +0530, Saravanakumar Arumugam wrote:
>>
>>>
>>> Sure.
>>> My wiki login name: Saravanakumar
>>
>> Thanks! I've put centos-docs@ on CC so that a wiki admin can create your
>> personal page and give you permissions to update that.
>>
>> And, well, I messed up permissions on
>> https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/ now. You
>> can edit the page, but I or others not anymore :-/ I'd appreciate it if
>> someone corrects my #acl mistake and sets the rights similar to
>> https://wiki.centos.org/SpecialInterestGroup/Storage :D
>>
>> Thanks!
>> Niels
>
> Looking at it now . . .
>
> Alan.

Niels,

Please take a look and let me know, perhaps by a private e-mail
message, if that is what you really would like. (I have cloned the acl
for the https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/
page from that on the
https://wiki.centos.org/SpecialInterestGroup/Storage page and added
Saravanakumar to the former.)

Alan.
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS-docs] Joining CentOS Storage SIG

2018-06-29 Thread Alan Bartlett
On 29 June 2018 at 09:07, Niels de Vos  wrote:
> On Fri, Jun 29, 2018 at 12:57:13PM +0530, Saravanakumar Arumugam wrote:
>
>>
>> Sure.
>> My wiki login name: Saravanakumar
>
> Thanks! I've put centos-docs@ on CC so that a wiki admin can create your
> personal page and give you permissions to update that.
>
> And, well, I messed up permissions on
> https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/ now. You
> can edit the page, but I or others not anymore :-/ I'd appreciate it if
> someone corrects my #acl mistake and sets the rights similar to
> https://wiki.centos.org/SpecialInterestGroup/Storage :D
>
> Thanks!
> Niels

Looking at it now . . .

Alan.
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS] Replacement web server time - catalog CPAN and PEAR installs

2018-06-29 Thread Gary Stainburn
On Thursday 28 June 2018 21:16:27 Philipoff, Andrew wrote:
> Try running "pear list -a > pear_list.txt" to get a list of install PEAR

Cheers Andrew

Perfect
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS] VMWare Workstation 14 on CentOS7

2018-06-29 Thread wwp
Hello Phil,


On Fri, 29 Jun 2018 08:21:37 +0100 Phil Wyett  wrote:

> On Fri, 2018-06-29 at 07:37 +0200, wwp wrote:
> > Hello there,
> > 
> > 
> > I'm encountering blocking issues with VMWare Workstation v14/v12 on
> > CentOS 7.
> > 
> > The issue is that any Linux guestsystem will get network-disconnected
> > after a short while. I tried w/ brand new guest installs, guests coming
> > from a v12 WS. Tried different guest network settings, I always get
> > disconnected. I found several cases like this on the Web, but couldn't
> > see any working solution yet.
> > 
> > My CentOS7 runs 4.9.75-204.el7.centos.x86_64 kernel.
> > 
> > On my previous CentOS 6, still alive, v12 works like a charm.
> > 
> > Does anyone have experience with this?
> > 
> > 
> > Regards,
> >   
> 
> Hi,
> 
> Is the issue the same when running the stock 7 kernel?

No way to boot this hardware with 3.10 kernels, I'm afraid, this was my
first struggle with it (Dell XPS-15 9560). At first with this
configuration, I was running WS v12, which was showing the issue
(periodic network disconnection). Upgraded to WS v14, was not
installing at all at the beginning, since few updates it installs but
the issue is there again.


Regards,

-- 
wwp


pgpl6DLsOVlpE.pgp
Description: OpenPGP digital signature
___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos


Re: [CentOS-docs] Joining CentOS Storage SIG

2018-06-29 Thread Niels de Vos
On Fri, Jun 29, 2018 at 12:57:13PM +0530, Saravanakumar Arumugam wrote:
...
> > /It will be great if we can add documentation about running CentOS based 
> > />/storage containers (like gluster / ceph containers). />/I can contribute 
> > here as well./
> > If you create a wiki login and pass your username, I can give you
> > permissions to edit/add contents below
> > https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/  . The
> > container images that are recommended should probably come from
> > https://registry.centos.org/  . We only have one GlusterFS and a Heketi
> > container there at the moment.
> 
> Sure.
> My wiki login name: Saravanakumar

Thanks! I've put centos-docs@ on CC so that a wiki admin can create your
personal page and give you permissions to update that.

And, well, I messed up permissions on
https://wiki.centos.org/SpecialInterestGroup/Storage/Gluster/ now. You
can edit the page, but I or others not anymore :-/ I'd appreciate it if
someone corrects my #acl mistake and sets the rights similar to
https://wiki.centos.org/SpecialInterestGroup/Storage :D

Thanks!
Niels
___
CentOS-docs mailing list
CentOS-docs@centos.org
https://lists.centos.org/mailman/listinfo/centos-docs


Re: [CentOS] VMWare Workstation 14 on CentOS7

2018-06-29 Thread Phil Wyett
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

On Fri, 2018-06-29 at 07:37 +0200, wwp wrote:
> Hello there,
> 
> 
> I'm encountering blocking issues with VMWare Workstation v14/v12 on
> CentOS 7.
> 
> The issue is that any Linux guestsystem will get network-disconnected
> after a short while. I tried w/ brand new guest installs, guests coming
> from a v12 WS. Tried different guest network settings, I always get
> disconnected. I found several cases like this on the Web, but couldn't
> see any working solution yet.
> 
> My CentOS7 runs 4.9.75-204.el7.centos.x86_64 kernel.
> 
> On my previous CentOS 6, still alive, v12 works like a charm.
> 
> Does anyone have experience with this?
> 
> 
> Regards,
> 

Hi,

Is the issue the same when running the stock 7 kernel?

Regards

Phil

- -- 
*** If this is a mailing list, I am subscribed, no need to CC me.***

Playing the game for the games sake.

IRC: kathenas

Web: https://kathenas.org

Github: https://github.com/kathenas

GitLab: https://gitlab.com/kathenas

Twitter: kathenasorg

GPG: A0C3 4C6A AC2B B8F4 F1E5 EDF4 333F 60DC B0B9 BB77
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.22 (GNU/Linux)

iQIcBAEBAgAGBQJbNd4MAAoJEDM/YNywubt36BcQAOJ3e9l84A5PF8dhf/TzABp2
RXn+1qxEx9a3jOkt0PsN+BNcWgmSbQfktppBA0/3k5tOVB330IYlRgy3B7fe0/Zi
Fjw4Tp6q1Zm1N+1fgQdl07M33Im1ukFSympj4z6dr7SkL/1T1Kdd6hD5V3GVEHzz
XOpxZVJdQbtdRAS1yrdh6okl/2S9cZrztpjecVSjiW6Gh7BJbveKpET8AckHIVSF
sOrpNmQdyBMd6ax7HZCJfaYnm38fsGPlcCgXE7xBSytb++CAKgfqPPVDdGER8t/Q
Y56ndUQnIZcB+nvM38kX1MeMGqcDo23iV7XMd8VM6MMalFwxOSFmxocp4xetds/7
PeC9kOiPtppDN2K3wXQpDuHOfPTv12eQ88fLbF2EyRumdqWQyVweS4pJompqiPA/
GqQGm8VL9FqKBtOIWY9lvoRfSq+JlDf2QugJyd+bQ1sxB7agyZwnkGCWrMY8T/kE
kpU/BYrv+B6UvhvDaqdQy/noL05wQ+5y8s9s5XKcJfpd6tCkXgqoGpfLHbXCFVAb
vdhjXVz7supRgK/SMEpuTvSZO/Ax2FjQF4zC5F0ywJpcAP+9eBrg3lCrmFUiokk4
m6l5QdCxzLhk5rh0I0E4AR+7gFVM8+ev3fhE8ocSoBkZuLkINSqa7sh1ie4Cv5o/
whJKcvA52o8HERnnXjAk
=Qh+g
-END PGP SIGNATURE-

___
CentOS mailing list
CentOS@centos.org
https://lists.centos.org/mailman/listinfo/centos