服务器的中间件tomcat报错:禁止使用超级用户启动tomcat,要求在普通模式上使用
或者使用服务启动tomcat后,项目可以访问,但是不能写出文件等,但是用start.bat启动是可以写出文件
在网上搜索后发现都是linux中禁用的教程多,windowns很少
处理方法:
第一步:注册tomcat7为服务(ps:我用的是非安装版的tomcat,已经安装tomcat的可以跳过这一步)
Microsoft Windows [版本 6.1.7601] 版权所有 (c) 2009 Microsoft Corporation。保留所有权利。 C:\Users\Administrator>d: D:\>cd apache-tomcat-7.0.88 D:\apache-tomcat-7.0.88>cd bin //进入tomcat中bin文件夹下面找到service.bat运行 D:\apache-tomcat-7.0.88\bin>service.bat install Installing the service ‘Tomcat7‘ ... Using CATALINA_HOME: "D:\apache-tomcat-7.0.88" Using CATALINA_BASE: "D:\apache-tomcat-7.0.88" Using JAVA_HOME: "D:\jdk1.7.0_80_x64" Using JRE_HOME: "D:\jdk1.7.0_80_x64\jre" Using JVM: "D:\jdk1.7.0_80_x64\jre\bin\server\jvm.dll" The service ‘Tomcat7‘ has been installed.
Tomcat注册成服务后可以在windowns服务上查看
注册好服务后注意事项:
设置服务编码、内存
-Dfile.encoding=UTF-8
-XX:PermSize=32M
-XX:MaxPermSize=128M
第二步:选中》属性》登录》登录身份》此账户》浏览》高级》立即查找》选中启动tomcat的普通用户》确定》应用
或者选择LOCAL SERVICE
ps:普通用户的账户是在windown上面添加的
这样设置好后用检测脚本检测,发现不会报“禁用超级用户root”的安全问题了
windows中tomcat禁止使用超级用户(root)启动,要求在普通模式下启动tomcat,或者使用服务启动tomcat后,项目可以访问,但是不能写出文件等