上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页
摘要: 安装镜像:docker pull 镜像名称 查看所有运行容器:docker ps -a 运行容器:docker run --name 容器名称 进入指定容器:docker exec -it 容器名称 bash 重启容器:docker restart 容器名称 停止所有容器:docker stop $ 阅读全文
posted @ 2021-05-02 13:41 程序员小艺 阅读(54) 评论(0) 推荐(0) 编辑
摘要: 1.创建公钥 1.在本地Mac终端下创建公钥 ssh-keygen 备注:在这个过程中会有创建文件保存的公钥的提示(Enter file in which to save the key (/home/andron/.ssh/id_rsa): )直接回车即可(若已经创建公钥则会提示是否覆盖,yes) 阅读全文
posted @ 2021-04-30 21:18 程序员小艺 阅读(409) 评论(0) 推荐(0) 编辑
摘要: 实现思路:快速写入文件,就要减少磁盘读取次数,所以将所有要写入的内容拼接起来,一次性写入文件,减少磁盘读写次数 $content = "字符串".PHP_EOL; $filename = __DIR__."/log.txt"; $arr = []; for ($i=0; $i < 200000; $ 阅读全文
posted @ 2021-04-29 18:27 程序员小艺 阅读(361) 评论(0) 推荐(0) 编辑
摘要: 每个文章,每个人对其进行评分,计算每个文章评分总和 select Aclass,(select sum(Bid) as Bclassnum from tabB where Bclass=Aclass) as Aclassnum from tabA order by Aclassnum desc 阅读全文
posted @ 2021-04-01 10:13 程序员小艺 阅读(383) 评论(0) 推荐(0) 编辑
摘要: 一般是由于权限不足原因,需要在运行的命令前加上sudo 阅读全文
posted @ 2021-03-31 22:48 程序员小艺 阅读(1500) 评论(0) 推荐(0) 编辑
摘要: 系统环境: MacOS 10.13.1python版本:3.6.1问题:安装mysqlclient的时候报错。报错信息:OSError: mysql_config not found 解决方法:执行这条命令,即可ln -s /usr/local/mysql/bin/mysql_config /usr 阅读全文
posted @ 2021-03-30 23:57 程序员小艺 阅读(104) 评论(0) 推荐(0) 编辑
摘要: app.php新增auto_multi_app=true;安装composer require topthink/think-multi-app 阅读全文
posted @ 2021-03-15 13:54 程序员小艺 阅读(85) 评论(0) 推荐(0) 编辑
摘要: 检查请求的url地址,是否是https和http的问题 阅读全文
posted @ 2021-01-18 12:58 程序员小艺 阅读(281) 评论(0) 推荐(0) 编辑
摘要: 右击项目选址Export,选择WAR file文件导出,上传war文件到tomcat根目录 tomcat配置文件需要开启unpackWARs="true" <Host name="localhost" appBase="" unpackWARs="true" autoDeploy="true"> < 阅读全文
posted @ 2021-01-13 21:40 程序员小艺 阅读(296) 评论(0) 推荐(0) 编辑
摘要: tomcat的serve.xml配置信息 <Host name="localhost" appBase="" unpackWARs="true" autoDeploy="true"> <Valve className="org.apache.catalina.valves.AccessLogValv 阅读全文
posted @ 2021-01-13 21:35 程序员小艺 阅读(130) 评论(0) 推荐(0) 编辑
上一页 1 ··· 12 13 14 15 16 17 18 19 20 ··· 23 下一页