摘要:
// 通过 killall 命令 killall nginx// 通过 pkill 命令,类似于 pgrep + killpkill nginx// 通过先查找再 kill 的方式ps -ef | grep nginx | grep -v grep | awk '{print $2}' | xarg 阅读全文
摘要:
NGINX: location /h5 { try_files $uri $uri/ /h5/index.html; } 阅读全文
摘要:
https://www.jianshu.com/p/384f4d4b29bb 阅读全文
摘要:
具体见 : https://blog.csdn.net/weixin_49192390/article/details/113989218?ops_request_misc=%257B%2522request%255Fid%2522%253A%2522168178969316800197063528 阅读全文
摘要:
1、uniapp必须使用cli模式,如果是hbuliderx创建的,不支持 2、jenkins配置 需要publish over ssh 插件和 node插件,自行百度即可 现在主要说说配置 1)、系统管理-》系统配置中,找到 publish over ssh 2)、新建item如下即可 阅读全文
摘要:
1、在网上下载 libmysqlclient.so.16 2、执行该命令ldconfig -v |grep mysql ,将文件放在 /usr/lib64/mysql目录记录 3.再次执行该命令ldconfig -v |grep mysql 阅读全文
摘要:
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: 阅读全文
摘要:
uniapp 打好的包,必须放到对应的目录,app.json里面要加对应的分包配置。 注意:不能放到对方的uniapp的工程目录,只能放到编译后的目录 阅读全文
摘要:
详情见 : https://blog.csdn.net/cmdfas/article/details/119884168 现有一个十分庞大的微信小程序应用,想要把新功能利用uni-app来开发,是否可行?有哪些优缺点? 首先看到官方给出的解决方案 https://uniapp.dcloud.io/h 阅读全文
摘要:
Updating '.':Skipped 'application/extra/site.php' -- Node remains in conflictAt revision 153.Summary of conflicts: Skipped paths: 1 解决办法: svn resolve 阅读全文