上一页 1 ··· 6 7 8 9 10 11 下一页
摘要: 后台运行jar nohup /root/java/jdk1.8.0_111/bin/java -jar service-side.jar --Dspring.config.location=config/* >/dev/null 2>&1 & dockers images --查看本地镜像 dock 阅读全文
posted @ 2021-10-27 11:40 李广龙 阅读(1161) 评论(0) 推荐(0)
摘要: <el-pagination style="text-align: center" layout="prev, pager, next" :total="Page.total" :page-size="Page.pageSize" @current-change="handleCurrentChan 阅读全文
posted @ 2021-10-20 15:02 李广龙 阅读(40) 评论(0) 推荐(0)
摘要: #在当前目录把Python所依赖的组件,列在requirements.txt文件中 pip freeze > requirements.txt Linux中Python3环境搭建 [root@localhost ~]#wget https://www.python.org/ftp/python/3. 阅读全文
posted @ 2021-10-19 14:01 李广龙 阅读(407) 评论(0) 推荐(0)
摘要: 直接上代码 <template> <div class="parent"> <rule-table :excel="false" table-title="" :more="false"> <el-button slot="button" type="success" icon="el-icon-s 阅读全文
posted @ 2021-10-16 16:49 李广龙 阅读(2773) 评论(0) 推荐(0)
摘要: 用put方法上传文件 上传了一半 提示 raise IOError(text) 找不到文件 而上传另一个服务器就没问题 这有可能是服务器路径文件夹的问题 删除新建一个 重新上传就可以了 阅读全文
posted @ 2021-10-16 10:09 李广龙 阅读(428) 评论(0) 推荐(0)
摘要: #!/bin/bash echo "************ 查找进程 **************" pid=`ps -ef | grep "demo-0.0.1-SNAPSHOT.jar" | grep -v grep | awk '{print $2}'` if [ -n "$pid" ]; 阅读全文
posted @ 2021-10-15 16:08 李广龙 阅读(246) 评论(0) 推荐(0)
摘要: upstream myserver { server 127.0.0.1:8081; server 127.0.0.1:8082; } #监听一个端口 server { listen 12085; server_name localhost; #charset koi8-r; #access_log 阅读全文
posted @ 2021-10-15 16:00 李广龙 阅读(29) 评论(0) 推荐(0)
摘要: 不想过多莫名奇妙的bug出现 直接用docker安装配置 先创建一个临时的nginx容器 docker run --name nginxcs -d nginx 把nginx配置目录复制到宿主机 docker cp name:path path本机 然后删除临时容器 在创建新的容器 把复制的配置文件挂 阅读全文
posted @ 2021-10-15 15:53 李广龙 阅读(379) 评论(0) 推荐(0)
摘要: 错误接口 /** * @Author LiGuangLong * @Date 2021-10-14 13:20 * @Version 1.0 **/ public interface BaseErrorInfoInterface { /** * 获取错误码 * @return str */ int 阅读全文
posted @ 2021-10-14 15:10 李广龙 阅读(202) 评论(0) 推荐(0)
摘要: #!/bin/bash echo "************ 查找进程 **************" pid=`ps -ef | grep "demo-0.0.1-SNAPSHOT.jar" | grep -v grep | awk '{print $2}'` if [ -n "$pid" ]; 阅读全文
posted @ 2021-10-13 13:10 李广龙 阅读(362) 评论(0) 推荐(0)
上一页 1 ··· 6 7 8 9 10 11 下一页