05 2022 档案
摘要:关键字操作顺序: where -- group by -- having -- order by -- limit 新增字段: ALTER TABLE 表名 ADD 字段名 varchar(10) DEFAULT NULL COMMENT '备注' AFTER 想要在哪个字段名之后; 修改字段: a
阅读全文
摘要:* nginx 配置 ssl 证书前需要先安装 SSL 模块,本次操作是在已经安装 nginx 的基础上配置,先安装 SSL 模块,来到 nginx 源码目录,我的是这里,执行进入到自己的安装目录: cd /usr/local/nginx-1.10.3 执行语句,重新安装 ssl 模块 ./conf
阅读全文
摘要:* 一键安装四个依赖 yum -y install gcc zlib zlib-devel pcre-devel openssl openssl-devel * 安装 nginx【如果报:-bash: wget: command not found,先安装 wget:yum -y install w
阅读全文
摘要:首先在自己的项目引入依赖: <dependency> <groupId>com.xuxueli</groupId> <artifactId>xxl-job-core</artifactId> <version>2.3.0</version> </dependency> <dependency> <g
阅读全文
摘要:官网:https://www.xuxueli.com/xxl-job/ 源码下载地址:https://gitee.com/xuxueli0323/xxl-job/tree/2.3.0 步骤一:用上面的源码链接,拉取代码下来后,然后运行自带的tables_xxl_job.sql文件,生成需要的表 步骤
阅读全文
摘要:原文:https://blog.csdn.net/dengfengan/article/details/105115349 第一步:下载MySQL安装 [root@steel home]# cd /home/data[root@steel data]# ls[root@steel data]# wg
阅读全文