?
linux服务器 tomcat启动慢的问题
java环境下修改配置文件
vim $JAVA_HOME/jre/lib/security/java.security
securerandom.source=file:/dev/random
改为
securerandom.source=file:/dev/urandom
参考:https://www.linuxidc.com/Linux/2017-05/143565.htm
linux 启动项目 报错:cannot find localhost ip
因为/etc/hosts这个文件中没有将服务器ip地址与/etc/hostname文件中的服务器实例名称建立关系,
在hosts文件中在127.0.0.1 localhost下加入一行,127.0.0.1 + 服务器实例名称,问题解决