VMware Cloud Foundation(VCF)9.0 の VCF Automation に、VM コンソールまたは SSH でログインしてみます。
ログイン用の Linux ユーザー
VCF Automation 仮想マシンの Linux には、vmware-system-user ユーザーでログインできます。デフォルトのパスワードは、VCF Installer で指定した VCF Automation の管理者ユーザー(admin)と同じものが設定されています。
パスワードを再確認するには、VCF Installer のデプロイ完了画面で、「パスワードの確認」をクリックします。

VCF Automation の欄に、展開時に指定した admin ユーザーのパスワードが表示されます。このパスワードが、vmware-system-user ユーザーにも設定されています。

ちなみに vmware-system-user ユーザーのパスワードは、VCF Operations でのパスワード管理に含まれています。
VCF Operations の「フリート管理」→「パスワード」→「VCF 管理」を開くと、VCF Automation 仮想マシン(この例では 1台構成で、m01-auto-6qjgc)の vmware-system-user の状態が確認できます。

ログインの様子
ssh コマンドでは、下記のようにログインできます。この例では、VCF Automation 仮想マシンのアドレスは m01-auto-01.vcf.go-lab.jp です。ちなみに、OS には Photon 5.0 が採用されています。
PS C:\> ssh vmware-system-user@m01-auto-01.vcf.go-lab.jp The authenticity of host 'm01-auto-01.vcf.go-lab.jp (192.168.70.83)' can't be established. ED25519 key fingerprint is SHA256:1CD3f6sSZJbLAuzu6+RmZv1lpYepAOm2fDUwVYJ8GYE. This key is not known by any other names. Are you sure you want to continue connecting (yes/no/[fingerprint])? yes Warning: Permanently added 'm01-auto-01.vcf.go-lab.jp' (ED25519) to the list of known hosts. Welcome to Photon 5.0 (\m) - Kernel \r (\l) (vmware-system-user@m01-auto-01.vcf.go-lab.jp) Password: Last login: Sat Nov 29 08:45:15 2025 from 192.168.70.55 vmware-system-user@m01-auto-6qjgc [ ~ ]$
sudo で、root ユーザにスイッチできます。
vmware-system-user@m01-auto-6qjgc [ ~ ]$ sudo su - root@m01-auto-6qjgc [ ~ ]#
root ユーザーであれば、kubectl で VCF Automation の Kubernetes クラスタに接続できます。
root@m01-auto-6qjgc [ ~ ]# kubectl get nodes NAME STATUS ROLES AGE VERSION m01-auto-6qjgc Ready control-plane 34d v1.32.0+vmware.1-fips
ちなみに、Kubernetes の default Namespace にはワークロードが展開されていないので、サービス起動のトラブルシュートなどでは、まず「kubectl get pods -A」のようにすべての Namespace の Pod を確認するとよいと思います。
たとえば kube-system Namespace の vsphere-csi-node-pmmn4 Pod であれば、下記のようにコンテナのログを確認できたりします。(ちなみにこれは、VCF Automation 仮想マシンを管理ドメイン外部の vCenter に移動して CSI Driver のコンテナが起動できなくなった時の記念です)
root@m01-auto-6qjgc [ ~ ]# kubectl logs -n kube-system vsphere-csi-node-pmmn4
Defaulted container "node-driver-registrar" out of: node-driver-registrar, vsphere-csi-node, liveness-probe
I1129 09:15:26.832615 1 main.go:137] Version: v2.10.1+vmware.1-0-gd145202d
I1129 09:15:26.832700 1 main.go:138] Running node-driver-registrar in mode=
I1129 09:15:26.832709 1 main.go:159] Attempting to open a gRPC connection with: "/csi/csi.sock"
I1129 09:15:26.832762 1 connection.go:215] Connecting to unix:///csi/csi.sock
I1129 09:15:26.834043 1 main.go:166] Calling CSI driver to discover driver name
I1129 09:15:26.834085 1 connection.go:244] GRPC call: /csi.v1.Identity/GetPluginInfo
I1129 09:15:26.834094 1 connection.go:245] GRPC request: {}
I1129 09:15:26.839473 1 connection.go:251] GRPC response: {"name":"csi.vsphere.vmware.com"}
I1129 09:15:26.839527 1 connection.go:252] GRPC error:
I1129 09:15:26.839540 1 main.go:175] CSI driver name: "csi.vsphere.vmware.com"
I1129 09:15:26.839631 1 node_register.go:55] Starting Registration Server at: /registration/csi.vsphere.vmware.com-reg.sock
I1129 09:15:26.839898 1 node_register.go:64] Registration Server started at: /registration/csi.vsphere.vmware.com-reg.sock
I1129 09:15:26.839995 1 node_register.go:88] Skipping HTTP server because endpoint is set to: ""
I1129 09:15:28.675887 1 main.go:92] Received GetInfo call: &InfoRequest{}
I1129 09:15:28.721194 1 main.go:103] Received NotifyRegistrationStatus call: &RegistrationStatus{PluginRegistered:false,Error:RegisterPlugin error -- plugin registration failed with err: rpc error: code = Internal desc = failed to retrieve topology information for Node: "m01-auto-6qjgc". Error: "failed to retrieve nodeVM \"422dab4b-25bf-bc7b-8de9-22fbf3617ee7\" using the node manager. Error: virtual machine wasn't found",}
E1129 09:15:28.721248 1 main.go:105] Registration process failed with error: RegisterPlugin error -- plugin registration failed with err: rpc error: code = Internal desc = failed to retrieve topology information for Node: "m01-auto-6qjgc". Error: "failed to retrieve nodeVM \"422dab4b-25bf-bc7b-8de9-22fbf3617ee7\" using the node manager. Error: virtual machine wasn't found", restarting registration container.
以上、VCF Automation VM の Linux にログインしてみる話でした。