Reputation: 14899
I know this has been asked many before. But I have already placed my user to role "manager-script".
I keep getting this when trying to deploy:
Deployment error: Access to Tomcat server has not been authorized. Set the correct username and password with the "manager-script" role in the Tomcat customizer in the Server Manager. See the server log for details.
My D:\DEV\apache-tomcat-7.0.47\conf\tomcat-users.xml
:
<?xml version="1.0" encoding="UTF-8"?>
<tomcat-users>
<role rolename="manager-script"/>
<user username="user" password="user" roles="manager-script"/>
</tomcat-users>
The server starts just fine without errors from netbeans but when I go to deploy, it keep asking me for the credentials that has "manager-script".
What I have tried:
Upvotes: 14
Views: 88806
Reputation: 1
I had the same problem and tried all the answers above. None worked for me. The solution I found was that 'use system proxy setting' was selected, I changed this to 'No proxy' (tool->options->general settings). Also changed the default port number from 8080 to 8089.
Upvotes: 0
Reputation: 1
After that just restart the pc or the user session and it will work.
Upvotes: -2
Reputation: 101
If you are doing config with netbeans or any other Java IDE you may face the problem,
For Tomcat9 Goto -> C:\Program Files\Apache Software Foundation\Tomcat 9.0\conf
Edit the "tomcat-users.xml" File
Replace: "<user username="admin" password="admin" roles="manager-gui"/>
"
With: "<user username="admin" password="admin" roles="manager-script"/>
"
Upvotes: 0
Reputation: 1
First, you have to go the services and right click on the server properties after that new screen will appear where you have to insert your user name and password
This menu will appear:
In the above image you can see the user name and password. After that go to
C:\Users\your_folder\AppData\Roaming\NetBeans\8.0.2\apache-tomcat-8.0.15.0_base\conf\tomcat-users.xml
where you can see the following details and that must be the same credential as you have input in the Tomcat properties section:
<user password="admin" roles="manager-script,admin" username="admin"/>
The above tag shows the user's credentials.
Upvotes: -1
Reputation: 1
Very Simple friends.! No need to change that XML file. only go into tools>server>remove server. then add the server again it will ask you to create a username and password. Check the box "create new user if not exist." I tried a minute ago.
Upvotes: 0
Reputation: 129
I added a role like this and Tomcat got successfully started in NetBeans
Remember Run NetBeans as Administrator
<role rolename="manager-script"/>
<user username="admin" password="admin" roles="admin-gui,manager-gui,manager-
script" />
Upvotes: 0
Reputation: 1
Upvotes: 0
Reputation: 696
Just succeeded after several hours of despair. It seems it is caused by netbeans not having privileges to the Program Files folder. Try to use a separate CATALINA BASE folder, where the configuration will reside.
Upvotes: 0
Reputation: 84
Change your tomcat-users.xml locate at conf directory of Apache installation location then restart the net-beans.
<user password="admin" roles="manager,manager-script,admin" username="admin"/>
or you can remove Apache server from Netbeans and re-add.
Upvotes: 0
Reputation: 16625
Short answer - don't know. Your tomcat-users.xml looks right. Things to check:
Upvotes: 6
Reputation: 97
For those using tomcat 7.0.72 still having the same issue. do the following
<?xml version="1.0" encoding="UTF-8"?> <tomcat-users> <role rolename="manager-script"/> <user username="user" password="user" roles="manager-script"/> </tomcat-users>
tomcat.home=C:\\Program Files\\Apache Software Foundation\\Tomcat 7.0 tomcat.url=http://localhost:8080 tomcat.username=manager tomcat.password=tomcat
Note: change the username and password as above to the username and password you set in the tomcat-users.xml in c:\Program Files\apache...\
Remove the server in Netbeans
Add the tomcat server in Netbeans again and set the username and password as those in tomcat-users.xml
exit both tomcat server and Netbeans
restart your PC and start tomcat server
Run Netbeans as administrator.
These should work.
Upvotes: 3
Reputation: 349
Go to
C:\Users\ur folder\AppData\Roaming\NetBeans\8.0.2\apache-tomcat-8.0.15.0_base\conf\tomcat-users.xml
and delete the line
<user password="admin" roles="manager-script,admin" username="admin"/> `
within the tomcat users tab.
remove the apache tomcat server from netbeans
and add it again setting catalina
home to
C:\Program Files\Apache Software Foundation\Apache Tomcat 8.0.15\conf\Catalina\localhost\conf\Catalina\localhost
and
create a new user. Then it will be fixed
Upvotes: 3
Reputation: 151
same problem.. fixéd it by adding:
<tomcat-users>
<role rolename="manager-script"/>
<user username="user" password="user" roles="manager-script"/>
</tomcat-users>
to C:\Program files\apache-tomcat-7.0.47\conf\tomcat-users.xml
and remember to run netbeans as administrator.
Upvotes: 15
Reputation: 1
I know this has been solved but I went through something similar on Windows where my "..\Apache\Tomcat.." was in program files and what worked for me was
1.Exit Netbeans (If open) 2.Run Netbeans as administrator
Hope this helps someone.
Upvotes: 0
Reputation: 21
Remember restarting Tomcat apter you follow there guide, no need to to remove netbean and tomcat! Here is my steps:
1- remove the netbeans folder in C:\Users{youruser}\AppData\Roaming\netbeans
2- set permission to tomcat_users.xml
3- edit tomcat_user.xml
4- restart Tomcat
It works!
Upvotes: 2
Reputation: 7
Open xampp control panel. Select Config=>tomcat_users.xml Un-comment this at the end of the file:
<role rolename="tomcat"/>
<role rolename="role1"/>
<user username="tomcat" password="tomcat" roles="tomcat"/>
<user username="both" password="tomcat" roles="tomcat,role1"/>
<user username="role1" password="tomcat" roles="role1"/>
<user password="space" roles="manager-script,admin" username="root"/>
Upvotes: -1
Reputation: 89
Hello the solution is the below :
tested !! :D
Upvotes: 8
Reputation: 41
I also got this error. I've solve with this. I've got this error becasue user I log on to computer is not have permission to get access C: and can't add user info in .\conf\tomcat-users.xml. So I've copy tomcat folders to D: and remove and add again tomcat server in my NetBeans and start server again.. Now I'm fine.
Upvotes: 4