Adding table to an existing group

I am trying to remote installation wizard allows you to add a PS6210x to an existing PS6000 with a PS6210xs group. I have successfully added tables the same group with RSW in the past, but I get an error this time on a bad group password. I logged in with this password manager, so I know that it is correct.

The new table has firmware 8.1 and tables in the existing group always run 7.1.x. Is it possible that in fact is the problem and I just need to update the old firmware to table first?

Thank you.

1. you use the user 'grpadmin' to connect to the GroupMgr, but this password may be another. Especially over a long period a customer may change the password for grpadmin but forget to change the GroupPW.

Within GrpMgmr klick on group-> Member-> Set Password to set a new GroupPW. You don't need to know the old man!

2. Yes, at the end of the day all members must be at the same level of FW, but this should not be your problem right now.

We upgade existing members first of all for the course prior to FW, adding new members. We are also new members in a 'maintenance' pool to be sure that no data migration starts automatically.

Kind regards
Joerg

Tags: Dell Products

Similar Questions

  • Adding members to an existing group

    I would like to know if I add a member to an existing table if I lose all the data on this new Member?

    Found this doc online and I can see that we need to define a new RAID policy so, bad news? I will lose data on my second Member?

    Thanks for your help!

    - psonlinehelp.equallogic.com/.../adding_members_to_an_existing_group.htm

    Hello

    Well the new Member has no data yet, but it will not affect the existing Member.

    When you add a new Member, it gets attached to the default pool.   However, without a RAIDset it does provide no data to the Group again.

    First decide if you want to add this member to the existing or to put it in its own pool.

    Assuming that the existing version is in the default pool and you want to add it to the default pool.

    You must activate all Ethernet iSCSI ports, and then select the RAID type for this member.  There is a box to make the space available immediately.  I prefer not to check that...  This allows the RAIDset fully complete the building before making the space available.   If no data will migrate the existing member until then.

    If you want it in its own pool.  Create the pool, select the new Member and under Member settings, you can select the pool and it will move it there.  Then repeat the above.  Configure the network interfaces, and then select the RAID policy.

    When you add a new Member, you will need the password to 'membership '.   Which may or may be not the same as the GRPADMIN password. When the Group has been set up, he asked first for the password.

    Kind regards

    Don

  • Add the new PS4100 to an existing group

    Hello

    anyone would be able to explain the process of adding a new table to an existing group, please?

    We have a new PS4100 which was delivered with the 7.0.15 Firmware but the Group has a range of PS4000 on Firmware 8.0.5.

    How can I upgrade the firmware on the new PS4100 before running the Setup utility?

    Thank you very much

    Tom

    Let the new Member to join an EMPTY pool as the "default" (its still a void in our environments) or create an and name the program installation or maintenance.

    If the table has joined this pool complete the configuration as Ports IP/network, RAID level and so on. I prefer a complete reconstruction and not a fast initialization, but it's your choice. Updated the FW and also check the FW drive.

    Try to ping the new IP addresses of existing hosts and if everything is OK, move member in your production area.

    Kind regards

    Joerg

  • Merger of two existing groups

    Hello

    We would like to migrate a R50 PS6100 1 GB for an R6 PS6210 10 GB volumes both have currently existing volumes. Is it possible for two existing groups to join, migrate PS6100 to PS6210 volumes and continue to use the volume PS6100 group.

    Robert

    Hello

    I'm sorry but there is no option 'group fusion.  Mixing 10GbE and members GbE in the same group is very hard to do safely.  According to the amount of free space you have on the table of 10GbE you can replicate from one to the other. (Assuming that the levels compatible firmware), can promote the replica and connect.

    Otherwise, you would have to migrate data at the level of the host.

    Kind regards

    Don

  • CS-MARS: connecting custom to existing groups-events events

    Hello

    I created a custom event in the framework to work with custom parsers (which works very well in most of the cases).

    I want to add this event customized to an existing group of events. This would be important because every time the custom event produced the existing rules (were the event group is used) would be returned and would create an incident.

    If the custom event will not be added to the existing event groups, I'll never get an incident because no rule will match (no existing

    rule uses my new event).

    is it possible to add my event customized to an existing group?

    Thanks so much I have an idea to solve my request.

    Kind regards

    Bernhard

    Sorry, you cannot change the event groups. This is why it is so important when creating analyzers to use existing events when possible. If there is an existing event that even approaches which means the same thing, you might be better to use it. Otherwise, you must create a custom control rule to process the custom event.

  • How to modify a Virtual Machine DRS existing group?

    Hello

    I use DRS-rules to place virtual machines to a host selected in a Cluster group.

    The poblem is that I did not find methods to change (add new virtual machines) to an existing group of DRS 'Virtual Machine '.

    As far as I know, the configuration is stored in $ClusterView.ConfigurationEx.Group

    Any ideas?

    Thank you!

    Hi Willibald,

    I did some research in the VMware vSphere SDK and made two functions Get-DrsGroup and VmToDrsGroup Add to add one or more virtual machines to a ClusterVmGroup. Some examples of how to use these function exists in the code. If you have added these features to your PowerCLI session, you can use Get-Help to get information about these functions. And also for the examples. For example Get-Help add-VmToDrsGroup-full.

    Function Get-DrsGroup {
    <#
    .SYNOPSIS
    Retrieves DRS groups from a cluster.
    
    .DESCRIPTION
    Retrieves DRS groups from a cluster.
    
    .PARAMETER Cluster
    Specify the cluster for which you want to retrieve the DRS groups
    
    .PARAMETER Name
    Specify the name of the DRS group you want to retrieve.
    
    .EXAMPLE
    Get-DrsGroup -Cluster $Cluster -Name "VMs DRS Group"
    Retrieves the DRS group "Vms DRS Group" from cluster $Cluster.
    
    .EXAMPLE
    Get-Cluster | Get-DrsGroup
    Retrieves all the DRS groups for all clusters.
    
    .INPUTS
    ClusterImpl
    
    .OUTPUTS
    ClusterVmGroup
    ClusterHostGroup
    
    .COMPONENT
    VMware vSphere PowerCLI
    #>
    
      param([parameter(Mandatory=$true, ValueFromPipeline=$true)]$Cluster,
            [string] $Name="*")
    
      process {
        $Cluster = Get-Cluster -Name $Cluster
        if($Cluster) {
          $Cluster.ExtensionData.ConfigurationEx.Group | `
          Where-Object {$_.Name -like $Name}
        }
      }
    }
    
    Function Add-VMToDrsGroup {
    <#
    .SYNOPSIS
    Adds a virtual machine to a cluster VM DRS group.
    
    .DESCRIPTION
    Adds a virtual machine to a cluster VM DRS group.
    
    .PARAMETER Cluster
    Specify the cluster for which you want to retrieve the DRS groups
    
    .PARAMETER DrsGroup
    Specify the DRS group you want to retrieve.
    
    .PARAMETER VM
    Specify the virtual machine you want to add to the DRS Group.
    
    .EXAMPLE
    Add-VMToDrsGroup -Cluster $Cluster -DrsGroup "VM DRS Group" -VM $VM
    Adds virtual machine $VM to the DRS group "VM DRS Group" of cluster $Cluster.
    
    .EXAMPLE
    Get-Cluster MyCluster | Get-VM "A*" | Add-VMToDrsGroup -Cluster MyCluster -DrsGroup $DrsGroup
    Adds all virtual machines with a name starting with "A" in cluster MyCluster to the DRS group $DrsGroup of cluster MyCluster.
    
    .INPUTS
    VirtualMachineImpl
    
    .OUTPUTS
    Task
    
    .COMPONENT
    VMware vSphere PowerCLI
    #>
    
      param([parameter(Mandatory=$true)] $Cluster,
            [parameter(Mandatory=$true)] $DrsGroup,
            [parameter(Mandatory=$true, ValueFromPipeline=$true)] $VM)
    
      begin {
        $Cluster = Get-Cluster -Name $Cluster
      }
    
      process {
        if ($Cluster) {
          if ($DrsGroup.GetType().Name -eq "string") {
            $DrsGroupName = $DrsGroup
            $DrsGroup = Get-DrsGroup -Cluster $Cluster -Name $DrsGroup
          }
          if (-not $DrsGroup) {
            Write-Error "The DrsGroup $DrsGroupName was not found on cluster $($Cluster.name)."
          }
          else {
            if ($DrsGroup.GetType().Name -ne "ClusterVmGroup") {
              Write-Error "The DrsGroup $DrsGroupName on cluster $($Cluster.Name) doesn't have the required type ClusterVmGroup."
            }
            else {
              $VM = $Cluster | Get-VM -Name $VM
              If ($VM) {
                $spec = New-Object VMware.Vim.ClusterConfigSpecEx
                $spec.groupSpec = New-Object VMware.Vim.ClusterGroupSpec[] (1)
                $spec.groupSpec[0] = New-Object VMware.Vim.ClusterGroupSpec
                $spec.groupSpec[0].operation = "edit"
                $spec.groupSpec[0].info = $DrsGroup
                $spec.groupSpec[0].info.vm += $VM.ExtensionData.MoRef
    
                $Cluster.ExtensionData.ReconfigureComputeResource_Task($spec, $true)
              }
            }
          }
        }
      }
    }
    

    Best regards, Robert

    I changed the error handling logic in the Add-VMToDrsGroup function.

    Post edited by: RvdNieuwendijk

  • How to add contacts to your existing groups or how to manage your groups?

    Anyone know how to add contacts to your existing groups or how you manage your existing groups. How do you even add new groups I can't find a way to do this in the ocntacts.

    Hello

    1. what version of Windows is installed on the computer?

    2 are. what groups you referring?

    3. What mail client do you use?

    If you use Hotmail, you can post your request in the Windows Live Forum.

     

    http://answers.Microsoft.com/en-us/windowslive/Forum/Hotmail

    You can check the link:

    http://Windows.Microsoft.com/en-us/Windows-Live/Mail-import-backup-restore

     

    Please get back to us with the above information so that we can help you accordingly.

  • Creation of an existing group PS4000 and PS6010 - just checked.

    Hello

    We have two existing EQL units that have never actually placed in a group. Successfully completed their thing during the last five years or so, but now it's time for an upgrade. I have a couple PS6510Es ready to get into the data center. The first will be for production, the second will be for replication and snapshots only (subsequently headed off site).

    I have a simple plan for all migrated to the EQLs old data to the new: I'll join the existing EQLs (PS4000 and PS6010 V7.0.9 running) in a group, and then join the new EQLs once they have been built. Since it seems too easy, I am concerned about the process of construction group. I just can't locate a case or writing where someone fired two production EQLs in a brand-new group (where they are the only members).

    I probably missing something, so if there are traps or witch hunt that miss me.

    Thanks in advance,

    Mark

    Hi Mark,

    If the two existing unts are in individual groups, impossible to merge them and keep the data.  It is also a mixture of GbE and 10GbE?   This makes it a little trickier.   You can add a new unit of unconfigurated to an existing group, assuming that the firmware of the systems are compatible.

    So for at least one of the former members, you will need to either replicate data on the 6510 or based on host to best use, for example Storage vMotion for ESXi, or robocopy, for Windows, for Linux rsync richcopy, etc...

    Kind regards

  • Error when adding new subnet for CSM group

    Hello

    I'm trying to add a new subnet to an existing group in the CSM v4.0.1 b7823 company.  When you add a new subnet to the Group (the other elements of the group is a different subnet), CSM emits several errors for each SAA touched:

    Description:

    BB (GROUPNAME), referenced by the 'Http network' on maps (DEVICENAME) device to multiple network IP addresses!

    Cause:

    Made http refers to a network object that corresponds to more than one IP address on the device

    Action:

    Please config the policy with the network object that resolves to a single IP address.

    There is an error for ICMP as well.  The group is already a /24subnet content, I don't think it's a clear mistake.  Has anyone encounter this?

    Thank you very much.

    Justin

    Hi Justin,

    what you observe is normal given the way in which we have set up the remote access policy. As you probably know, in cli, you can specify only one rule of access by line for ssh, http, telnet etc...

    For example, if you want to allow ssh access to ASA lines host 1.1.1.1 and 2.2.2.2 you put two

    SSH 2.2.2.2 255.255.255.255 outside

    SSH 1.1.1.1 255.255.255.255 outside

    The CSM, we model this two lines as two different object, so the building of network type block object that refers to the object of type ssh access can have only one entry. This behavior is the same for ICMP as well.

    Access list is different because we model to the CSM in a different way, plus you can use the object-group put on different networks. It is not possible to access to the device.

    I hope that gave you an overview a little more on the reason

    Also it would be nice to score this answer if this is the case

    Stefano

  • Users added to the local Administrators group accounts

    Hello

    In our area (win server 2008 / r2) the logged on user object on some clients (windows 7) is added to the local administrator group.
    I can't find the reason for this.
    We have configured restricted groups in the strategy group and after gpupdate/force, the user is removed from the group yet (but administrator rights keep until the next logon).
    Affected, it's always only the user who is logged on the client.
    Of course, I checked the logon scripts, nothing that could trigger such behavior.
    Does anyone have an idea how this could happen?
    Thanks in advance,
    Ingo

    Hello

    Your question of Windows 7 is more complex than what is generally answered in the Microsoft Answers forums. It is better suited for the IT Pro TechNet public. Please post your question in the TechNet Forum. You can follow the link to your question:

    http://social.technet.Microsoft.com/forums/en-us/w7itpronetworking/threads

    Hope the above information is helpful.

  • How can I import tables to a different schema in the relational model existing... to add these tables in the existing model? PLSS help

    How can I import tables from a different schema in the relational model... to add these tables in the existing relational/logic model? PLSS help

    Notes; I already have a schema ready relational/logic model... and I need to add more tables to this relational/logic model

    can I import the same way like I did before?

    But even if I do the same how can I add it in the template? as the logic model has been designed...

    Help, please...

    Thank you

    To view the diagram of logic model in Bachman notation, you right-click on a blank area of the diagram and select the rating > Bachman Notation.

    David

  • Anyone know if the Adobe Pro 11 program allows you to remove and rebonding of new tables in the existing PDF documents?

    Anyone know if the Adobe Pro 11 program allows allows you to remove and re - paste new tables in the existing PDF documents?

    Hi span Structures.

    Acrobat Pro XI allows to edit/insert text and images, but it is not intended to do some heavy lifting in this Department. And, there is really no way to modify the tables in Acrobat, because they are generally made of individual vector lines that you cannot fill.

    If you have many changes to make, or want to add/remove a table, you better make these modifications in the source application and by recreating the PDF file.

    Best,

    Sara

  • Service Division of Hyperion - assign the existing group to the new group

    Hi all

    In my planning application, I tried to create the new group "G3" through the sharing service and assigned existing groups ("G1", "G2") to the new group "G3". So that all existing group access will be transferred to the new group.

    But when I logged with the user of the G3, I found has insufficient access forms data giving the message.
    "You try to open the data form, but can not because all the required dimensions are not present." Possible causes may be that you do have at least one member of a required dimension, or the selection of members resulted in no Member present. Contact your administrator. "

    I can able to connect and see the dataform with user group G1 and G2.

    What that should I need to change in the settings to avoid this problem?

    Thanks in advance

    When you add a G1, G2 to G3 provisioning of g1 and g2 doesn't apply to the g3. Instead, it's the other way around. G1 and G2 will have some G3 has commissioned.

  • creation of several tables based on existing tables

    Hello

    I need to create 60 tables based on existing tables from 60. Rather than create a how can I create 60 all at once.


    The 60 current tables are named FY11_ACC1, FY11_ACC2, FY11_SALES1, FY11_SALES2..., but all of the 60 tables start with FY11. I need to create the same structured tables but with names like FY12_ACC1, FY12_ACC2, FY12_SALES1, FY12_SALES2 FY12...

    I am currently using "create table FY12_ACC1 select * from FY11_ACC1 where 1 = 0". Is there a way I can write each of them in a single query?

    Thanks for your time and your help.

    You can use this query in a loop to create all the tables. Make sure that you add a condition to filter only the tables you need.

    select 'create table ' || replace(table_name, 11, 12) ||
           ' as select * from ' || table_name || ' where 1=0'
      from user_tables;
    
  • data tables store information of groups and users?

    Hi all

    I want to export all the information of users and groups on the Administration of BI tool. only I can copy them one by one. are there other methods?
    who knows what data tables store information of groups and users?

    Thank you
    Dan.

    Hi dan,.

    As you can not access the link which is very informative. Never I've implemented it but john's suggestion, it should work

    Courtesy John: -.

    OBIEE get all RPD users
    I had to get all the users a repository very large because they where to implement a new security model. Wrote a small script to make life easier:

    ' Read_Users.VBS
    "John Minkjan
    "http:// http://www.obiee101.blogspot.com/
    ' Get all the users from a repository
    1: do an export the PRD UDML using nqgenudml.exe
    2: change the location/name of file in this script
    3: run the script in the cscript Read_Users.VBS command line > users.txt
    Set objFSO = CreateObject ("Scripting.FileSystemObject")

    "this point your EXPORTSet UDML
    objFile = objFSO.OpenTextFile ("E:\names.txt", ForReading)

    Const ForReading = 1
    Dim arrFileLines()
    Dim strRLinedim strTemp1dim strTemp2

    I have = 0

    Up to objFile.AtEndOfStream
    strRline = objFile.ReadLine
    If left(strRline,12) = "USER to DECLARE" then
    ReDim Preserve arrFileLines (i)
    arrFileLines (i) = strRline
    i = i + 1
    end if
    Loop

    objFile.Close
    "Then you can iterate over it like that"
    For each strLine in arrFileLines
    strTemp1 = MID (strLine, 15: 50)
    IF instr (strline,"}" ") > 0 THEN
    strTemp2 = MID (strLine, instr(strline,"{") + 1, (instr(strline,"}") - (instr(strline,"{") + 1))) ELSE strTemp2 = «»
    END IF
    WScript.Echo MID (strTemp1, 1, instr(strTemp1, """)-1) &"; '& strtemp2 '.
    Next

    OBIEE get all users and roles of RPD
    In this http://obiee101.blogspot.com/2009/06/obiee-get-all-users-from-rpd.html post I showed you how to get users to the RPD. That take as a point of departure it is a small step to get users and roles they have and put the export in a XLS:

    ' Read_Usergroups.VBS 'John Minkjan' http: / / http://www.obiee101.blogspot.com/
    ' Get all the users from a repository
    1: do an export the PRD UDML using nqgenudml.exe
    2: change the location/name of file in this script
    3: run the script in the cscript Read_Usergroups.VBS command line > users.txt
    4: put the export in a pivot table XLS

    Set objFSO = CreateObject ("Scripting.FileSystemObject")
    "this point your EXPORT UDML
    Set objFile = objFSO.OpenTextFile ("E:\usergroup.txt", ForReading)
    Const ForReading = 1
    Dim arrFileLines()
    Dim strRLine
    Dim strTemp1
    Dim strTemp2
    Dim strTemp3
    Dim intRoles
    intRoles = 0
    I have = 0
    WScript.Echo "username; FULL_NAME; ROLE; COUNT. "
    Up to objFile.AtEndOfStream
    strRline = objFile.ReadLine
    If left(strRline,12) = arrFileLines (i) 'DECLARE the USER', then Redim Preserve
    strTemp1 = MID (strRLine, 15, 50)
    strTemp1 = MID (strTemp1, 1, instr(strTemp1, """)-1)
    IF instr (strRline,"}" ") > 0 THEN
    strTemp2 = MID (strRLine, instr(strRline,"{") + 1, (instr(strRline,"}") - (instr(strRline,"{") + 1)))
    ON THE OTHER
    strTemp2 = «»
    END IF
    arrFileLines (i) = strTemp1 &"; "& strtemp2
    intRoles = 1
    i = i + 1
    end if
    If intRoles > = 1 then
    If instr (strRline, "has ROLES (" ") > 0 then
    intRoles = 2
    end if
    If intRoles = 2 and instr (strRline, "a of the ROLES (" ") = 0 then
    strTemp3 = MID (strRline, instr (strRline, "" "") + 1.50)
    strTemp3 = MID (strTemp3, 1, instr(strTemp3, """)-1)
    WScript.Echo arrFileLines(i-1) &"; "& strTemp3 &"; 1 "
    end if
    If intRoles = 2 and instr (strRline)",") > 0 then intRoles = 0
    end if
    end ifLoop
    objFile.Close

    UPDATE POST
    Is your on the right track, work these steps you will find glory... I force try it or needed me.

    hope helped you

    Kind regards
    Murielle.

    Published by: Kranthi.K on June 1st, 2011 02:28

Maybe you are looking for

  • Fire Fox does not start in normal mode and safe

    I had tried to start Fire Fox on safe mode, but do not start.I tried to re - install Fire Fox, but do not start. Crash ID: bp-d9bea701-7338-4634-9141-b97182131005

  • USB drive f is no wer ein my computer

    I have a laptop whenever I plug in the usb mass storage it says it connected but does not open when I hook it up to another computer it works fine all other sorts of usb mouse camera work but not storage drive: F is not actually in my computer and th

  • How can I prevent Windows downloding updates in my computer?

    I WANT TO STOP WINDOWS XP FROM DOWNLOADING UPDATES, UP TO 50, WHICH I DID NOT NEED.  SOMEONE TELL ME PLEASE HOW CAN I ACCOMPLISH THIS? Thank you Jaim9

  • Created the new user account, and now the settings are gone.

    Accidentally, I created a new user in my previous account admin account, and now all of my settings are gone, as well as all the files on the first account. Is there a way I can return to my old account, or restore the files and settings? Either way,

  • Cannot remove the run as administrator by a program icon option

    Hi, I'm under Windows 7 Home Premium on a PC clean.  I had a problem with a program so I put for run as administrator (the icon properties, box to checked for run as administrator).  The icon of the program now has the emblem shield on it. I have pro