Cluster client access point questions.

chrisrdba 431 Reputation points
2023-09-05T21:41:57.7266667+00:00

Greetings. Im walking through configuring a windows cluster/ sql server availability group as it's been years and need to brush up. I've got a student account which enables me some free use of VM's. I've got a couple 2019 boxes and walked through the cluster configuration wizard. However, on the Access Point for Administering the Cluster tab it's only asking for for a cluster name, not to assign it an IP address the way I see in articles.

The wizard completes w success, but I can't figure out what the cluster IP is, and this will cause me issues in later steps.

It should be noted that since this is a student account and I only have these two boxes, I dont have AD running, no dhcp server, etc.

Any ideas? Thanks!

Windows Server 2019
Windows Server 2019
A Microsoft server operating system that supports enterprise-level management updated to data storage.
3,744 questions
Windows Server
Windows Server
A family of Microsoft server operating systems that support enterprise-level management, data storage, applications, and communications.
13,051 questions
0 comments No comments
{count} votes

2 answers

Sort by: Most helpful
  1. Limitless Technology 44,316 Reputation points
    2023-09-06T12:32:27.1533333+00:00
    Hello there,
    
    I think this is the best way to retrieve the cluster IP address without using explicit names:
    
    Get-ClusterGroup | Where-Object { $_.GroupType -eq "Cluster" } |
        Get-ClusterResource | Where-Object { $_.ResourceType -eq "IP Address" } |
        Get-ClusterParameter -Name "Address" | 
        Select-Object -ExpandProperty "Value"
    
    
    Hope this resolves your Query !!
    
    --If the reply is helpful, please Upvote and Accept it as an answer–
    

  2. chrisrdba 431 Reputation points
    2023-09-14T16:36:20.21+00:00

    Does anyone have any ideas on this?

    0 comments No comments

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.