Tomcat安装教程见http://www.cnblogs.com/lsdb/p/6497964.html 启动tomcat后访问http://127.0.0.1/:8080,出现界面如下其右上角有三个链接按钮,其中Server Status和Manager App使用同一配置Host Manager另外配置: 1.启用/禁用控制台 未启用控制台访问控制台页面,一般重定向页面报以下错误: You are not authorized to view this page. If you have…
1. 之前写了一个 可以使用 ssms 的方式修改密码的情况 2. 还有办法是执行命令 exec sp_password null,'newpassword','sa' # sa 是用户名 newpassword 是新密码 还有一个办法 alter login sa with password='newpassword' 注意有等号 注意有with 注意是 alter login 不是 alter user 3. 其实还有一个办法 不是登录 ssms 是使用sqlcmd的方式来处理. SQLC…