I'm using the github oauth plugin for our logins but for all of our users in the Organisation I get an error:
Access Denied
<user> is missing the Overall/Read permission
I have tried everything I can possibly think of to try to make this work and I'm probably going to fallback to making everyone an admin user, which i would prefer not to do.
Any advise would be appreciated.
This is how I resolved the authentication problem:
Edit config.xml
file, e.g.
sudo vi /var/lib/jenkins/config.xml
Change useSecurity
element's value to false
, e.g.
<useSecurity>false</useSecurity>
Remove authorizationStrategy
block
Restart Jenkins: /etc/init.d/jenkins restart
.