参考文档:https://tomcat.apache.org/tomcat-7.0-doc/config/http.html 修改Tomcat最大线程数 conf/server.xml文件 添加maxThreads="500" <Connector port="8080" protocol="HTTP/1.1" connectionTimeo…
建议在Python3.*下使用 使用前需要先用pip安装以下包 Mysql pip install PyMySQL Postgresql pip install psycopg2 Oracle pip install cx_Oracle cx_Oracle 执行报错cx_Oracle.DatabaseError: DPI-1047: Oracle …

使用aaPanel安装WordPress教程
AWS GoogleCloud 密钥访问设置成密码登录
Linux服务器测速外网速度

安装aaPanel 脚本来源自官网:https://www.aapanel.com/new/download.html?btwaf=75997119 一键安装脚本 Centos yum install -y wget && wget -O install.sh http://www.aapanel.com/script/instal…
修改密码 sudo passwd root 设置完成后,切换root用户 su root 编辑sshd_config文件 vim /etc/ssh/sshd_config 找到下面两个选项,然后修改为yes PasswordAuthentication yes PermitRootLogin yes 保存修改后,重启ssh服务 service ss…
教程使用SpeedTest进行测速(结果仅供参考) GitHubsivel/speedtest-cli 直接下载文件赋权执行测速 使用wget命令下载执行文件 wget -O speedtest-cli https://raw.githubusercontent.com/sivel/speedtest-cli/master/speedtest…

执行jar报错 错误: 找不到或无法加载主类 com.szk.exportexcel.ExportExcel

解决方案如下 除了本身的MANIFEST.MF文件,其他文件都删除,原因是引用的jar太多太乱,打包之后就导致找不到执行程序主类(具体那个jar需要一个一个试,或者删除掉引用jar包里面META-INF\文件下的.MF文件就能解决了)

SSH工具推荐

1丶XSHELL 官网地址:https://www.xshell.com/下载地址:https://www.xshell.com/zh/all-downloads/ 2丶FinalShell 官网地址:http://www.hostbuf.com/Windows版下载地址:http://www.hostbuf.com/downloads/final…

AWS免费服务器领取后注意事项
Linux重启Tomcat脚本
JDK安装教程
以下注意事项为网络上分享内容,真实性自行甄别!!! 1.更改积分规范(EC2默认为开启状态) AWS官方说明文档链接:https://docs.aws.amazon.com/AWSEC2/latest/UserGuide/burstable-performance-instances-unlimited-mode.html?icmpid=docs_…
重启Tomcat脚本 #! /bin/bash #这里配置tomcat的根路径 tomcat_home=/usr/local/apache-tomcat-7.0.81 SHUTDOWN=$tomcat_home/bin/shutdown.sh START=$tomcat_home/bin/startup.sh echo "Use shutdown.…
1.查看系统已经安装的JDK rpm -qa|grep openjdk 2.卸载默认安装的JDK rpm -e --nodeps java-1.7.0-openjdk-headless-1.7.0.141-2.6.10.5.el7.x86_64 3.安装自己上传的JDK rpm -ihv jdk-8u131-linux-x64.rpm 4.配置环境…