如何解决如何在安装过程中设置 pgAdmin 4 主密码?
目前我的代码使用:
var postgresql = new Process
{
StartInfo =
{
FileName = postgresqlInstaller,Arguments = "--mode unattended --unattendedmodeui none --superpassword xpto",RedirectStandardOutput = true,UseShellExecute = false,CreateNowindow = true,WindowStyle = ProcessWindowStyle.Hidden
}
};
postgresql.Start();
postgresql.WaitForExit();
postgresql.Close();
但是,在启动 pgAdmin 4 时,需要主密码。是否需要传递额外的参数来插入安装中已有的默认密码,以便在打开 pgAdmin 时不必通知?
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。