Tutorials ⚙️ Quick Tutorial: How to Update the pwAdmin Password

Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!
  • Dear Guest, You are a regular member, and you cannot download files here. To be able to download all files here, you must become a “Lovely Member.” How to become a Lovely Member? Click this link: 💖 How to Become a “Lovely Member” on Our Forum Alternatively, you can upgrade your account to VIP using this link: Upgrade
The "Tutorials" prefix is your guide to mastering private server development. Share or explore step-by-step guides on scripting, server setup, database editing, client modding, or event creation.
  • Thread Author
1748535527894.webp


pwAdmin is an Web Interface based on JSP that uses the PW-Java API to control an Perfect World Server. In this tutorial, i will show you how to update pwAdmin password.

  • Login to your server
  • Define your new password, for example i use "hrace009" as my pwAdmin password
  • At your console terminal type echo -n "YOUR PASSWORD"| md5sum | awk '{print $1}'
    1748535637193.webp

    you will see md5 hash password, highlight it and copy to your clipboard
  • Now open .pwadminconf.jsp with your favorite editor, this file locate at /home/[YOUR PW USER]/Core/Wanmei2015/apache-tomcat-7.0.32/webapps/Admin_Control1/WEB-INF/.pwadminconf.jsp
  • In my case i use vi hrace009@hrace009-laptop:~$ vi /home/hrace009/Core/Wanmei2015/apache-tomcat-7.0.32/webapps/Admin_Control1/WEB-INF/.pwadminconf.jsp
    1748536618511.webp
  • Look at iweb_password, you will see a hash md5 password. replace it with the new md5 password that we generate from point 3
  • Save it, and restart your tomcat server.
 
Back
Top