随笔分类 - linux
摘要:原文地址https://blog.csdn.net/xiaopihai86/article/details/50756306 http://www.cronmaker.com/ cron表达式验证网站 CronTrigger配置完整格式为: [秒] [分] [小时] [日] [月] [周] [年]
阅读全文
摘要:查看端口使用情况,使用netstat命令。 查看已经连接的服务端口 netstat -a 查看所有的服务端口 netstat -ap 查看8080端口,则可以结合grep命令: netstat -ap | grep 8080 如查看8888端口,则在终端中输入: lsof -i:8888 若要停止使
阅读全文