简略写下,有空补充详细。 new public github repository new token PicGo settings set github and jsdelivr https://cdn.jsdelivr.net/gh/bolitao/PicRepository set picgo local server Typora settings All done!
白嫖的 1Password 到期,该考虑续费或者换用其他服务了。 PS: 在更新这篇文章时,bitwarden_……
虽然我非常反对手动编译或使用 generic 二进制文件安装 Linux 软件包,但我们公司的运维组似乎十分热衷……
先简略写写,有时间做详细描述。 查询慢 SQL 查询慢 SQL: select id, db, user, host, command, time, state, info FROM information_schema.processlist WHERE command!="Sleep" order by time……
使用 Spring Boot 发送邮件。 依赖 maven 添加以下库: <dependency> <groupId>org.springframework.boot</groupId> <artifactId>spring-boot-starter-mail</artifactId> </dependency> 配置 spring: mail: host: # 比如 <smtp.office365.com> username: # 比如 <tblsyx@outlook.com> password: # 密码 port: #……
[TOC] 任务调度 项目配置 spring boot 应用配置: server.port=7888 nacos.config.server-addr=192.168.200.17:20002 配置中心添加以下配置: # admin 地址 xxl.job.admin.addresses=http://192.168.200.17:20001/xxl-job # 应用名 xxl.job.executor.appname=job-test # 端口……
[TOC] Spring XML 方式 直连方式 provider 添加一个 provider service: public interface ProviderService { String sayHello(String word); } 实现该接口: public class ProviderServiceImpl implements ProviderService……
工作中 CentOS 的一些笔记 03,其实大部分都是 Linux 通用。 [TOC] Elasticsearch 安装 下载压缩版的 es 并解压运行: wget https://artifacts.elastic.co/downloads/elasticsearch/elasticsearch-7.8.0-linux-x86_64.tar.gz……
工作中 CentOS 的一些笔记 02,其实大部分都是 Linux 通用。 [toc] Tengine 安装 Tengine 安装编译环境: sudo yum -y install gcc gcc-c++ autoconf……
工作中 CentOS 的一些笔记,其实大部分都是 Linux 通用。 [TOC] 安装与配置 CentOS 7 ![image-20200……