摘要:
配置代理服务 export http_proxy=122.114.112.242:16816 export https_proxy=122.114.112.242:16816 删除代理服务: unset http_proxy unset https_proxy 阅读全文
摘要:
以ubuntu系统为例: 1.安装certbot: apt update apt upgrade sudo apt install certbot python3-certbot-nginx 2.验证Web服务器端口是否打开并允许通过防火墙 sudo ufw status verbose 3.获取S 阅读全文
摘要:
最近在服务器上为let's encrypt证书添加自动续签计划任务时,发现总是不成功,但手动执行该计划任务所对应的sh脚本则没问题,这让我怀疑crontab执行时可能缺少了点什么导致的,想追踪一下crontab的执行日志,发现并没有,需要手动修改配置文件打开: sudo vim /etc/rsysl 阅读全文
摘要:
首先在pom.xml下引入JUnit必须的包: <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> </dependency> <dependency> <groupId>org.springframework.b 阅读全文
摘要:
编辑Git 配置文件: vim ~/.gitconfig 修改配置文件,添加下面内容: [credential] helper = store 再触发填写一次用户名密码,就保存了。 如果系统找不到.gitconfig文件: git config --global --edit 阅读全文
摘要:
主要还是站点配置文件,找到vhost下的站点配置文件,代码如下 server { listen 80; server_name www.test.com test.com; index index.html index.htm index.php; #include /usr/local/nginx 阅读全文
摘要:
报错信息: 解决方法,启动seata时指定host: sh bin/seata-server.sh -p 8091 -h 能ping通的IP 阅读全文
摘要:
1.下载地址: https://archive.apache.org/dist/maven/maven-3/ PS:推荐下载3.8.x,最新的3.9.x在打包时可能会出错。 2.配置本地仓库 maven默认的本地仓库地址为 ${user.home}/.m2/repository ,也就是在C盘当中。 阅读全文
摘要:
新建mq.json文件: { "apps": { "name": "consumerMQ", // 应用名称 "script": "php think recharge", // 命令名称 "error_file": "./log/err.log", // 错误日志 "out_file": "./l 阅读全文
摘要:
cd /www/server/php/74/etc 宝塔有两个配置文件,php.ini,php-cli.ini, 如果我们是手动安装的扩展 ,两边都要同步 systemctl restart php-fpm 重启php服务生效 阅读全文