解决
cp /root/.kube/config .
KUBECONFIG=./config
kubectl --kubeconfig $KUBECONFIG -n cattle-system exec $(kubectl --kubeconfig $KUBECONFIG -n cattle-system get pods -l app=rancher --no-headers | head -1 | awk '{ print $1 }') -c rancher -- reset-password
如果不是pod,是容器的
docker ps |grep rancher
docker exec -it xxx reset-password
使用admin登录rancher,再进行修改。