如果我的公司使用 Okta 向 Artifactory 进行身份验证,我应该在 settings.xml 中输入什么加密密码?
If my company is using Okta to authenticate to Artifactory, what do I put for an encrypted password in settings.xml?
与使用常规用户名和登录 JFrog Artifactory 不同,我的公司使用 Okta,然后让我们使用一个用户名和密码登录其他所有内容(JIRA、AWS、Gmail 等)。
当我登录到 Artifactory 时,我从 these instructions 创建了一个 Maven settings.xml。这产生了类似的东西:
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<servers>
<server>
<username>rshillington@mycompany.com</username>
<password>*** Insert encrypted password here ***</password>
<id>central</id>
</server>
<server>
<username>rshillington@mycompany.com</username>
<password>*** Insert encrypted password here ***</password>
<id>snapshots</id>
</server>
</servers>
...
我应该用什么替换 *** Insert encrypted password here ***
?
登录Artifactory后,点击右上角你的名字。然后您将有机会创建一个 API 密钥。创建其中一个并将其复制到 settings.xml
的密码元素中,随处可见 *** Insert encrypted password here ***
.
与使用常规用户名和登录 JFrog Artifactory 不同,我的公司使用 Okta,然后让我们使用一个用户名和密码登录其他所有内容(JIRA、AWS、Gmail 等)。
当我登录到 Artifactory 时,我从 these instructions 创建了一个 Maven settings.xml。这产生了类似的东西:
<?xml version="1.0" encoding="UTF-8"?>
<settings xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.1.0 http://maven.apache.org/xsd/settings-1.1.0.xsd" xmlns="http://maven.apache.org/SETTINGS/1.1.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<servers>
<server>
<username>rshillington@mycompany.com</username>
<password>*** Insert encrypted password here ***</password>
<id>central</id>
</server>
<server>
<username>rshillington@mycompany.com</username>
<password>*** Insert encrypted password here ***</password>
<id>snapshots</id>
</server>
</servers>
...
我应该用什么替换 *** Insert encrypted password here ***
?
登录Artifactory后,点击右上角你的名字。然后您将有机会创建一个 API 密钥。创建其中一个并将其复制到 settings.xml
的密码元素中,随处可见 *** Insert encrypted password here ***
.