|
From: nap4110 <nei...@gs...> - 2007-10-04 17:07:23
|
Perhaps I do not know what I am doing. Looking at the artifactory documnentation, it the repository is supposed to allow anoymonous downloads by default. Here are my artifactory config: If user admin has full access rights to the artifactory, shouldn't they be able to login? I must be looking at this the wrong way <?xml version="1.0" encoding="UTF-8"?> <config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://artifactory.jfrog.org/xsd/1.0.0" xsi:schemaLocation="http://artifactory.jfrog.org/xsd/1.0.0 http://www.jfrog.org/xsd/artifactory-v1_0_0.xsd"> <!-- Backup every 12 hours --> <!--<backupCronExp>0 0 /12 * * ?</backupCronExp>--> <localRepositories> <localRepository> <key>hikari</key> <description>Hikari Releases</description> <handleReleases>true</handleReleases> <handleSnapshots>true</handleSnapshots> </localRepository> </localRepositories> <remoteRepositories> <remoteRepository> <key>repo1.maven.org</key> <handleReleases>true</handleReleases> <handleSnapshots>false</handleSnapshots> <excludesPattern>org/artifactory/**,org/jfrog/**</excludesPattern> <url>http://repo1.maven.org/maven2</url> <proxyRef>proxyext</proxyRef> </remoteRepository> </remoteRepositories> <proxies> <proxy> <key>proxyext</key> <host>proxyext.web.gs.com</host> <port>8080</port> </proxy> </proxies> </config> and here are my local proxy connections config: repo.local.store=/apps/hikari/repository/cache #The port to listen on - not used if loaded as a webapp port=8180 repo.list=local,external # Local Repository repo.local.url=file://///apps/hikari/repository/local repo.local.description=Local Repository repo.local.copy=false repo.local.hardfail=true repo.local.cache.period=0 # External Repository repo.external.url=http://nhiidla01.ny.fw.gs.com:8081/artifactory/repo repo.external.description=External Repository repo.external.hardfail=true repo.external.cache.period=0 repo.external.cache.failures=true repo.external.user=admin repo.external.password=password Yoav Landman wrote: > > You need to make sure that either anonymous downloads are allowed on > Artifactory or that you specify a valid user/password in the HTTP > client using Artifactory. > > On 10/3/07, nap4110 <nei...@gs...> wrote: >> >> Hi, >> I have a repository that is backed by artifctory. I am getting the >> following error in my proxy logs: >> >> >> 2007-10-03 17:15:32,519 [WARN ] commons.httpclient.HttpMethodBase - No >> credentials available for the 'Artifactory Realm' authentication realm at >> nhiidla01.ny.fw.gs.com >> 2007-10-03 17:15:32,519 [INFO ] proxy.config.HttpRepoConfiguration - >> Repo[external]: Unable to find >> http://nhiidla01.ny.fw.gs.com:8081/artifactory/repo/csw/interest/core/kandash-SNAPSHOT/maven-metadata.xml >> because of [401] = Authentication_is_required >> >> -- >> View this message in context: >> http://www.nabble.com/No-credentials-available-for-the-%27Artifactory-Realm%27-tf4564407.html#a13028024 >> Sent from the Artifactory-Users mailing list archive at Nabble.com. >> >> >> ------------------------------------------------------------------------- >> This SF.net email is sponsored by: Splunk Inc. >> Still grepping through log files to find problems? Stop. >> Now Search log events and configuration files using AJAX and a browser. >> Download your FREE copy of Splunk now >> http://get.splunk.com/ >> _______________________________________________ >> Artifactory-users mailing list >> Art...@li... >> https://lists.sourceforge.net/lists/listinfo/artifactory-users >> > > ------------------------------------------------------------------------- > This SF.net email is sponsored by: Splunk Inc. > Still grepping through log files to find problems? Stop. > Now Search log events and configuration files using AJAX and a browser. > Download your FREE copy of Splunk now >> http://get.splunk.com/ > _______________________________________________ > Artifactory-users mailing list > Art...@li... > https://lists.sourceforge.net/lists/listinfo/artifactory-users > > -- View this message in context: http://www.nabble.com/No-credentials-available-for-the-%27Artifactory-Realm%27-tf4564407.html#a13044442 Sent from the Artifactory-Users mailing list archive at Nabble.com. |