杨新春

  博客园 :: 首页 :: 博问 :: 闪存 :: 新随笔 :: 联系 :: 订阅 订阅 :: 管理 ::
上一页 1 2 3 4 5 6 ··· 10 下一页

2023年8月10日

摘要: // 通过 killall 命令 killall nginx// 通过 pkill 命令,类似于 pgrep + killpkill nginx// 通过先查找再 kill 的方式ps -ef | grep nginx | grep -v grep | awk '{print $2}' | xarg 阅读全文
posted @ 2023-08-10 10:05 杨新春 阅读(748) 评论(0) 推荐(0) 编辑

2023年7月10日

摘要: NGINX: location /h5 { try_files $uri $uri/ /h5/index.html; } 阅读全文
posted @ 2023-07-10 10:57 杨新春 阅读(633) 评论(0) 推荐(0) 编辑

2023年6月27日

摘要: https://www.jianshu.com/p/384f4d4b29bb 阅读全文
posted @ 2023-06-27 11:50 杨新春 阅读(119) 评论(0) 推荐(0) 编辑

2023年4月18日

摘要: 具体见 : https://blog.csdn.net/weixin_49192390/article/details/113989218?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522168178969316800197063528 阅读全文
posted @ 2023-04-18 17:15 杨新春 阅读(865) 评论(0) 推荐(0) 编辑

2023年4月13日

摘要: 1、uniapp必须使用cli模式,如果是hbuliderx创建的,不支持 2、jenkins配置 需要publish over ssh 插件和 node插件,自行百度即可 现在主要说说配置 1)、系统管理-》系统配置中,找到 publish over ssh 2)、新建item如下即可 阅读全文
posted @ 2023-04-13 16:35 杨新春 阅读(607) 评论(0) 推荐(0) 编辑

2023年2月3日

摘要: 1、在网上下载 libmysqlclient.so.16 2、执行该命令ldconfig -v |grep mysql ,将文件放在 /usr/lib64/mysql目录记录 3.再次执行该命令ldconfig -v |grep mysql 阅读全文
posted @ 2023-02-03 14:18 杨新春 阅读(168) 评论(0) 推荐(0) 编辑

2022年11月23日

摘要: Jenkins git访问拒绝 问题一 Failed to connect to repository : Command "git ls-remote -h git@xxxxx.com:xxx/dev_test.git HEAD" returned status code 128: stdout: 阅读全文
posted @ 2022-11-23 18:00 杨新春 阅读(387) 评论(0) 推荐(0) 编辑

2022年5月13日

摘要: uniapp 打好的包,必须放到对应的目录,app.json里面要加对应的分包配置。 注意:不能放到对方的uniapp的工程目录,只能放到编译后的目录 阅读全文
posted @ 2022-05-13 09:29 杨新春 阅读(193) 评论(0) 推荐(0) 编辑

2022年5月12日

摘要: 详情见 : https://blog.csdn.net/cmdfas/article/details/119884168 现有一个十分庞大的微信小程序应用,想要把新功能利用uni-app来开发,是否可行?有哪些优缺点? 首先看到官方给出的解决方案 https://uniapp.dcloud.io/h 阅读全文
posted @ 2022-05-12 17:20 杨新春 阅读(297) 评论(0) 推荐(0) 编辑

2022年3月22日

摘要: Updating '.':Skipped 'application/extra/site.php' -- Node remains in conflictAt revision 153.Summary of conflicts: Skipped paths: 1 解决办法: svn resolve 阅读全文
posted @ 2022-03-22 10:01 杨新春 阅读(206) 评论(0) 推荐(0) 编辑

上一页 1 2 3 4 5 6 ··· 10 下一页