摘要: 防火墙操作 1、开启防火墙 systemctl start firewalld 2、重启防火墙 systemctl restart firewalld 3、关闭防火墙 systemctl stop firewalld 4、查看开放端口 firewall-cmd --list-port 5、开放某个端 阅读全文
posted @ 2023-11-07 18:32 爱语默 阅读(37) 评论(0) 推荐(0) 编辑
摘要: docker 部署testlink 1、拉取db镜像:docker pull bitnami/mariadb 2、拉取testlink镜像:docker pull bitnami/testlink 3、容器网络:docker network create testlink 4、查看网络:docker 阅读全文
posted @ 2023-11-02 11:37 爱语默 阅读(62) 评论(0) 推荐(0) 编辑
摘要: docker上安装mysql 1、拉取镜像 docker pull mysql:5.7.26 2、运行容器 docker run --name mysql -p 3306:3306 -e MYSQL_ROOT_PASSWORD=123456 -d mysql:5.7.26 2.1 查看mysql容器 阅读全文
posted @ 2023-10-24 17:32 爱语默 阅读(125) 评论(0) 推荐(0) 编辑
摘要: Linux上安装docker 1、安装docker 1.1 安装所需依赖包 yum install -y yum-utils device-mapper-persistent-data Ivm2 1.2 设置镜像仓库 yum-config-manager --add-repo https://dow 阅读全文
posted @ 2023-10-24 15:47 爱语默 阅读(254) 评论(0) 推荐(0) 编辑
摘要: import pymysql from pymysql.constants import CLIENT ''' pymysql 执行多条SQL语句 8.0版本之后需要在建立连接的时候添加参数client_flag = CLIENT.MULTI_STATEMENTS ''' # 打开数据库连接 db 阅读全文
posted @ 2023-10-17 15:09 爱语默 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 1、 Illegal mix of collations (latin1_swedish_ci,IMPLICIT) and (utf8mb4_general_ci,COERCIBLE) for operation '=' 解决: 原因: 因为新创建的表字符集是latin1_swedish_ci,而原 阅读全文
posted @ 2023-10-11 15:35 爱语默 阅读(9) 评论(0) 推荐(0) 编辑
摘要: 部署项目到远程服务器 1、Deployment窗口配置 在Deployment配置窗口中,单击"+“图标,并选择"SFTP Server”,并输入SFTP服务器的主机名、端口号、用户名和密码等必要的信息。 2、本地路径与服务器路径的映射 配置服务器上的目标路径和本地路径,以及本地路径与服务器路径的映 阅读全文
posted @ 2023-10-11 14:42 爱语默 阅读(486) 评论(0) 推荐(0) 编辑
摘要: mysql密码重置 1、查看mysql服务是否启动 ps -ef | grep mysqld ss -ltp 2、找到mysql配置文件 3、配置文件中新增跳过授权配置 skip-grant-tables vi my.cnf 编辑配置文件 新增skip-grant-tables 配置 esc 、 w 阅读全文
posted @ 2023-10-11 11:31 爱语默 阅读(23) 评论(0) 推荐(0) 编辑
摘要: 1、Spring Boot整合jpa,启动项目报错:Caused by: java.lang.IllegalArgumentException: Not a managed type: class com.springboot.demo.domain.User 解决办法: 检查实体类的 @Entit 阅读全文
posted @ 2023-10-10 17:09 爱语默 阅读(124) 评论(0) 推荐(0) 编辑
摘要: 参考:https://blog.csdn.net/xiaodeng2017/article/details/125190975 jmeter加压方式 第一种加压: Stepping Thread Group 下载地址:Download :: JMeter-Plugins.org 将JMeterPlu 阅读全文
posted @ 2023-09-27 16:41 爱语默 阅读(167) 评论(0) 推荐(0) 编辑