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}'
you will see md5 hash password, highlight it and copy to your clipboard - Now open
.pwadminconf.jspwith 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
- 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.