51工具盒子

依楼听风雨
笑看云卷云舒,淡观潮起潮落

mac

tomcat 安装(macos)

tomcat 安装(macos)

厉飞雨 阅读(49) 评论(0) 赞(3)

tomcat安装 ### (1) 下载 tomcat https://tomcat.apache.org/download-80.cgi 这里白眉大叔选择 的8的版本 ![](http://static.51tbox.com/static/2024-08-29/col/301c157baef9b9a31165b49738228529/8e756753c3814313a3...

mac 端口查看

mac 端口查看

厉飞雨 阅读(111) 评论(0) 赞(6)

mac 查看端口 1. 使用lsof命令 lsof命令可以列出当前系统打开的文件和网络连接。我们可以使用lsof命令来看端口号。以下是一个示例: lsof -i :8080 在这个示例中,我们使用lsof命令来查看端口号8080是否被占用。如果端口号被占用,lsof命令将会返回相关的进程信息。 2. 使用netstat命令 netstat命令可以显示当前...

mac相关

mac相关

厉飞雨 阅读(66) 评论(0) 赞(3)

1 - 在macOS上查看隐藏文件的方法: 按Command + Shift +句点(CMD + Shift +. )快捷键。 2- 权限不足 sudo chmod -R 777 要修改文件上层目录的路径 Mac提示operation not permitted解决方案 :[连接](https://51tbox.com/)

如何用mac自带终端连接多个远程Linux服务器

如何用mac自带终端连接多个远程Linux服务器

厉飞雨 阅读(52) 评论(0) 赞(7)

你好,我是猿java。 现如今,Mac电脑已经成了很多公司开发人员的标配,作为开发人员进行线上Linux服务器查错是在所难免的,很多公司有堡垒机(跳板机),可以帮助开发人员 快速管理和进入线上机器,但是相对运维比较落后的公司,要么安装一些三方工具,要么电脑上不停的切换服务器IP进行远程连接操作。今天,小编就分享如何利用mac自带 终端连接多个远程Linux服务。 使...

gitee

gitee

厉飞雨 阅读(109) 评论(0) 赞(3)

``` git config --global user.name "baimeidashu" git config --global user.email "715740383@qq.com" ``` 创建 git 仓库: <br /> ``` mkdir springbootdemo1 cd springboot...

git clone 加代理

git clone 加代理

厉飞雨 阅读(108) 评论(0) 赞(5)

1-临时用 ----- git clone https://github.com/fex-team/ueditor.git --config http.proxy="socks5://127.0.0.1:1080" 用为windows的ss git clone https://github.com/fex-team/ueditor.gi...

git 汇总-git 命令

git 汇总-git 命令

厉飞雨 阅读(72) 评论(0) 赞(3)

git 命令 gitignore 不生效pycharm : [连接](https://www.baimeidashu.com/17035.html) git clone 加代理 :[连接](https://www.baimeidashu.com/18097.html) 1- 创建分支: $ git branch issue1 2-切换分支: $ g...

pycharm配置 .gitignore 文件

pycharm配置 .gitignore 文件

厉飞雨 阅读(78) 评论(0) 赞(3)

如何配置 [工具使用-pycharm如何配置 .gitignore 文件_pycharm中.gitignore文件显示被禁-CSDN博客](https://blog.csdn.net/Flemington7/article/details/135394474) ![](http://static.51tbox.com/static/2024-08-29/col/8cf086...

gitignore 模版

gitignore 模版

厉飞雨 阅读(111) 评论(0) 赞(9)

gitignore 模版 ### Python template # zzy add # Byte-compiled / optimized / DLL files __pycache__/ *.py[cod] *$py.class # ...