401 Authorization Required in sso, mod_auth_mellon Announcing the arrival of Valued Associate...

How to call a function with default parameter through a pointer to function that is the return of another function?

List *all* the tuples!

Okay to merge included columns on otherwise identical indexes?

How to react to hostile behavior from a senior developer?

English words in a non-english sci-fi novel

Why light coming from distant stars is not discrete?

Why am I getting the error "non-boolean type specified in a context where a condition is expected" for this request?

What's the meaning of 間時肆拾貳 at a car parking sign

What causes the vertical darker bands in my photo?

3 doors, three guards, one stone

How can I make names more distinctive without making them longer?

What would be the ideal power source for a cybernetic eye?

Why is "Consequences inflicted." not a sentence?

How to find out what spells would be useless to a blind NPC spellcaster?

How do pianists reach extremely loud dynamics?

Compare a given version number in the form major.minor.build.patch and see if one is less than the other

What does an IRS interview request entail when called in to verify expenses for a sole proprietor small business?

Using audio cues to encourage good posture

ListPlot join points by nearest neighbor rather than order

Generate an RGB colour grid

Storing hydrofluoric acid before the invention of plastics

What is the meaning of the new sigil in Game of Thrones Season 8 intro?

Fundamental Solution of the Pell Equation

What is known about the Ubaid lizard-people figurines?



401 Authorization Required in sso, mod_auth_mellon



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)How to set up virtual users in vsftpd?How to move from MAMP to native Apache on Mac OS 10.7Git and (gitweb) and SVN both over HTTPS at same timeSamba 3.6.6 always creates as guestHow to create owncloud on https on same ip address on httpNextcloud live doc editing w/ Collabora Online (CODE) cURL error 60: Peer's certificate issuer has been marked as not trusted by the userApache and Kerberos SSO with multiple vhosts and multiple SPNsApache can access Windows share but not folders in itApache Display An Index of / In Place of Default Page?Permission denied on NFSv4 shared directory with authentification with SSO (openLdap + Kerberos)





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















I'm very new on this technology and I'm searching for answer as I installed mod_auth_mellon package on one of our server and I use to put all the configuration
there in /etc/httpd/saml2/ the metadata, crt, keys and also the IdpMetadata. I used mellon on this one.



-rw-r--r-- 1 root root 1021 Apr 16 11:19 mellon.crt
-rw------- 1 root root 1704 Apr 16 11:19 mellon.key
-rw-r--r-- 1 root root 1796 Apr 16 11:19 wpp-dokuwiki_mellon_metadata.xml
-rw-r--r-- 1 root root 6495 Apr 16 11:27 wpp_idp.vestasext.net_metadata.xml


and here is my mellon.conf



<Location />
MellonEnable info
MellonEndpointPath /mellon/
MellonSPMetadataFile /etc/httpd/saml2/wpp-dokuwiki_mellon_metadata.xml
MellonSPPrivateKeyFile /etc/httpd/saml2/mellon.key
MellonSPCertFile /etc/httpd/saml2/mellon.crt
MellonIdPMetadataFile /etc/httpd/saml2/wpp_idp.vestasext.net_metadata.xml
</Location>


<Location /dokuwiki>
AuthType Mellon
MellonEnable auth
Require valid-user
</Location>


here is my dokuwiki.conf



<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>
</VirtualHost>
Alias /dokuwiki "/var/www/dokuwiki"
<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>


I get this error Authorization Required when adding Require valid-user and when I remove it, the SSO will not push through. I hope you can help me.Thanks



Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.









share|improve this question









New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

    – grawity
    17 hours ago


















0















I'm very new on this technology and I'm searching for answer as I installed mod_auth_mellon package on one of our server and I use to put all the configuration
there in /etc/httpd/saml2/ the metadata, crt, keys and also the IdpMetadata. I used mellon on this one.



-rw-r--r-- 1 root root 1021 Apr 16 11:19 mellon.crt
-rw------- 1 root root 1704 Apr 16 11:19 mellon.key
-rw-r--r-- 1 root root 1796 Apr 16 11:19 wpp-dokuwiki_mellon_metadata.xml
-rw-r--r-- 1 root root 6495 Apr 16 11:27 wpp_idp.vestasext.net_metadata.xml


and here is my mellon.conf



<Location />
MellonEnable info
MellonEndpointPath /mellon/
MellonSPMetadataFile /etc/httpd/saml2/wpp-dokuwiki_mellon_metadata.xml
MellonSPPrivateKeyFile /etc/httpd/saml2/mellon.key
MellonSPCertFile /etc/httpd/saml2/mellon.crt
MellonIdPMetadataFile /etc/httpd/saml2/wpp_idp.vestasext.net_metadata.xml
</Location>


<Location /dokuwiki>
AuthType Mellon
MellonEnable auth
Require valid-user
</Location>


here is my dokuwiki.conf



<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>
</VirtualHost>
Alias /dokuwiki "/var/www/dokuwiki"
<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>


I get this error Authorization Required when adding Require valid-user and when I remove it, the SSO will not push through. I hope you can help me.Thanks



Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.









share|improve this question









New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





















  • Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

    – grawity
    17 hours ago














0












0








0








I'm very new on this technology and I'm searching for answer as I installed mod_auth_mellon package on one of our server and I use to put all the configuration
there in /etc/httpd/saml2/ the metadata, crt, keys and also the IdpMetadata. I used mellon on this one.



-rw-r--r-- 1 root root 1021 Apr 16 11:19 mellon.crt
-rw------- 1 root root 1704 Apr 16 11:19 mellon.key
-rw-r--r-- 1 root root 1796 Apr 16 11:19 wpp-dokuwiki_mellon_metadata.xml
-rw-r--r-- 1 root root 6495 Apr 16 11:27 wpp_idp.vestasext.net_metadata.xml


and here is my mellon.conf



<Location />
MellonEnable info
MellonEndpointPath /mellon/
MellonSPMetadataFile /etc/httpd/saml2/wpp-dokuwiki_mellon_metadata.xml
MellonSPPrivateKeyFile /etc/httpd/saml2/mellon.key
MellonSPCertFile /etc/httpd/saml2/mellon.crt
MellonIdPMetadataFile /etc/httpd/saml2/wpp_idp.vestasext.net_metadata.xml
</Location>


<Location /dokuwiki>
AuthType Mellon
MellonEnable auth
Require valid-user
</Location>


here is my dokuwiki.conf



<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>
</VirtualHost>
Alias /dokuwiki "/var/www/dokuwiki"
<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>


I get this error Authorization Required when adding Require valid-user and when I remove it, the SSO will not push through. I hope you can help me.Thanks



Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.









share|improve this question









New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.












I'm very new on this technology and I'm searching for answer as I installed mod_auth_mellon package on one of our server and I use to put all the configuration
there in /etc/httpd/saml2/ the metadata, crt, keys and also the IdpMetadata. I used mellon on this one.



-rw-r--r-- 1 root root 1021 Apr 16 11:19 mellon.crt
-rw------- 1 root root 1704 Apr 16 11:19 mellon.key
-rw-r--r-- 1 root root 1796 Apr 16 11:19 wpp-dokuwiki_mellon_metadata.xml
-rw-r--r-- 1 root root 6495 Apr 16 11:27 wpp_idp.vestasext.net_metadata.xml


and here is my mellon.conf



<Location />
MellonEnable info
MellonEndpointPath /mellon/
MellonSPMetadataFile /etc/httpd/saml2/wpp-dokuwiki_mellon_metadata.xml
MellonSPPrivateKeyFile /etc/httpd/saml2/mellon.key
MellonSPCertFile /etc/httpd/saml2/mellon.crt
MellonIdPMetadataFile /etc/httpd/saml2/wpp_idp.vestasext.net_metadata.xml
</Location>


<Location /dokuwiki>
AuthType Mellon
MellonEnable auth
Require valid-user
</Location>


here is my dokuwiki.conf



<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>
</VirtualHost>
Alias /dokuwiki "/var/www/dokuwiki"
<Directory "/var/www/dokuwiki">
Options +FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
AuthType "Mellon"
MellonEnable "auth"
Require valid-user
</Directory>


I get this error Authorization Required when adding Require valid-user and when I remove it, the SSO will not push through. I hope you can help me.Thanks



Authorization Required
This server could not verify that you are authorized to access the document requested. Either you supplied the wrong credentials (e.g., bad password), or your browser doesn't understand how to supply the credentials required.






linux permissions apache-http-server single-sign-on






share|improve this question









New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.











share|improve this question









New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









share|improve this question




share|improve this question








edited 17 hours ago









mtak

11.2k23353




11.2k23353






New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.









asked 18 hours ago









rhiz16rhiz16

11




11




New contributor




rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.





New contributor





rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.






rhiz16 is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
Check out our Code of Conduct.













  • Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

    – grawity
    17 hours ago



















  • Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

    – grawity
    17 hours ago

















Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

– grawity
17 hours ago





Does the webserver at least redirect you to the IdP, or does it immediately fail without even trying to log in?

– grawity
17 hours ago










0






active

oldest

votes












Your Answer








StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "3"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});

function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});


}
});






rhiz16 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426054%2f401-authorization-required-in-sso-mod-auth-mellon%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes








rhiz16 is a new contributor. Be nice, and check out our Code of Conduct.










draft saved

draft discarded


















rhiz16 is a new contributor. Be nice, and check out our Code of Conduct.













rhiz16 is a new contributor. Be nice, and check out our Code of Conduct.












rhiz16 is a new contributor. Be nice, and check out our Code of Conduct.
















Thanks for contributing an answer to Super User!


  • Please be sure to answer the question. Provide details and share your research!

But avoid



  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.


To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fsuperuser.com%2fquestions%2f1426054%2f401-authorization-required-in-sso-mod-auth-mellon%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

VNC viewer RFB protocol error: bad desktop size 0x0I Cannot Type the Key 'd' (lowercase) in VNC Viewer...

Tribunal Administrativo e Fiscal de Mirandela Referências Menu de...

looking for continuous Screen Capture for retroactivly reproducing errors, timeback machineRolling desktop...