上一页 1 2 3 4 5 6 7 ··· 23 下一页

2023年4月3日

摘要: 如果用户环境对docker的安全没有要求的话,尽量不要对docker的文件设置权限。不然后面运行容器的时候会报权限问题的错误,会很麻烦。如果安全要求非要给docker文件做权限设置,尽量先把需要安装的容器都先安装好了,再对docker文件做权限限制限制容器之间的网络流量 默认情况下,同一主机上的容器 阅读全文
posted @ 2023-04-03 11:32 james-roger 阅读(126) 评论(0) 推荐(0) 编辑

2023年3月17日

摘要: 1 将nginx的安装包上传到服务器的/home/software目录 然后输入命令 tar -zxvf nginx-1.21.5.tar.gz 命令将其解压输入命令 mkdir -p /usr/local/nginx 创建nginx的安装目录输入 cd nginx-1.21.5/ 进入nginx的 阅读全文
posted @ 2023-03-17 18:40 james-roger 阅读(557) 评论(0) 推荐(0) 编辑

2023年2月28日

摘要: ./configure: error: the HTTP rewrite module requires the PCRE library. You can either disable the module by using --without-http_rewrite_module option 阅读全文
posted @ 2023-02-28 11:00 james-roger 阅读(291) 评论(0) 推荐(0) 编辑

2023年2月27日

摘要: 数据库里面的数据太大,根目录里面已经放不下了,需要将数据目录迁移到其他目录 创建新的数据目录 假定“/home”目录存储空间较大 mkdir /home/data/pgsql/ 停止PostgreSQL数据库服务 systemctl stop postgresql-11.service 或者 sys 阅读全文
posted @ 2023-02-27 16:22 james-roger 阅读(215) 评论(0) 推荐(0) 编辑
摘要: 在 application.properties里面添加如下内容即可spring.jpa.hibernate.naming.physical-strategy = cn.studyBoot.dao.strategy.UpperTableStrategy import org.apache.commo 阅读全文
posted @ 2023-02-27 14:33 james-roger 阅读(103) 评论(0) 推荐(0) 编辑

2023年2月8日

摘要: 参考文档 https://blog.csdn.net/carefree2005/article/details/114819885 1、内核升级步骤1)、查看可升级版本使用命令yum list kernel可以查看已安装的内核版本和可以升级至的最新内核版本,示例最新可以升级的内核版本为3.10.0- 阅读全文
posted @ 2023-02-08 14:22 james-roger 阅读(956) 评论(0) 推荐(0) 编辑

2023年1月2日

摘要: import io.swagger.annotations.*; import org.apache.http.HttpEntity; import org.apache.http.auth.AuthScope; import org.apache.http.auth.Credentials; im 阅读全文
posted @ 2023-01-02 11:41 james-roger 阅读(1635) 评论(1) 推荐(0) 编辑

2022年12月8日

摘要: @Retention(RetentionPolicy.RUNTIME) @Target({ElementType.TYPE, ElementType.METHOD, ElementType.FIELD}) public @interface Comment { String value() defa 阅读全文
posted @ 2022-12-08 13:57 james-roger 阅读(1256) 评论(0) 推荐(0) 编辑

2022年9月28日

摘要: wkt数据 POINT(-122.34900 47.65100) LINESTRING ( 32.75550000 24.20710000, 47.68750000 28.61260000 51.01660000 14.98210000, 35.93630000 69.31130000, 35.68 阅读全文
posted @ 2022-09-28 11:46 james-roger 阅读(120) 评论(0) 推荐(0) 编辑

2022年8月23日

摘要: 安装教程: https://www.postgresql.org/download/linux/redhat/ 开启远程访问: 修改配置文件 配置文件目录 /var/lib/pgsql/12/data/ 如果是安装的postgres 12 则 目录是 12 1.修改配置文件postgresql.co 阅读全文
posted @ 2022-08-23 11:29 james-roger 阅读(313) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 23 下一页