postgres+timescaledb--离线安装,centos7.9

操作系统是centos7.9,使用的hper-V,安装的虚拟机环境,安装好操作系统之后,让系统不连外网后直接按下方操作安装。

方式1,使用压缩包,复杂一点。(第一种方式暂时没有安装timescaledb)

装备安装包

  1. postgresf服务安装包
    在这里插入图片描述
  2. 下载之后通过优盘或者ssh进入目标服务器,拷贝进去
    将下载的源码上传至目标服务器,这里我上传到:/usr/local/postgres14.5/src,我们可以创建这个目录,然后在上传到这个目录下

mkdir -p /usr/local/postgresql-16.4/src/

下图是我已经解压缩得到的文件夹postgresql-16.4:tar -xzvf postgresql-16.4.tar.gz
在这里插入图片描述

安装gcc环境

[roy@localhost my_gcc]$ gcc --version
gcc (GCC) 4.8.5 20150623 (Red Hat 4.8.5-44)
Copyright (C) 2015 Free Software Foundation, Inc.
This is free software; see the source for copying conditions.  There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.

安装icu库

[roy@localhost postgresql-16.4]$ rpm -q libicu
libicu-50.2-4.el7_7.x86_64

在这一步之前我是安装了libicud的,不过用的是libicu-50.2-4.el7_7.x86_64.rpm包,可能不需要上面这步,可以试试看

[roy@localhost postgresql-16.4]$ sudo rpm -Uvh /home/roy/libicu-devel-50.2-4.el7_7.x86_64.rpm
[sudo] password for roy:
Sorry, try again.
[sudo] password for roy:
warning: /home/roy/libicu-devel-50.2-4.el7_7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:libicu-devel-50.2-4.el7_7        ################################# [100%]

安装zlib

这里需要注意的是安装zlib-devel库需要zlib库,但是系统之前就已经安装了zlib,需要先看看它的版本rpm -qa | grep zlib,不然下载的zlib-devel库会安装不好。

[roy@localhost postgresql-16.4]$ rpm -qa | grep zlib
zlib-1.2.7-18.el7.x86_64
[roy@localhost postgresql-16.4]$ sudo rpm -Uvh /home/roy/zlib-devel-1.2.7-18.el7.x86_64.rpm
[sudo] password for roy:
warning: /home/roy/zlib-devel-1.2.7-18.el7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:zlib-devel-1.2.7-18.el7          ################################# [100%]

安装postgres

[roy@localhost postgresql-16.4]$ ./configure --prefix=/usr/local/my_pgsql16.4 --with-pgport=5432

在这里插入图片描述
没有报错即可
在这里插入图片描述

接下来执行编译和安装(编译的时间有点长,等会儿)

最好使用管理员权限

make
make install

创建用户组,用户,修改相关文件夹权限。(这个方法中/run/media/postgres/data路径似乎在主机重启或者过一段时间就会被删除,暂时不确定是什么原因。)

[roy@localhost postgresql-16.4]$ groupadd postgres
groupadd: Permission denied.
groupadd: cannot lock /etc/group; try again later.
[roy@localhost postgresql-16.4]$ sudo groupadd postgres
[sudo] password for roy:
[roy@localhost postgresql-16.4]$ sudo useradd -g postgres postgres_dky
[roy@localhost postgresql-16.4]$ mkdir -p /run/media/postgres/data
mkdir: cannot create directory '/run/media': Permission denied
[roy@localhost postgresql-16.4]$ sudo mkdir -p /run/media/postgres/data
[roy@localhost postgresql-16.4]$ chmod -R 777 /run/media/
chmod: changing permissions of '/run/media/': Operation not permitted
chmod: changing permissions of '/run/media/postgres': Operation not permitted
chmod: changing permissions of '/run/media/postgres/data': Operation not permitted
[roy@localhost postgresql-16.4]$ sudo chmod -R 777 /run/media/
[roy@localhost postgresql-16.4]$ sudo chmod -R 777 /usr/local/my_pgsql16.4/bin/
[roy@localhost postgresql-16.4]$ sudo chown postgres_dky /run/media/postgres/data
[roy@localhost postgresql-16.4]$ chown postgres_dky /usr/local/my_pgsql16.4/bin/initdb
chown: changing ownership of '/usr/local/my_pgsql16.4/bin/initdb': Operation not permitted
[roy@localhost postgresql-16.4]$ sudo chown postgres_dky /usr/local/my_pgsql16.4/bin/initdb
#切换用户
[roy@localhost postgresql-16.4]$ su - postgres_dky
Password:
su: Authentication failure
# 检查是否有用户 postgres_dky。可以用以下命令列出所有用户:
[roy@localhost postgresql-16.4]$ cat /etc/passwd | grep postgres_dky
postgres_dky:x:1001:1001::/home/postgres_dky:/bin/bash
# 有时用户账户可能被锁定。可以用如下命令检查账户状态:
# 用户 postgres_dky 的账户当前被锁定(Password locked)
[roy@localhost postgresql-16.4]$ sudo passwd -S postgres_dky
postgres_dky LK 2024-10-24 0 99999 7 -1 (Password locked.)
# 使用 sudo passwd 命令解除密码锁定状态
#但由于该用户没有设置密码,系统提示您密码将为空。您需要先设置一个密码,然后才能解锁用户
[roy@localhost postgresql-16.4]$ sudo passwd -u postgres_dky
Unlocking password for user postgres_dky.
passwd: Warning: unlocked password would be empty.
passwd: Unsafe operation (use -f to force)
[roy@localhost postgresql-16.4]$ su - postgres_dky
Password:
su: Authentication failure
# 使用以下命令设置一个新密码:
[roy@localhost postgresql-16.4]$ sudo passwd postgres_dky
Changing password for user postgres_dky.
New password:
BAD PASSWORD: The password is shorter than 8 characters
Retype new password:
passwd: all authentication tokens updated successfully.
[roy@localhost postgresql-16.4]$ su - postgres_dky
Password:
Last failed login: Thu Oct 24 14:15:56 CST 2024 on pts/0
There were 4 failed login attempts since the last successful login.
# 切换成功
[postgres_dky@localhost ~]$

执行初始化命令

[postgres_dky@localhost ~]$ /usr/local/my_pgsql16.4/bin/initdb -D /run/media/postgres/data
The files belonging to this database system will be owned by user "postgres_dky".
This user must also own the server process.The database cluster will be initialized with locale "en_US.UTF-8".
The default database encoding has accordingly been set to "UTF8".
The default text search configuration will be set to "english".Data page checksums are disabled.fixing permissions on existing directory /run/media/postgres/data ... ok
creating subdirectories ... ok
selecting dynamic shared memory implementation ... posix
selecting default max_connections ... 100
selecting default shared_buffers ... 128MB
selecting default time zone ... Asia/Shanghai
creating configuration files ... ok
running bootstrap script ... ok
performing post-bootstrap initialization ... ok
syncing data to disk ... okinitdb: warning: enabling "trust" authentication for local connections
initdb: hint: You can change this by editing pg_hba.conf or using the option -A, or --auth-local and --auth-host, the next time you run initdb.Success. You can now start the database server using:/usr/local/my_pgsql16.4/bin/pg_ctl -D /run/media/postgres/data -l logfile start

启动关闭数据库
注意,启动关闭需要保证是在我们postgres用户之下

[postgres_dky@localhost ~]$ /usr/local/my_pgsql16.4/bin/pg_ctl  -D /run/media/postgres/data -l logfile start
waiting for server to start.... done
server started

关闭数据库

/usr/local/my_pgsql16.4/bin/pg_ctl -D /run/media/postgres/data -l logfile stop

修改数据库密码

# 创建psql连接,这里需要在root用户下执行,否则会提示拒绝
[postgres_dky@localhost ~]$ su -
Password:
Last login: Thu Oct 24 09:35:54 CST 2024 on pts/0
[root@localhost ~]# ln -s /usr/local/my_pgsql16.4/bin/psql /usr/bin/psql
# 创建连接以后,在切回到pg数据库用户
[root@localhost ~]# su - postgres_dky
Last login: Thu Oct 24 14:17:13 CST 2024 on pts/0
[postgres_dky@localhost ~]$ psql -lList of databasesName    |    Owner     | Encoding | Locale Provider |   Collate   |    Ctype    | ICU Locale | ICU Rules |       Access privileges
-----------+--------------+----------+-----------------+-------------+-------------+------------+-----------+-------------------------------postgres  | postgres_dky | UTF8     | libc            | en_US.UTF-8 | en_US.UTF-8 |            |           |template0 | postgres_dky | UTF8     | libc            | en_US.UTF-8 | en_US.UTF-8 |            |           | =c/postgres_dky              +|              |          |                 |             |             |            |           | postgres_dky=CTc/postgres_dkytemplate1 | postgres_dky | UTF8     | libc            | en_US.UTF-8 | en_US.UTF-8 |            |           | =c/postgres_dky              +|              |          |                 |             |             |            |           | postgres_dky=CTc/postgres_dky
(3 rows)

使用psql工具访问数据库


[postgres_dky@localhost ~]$ psql -U postgres_dky -d postgres
psql (16.4)
Type "help" for help.postgres=# alter role postgres_dky with password 'your new password';
ALTER ROLE
postgres= exit

数据库的配置文件postgresql.conf

[root@localhost ~]# ls /run/media/postgres/data
base    pg_commit_ts  pg_hba.conf    pg_logical    pg_notify    pg_serial     pg_stat      pg_subtrans  pg_twophase  pg_wal   postgresql.auto.conf  postmaster.opts
global  pg_dynshmem   pg_ident.conf  pg_multixact  pg_replslot  pg_snapshots  pg_stat_tmp  pg_tblspc    PG_VERSION   pg_xact  postgresql.conf       postmaster.pid

开启远程访问
编辑postgresql.conf

在这里插入图片描述
:“

编辑pg_hba.conf
修改pg_hba.conf 添加远程访问的认证方式,未尾添加 host all all 0.0.0.0/0 md5

在这里插入图片描述
重启数据库

# start stop restart
/usr/local/my_pgsql16.4/bin/pg_ctl -D /run/media/postgres/data -l logfile restart

开放端口,提供给外部访问。

#查看已开放的端口
firewall-cmd --list-ports#开放
firewall-cmd --permanent --zone=public --add-port=5432/tcp#重启防火墙
firewall-cmd --reload

参考:centos离线使用源码安装Postgre SQL

方式二:多个rpm包,并且安装timescaledb

装备安装包

你需要准备这些包,以及一个libicu-50.2-4.el7_7.x86_64.rpm包,安装postgresql15-15.8-1PGDG.rhel7.x86_64.rpm需要libicu

[roy@localhost 138server]$ cd PostgreSQL/
[roy@localhost PostgreSQL]$ ls
libzstd-1.5.2-1.el7.x86_64.rpm                    postgresql15-devel-15.8-1PGDG.rhel7.x86_64.rpm    postgresql15-server-15.8-1PGDG.rhel7.x86_64.rpm
postgresql15-15.8-1PGDG.rhel7.x86_64.rpm          postgresql15-libs-15.8-1PGDG.rhel7.x86_64.rpm
postgresql15-contrib-15.8-1PGDG.rhel7.x86_64.rpm  postgresql15-llvmjit-15.8-1PGDG.rhel7.x86_64.rpm

安装libzstd

[roy@localhost PostgreSQL]$ sudo rpm -ivh libzstd-1.5.2-1.el7.x86_64.rpm
[sudo] password for roy:
Preparing...                          ################################# [100%]
Updating / installing...1:libzstd-1.5.2-1.el7              ################################# [100%]
[roy@localhost PostgreSQL]$ sudo rpm -ivh postgresql15-libs-15.8-1PGDG.rhel7.x86_64.rpm
warning: postgresql15-libs-15.8-1PGDG.rhel7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 73e3b907: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:postgresql15-libs-15.8-1PGDG.rhel################################# [100%]
[roy@localhost PostgreSQL]$ sudo rpm -ivh postgresql15-15.8-1PGDG.rhel7.x86_64.rpm
warning: postgresql15-15.8-1PGDG.rhel7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 73e3b907: NOKEY
error: Failed dependencies:libicu is needed by postgresql15-15.8-1PGDG.rhel7.x86_64

安装libicu

[roy@localhost v16]$ sudo rpm -ivh libicu-50.2-4.el7_7.x86_64.rpm
warning: libicu-50.2-4.el7_7.x86_64.rpm: Header V3 RSA/SHA256 Signature, key ID f4a80eb5: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:libicu-50.2-4.el7_7              ################################# [100%]

安装postgresql15-15.8-1PGDG和postgresql15-server-15.8-1PGDG

[roy@localhost PostgreSQL]$ sudo rpm -ivh postgresql15-15.8-1PGDG.rhel7.x86_64.rpm
warning: postgresql15-15.8-1PGDG.rhel7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 73e3b907: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:postgresql15-15.8-1PGDG.rhel7    ################################# [100%]
[roy@localhost PostgreSQL]$ sudo rpm -ivh postgresql15-server-15.8-1PGDG.rhel7.x86_64.rpm
warning: postgresql15-server-15.8-1PGDG.rhel7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 73e3b907: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:postgresql15-server-15.8-1PGDG.rh################################# [100%]

到/usr/pgsql-15/bin/路径下,初始化服务

[roy@localhost PostgreSQL]$ cd /usr/pgsql-15/bin/
[roy@localhost bin]$ ls
clusterdb   dropdb    pg_archivecleanup  pg_checksums    pg_ctl      pg_isready     pg_restore     pg_test_timing   pg_waldump                  postgresql-15-setup  reindexdb
createdb    dropuser  pg_basebackup      pg_config       pg_dump     pg_receivewal  pg_rewind      pg_upgrade       postgres                    postmaster           vacuumdb
createuser  initdb    pgbench            pg_controldata  pg_dumpall  pg_resetwal    pg_test_fsync  pg_verifybackup  postgresql-15-check-db-dir  psql
[roy@localhost bin]$ postgresql-15-setup initdb
Initializing database ... mkdir: cannot create directory ‘/var/lib/pgsql’: Permission denied
failed, see /var/lib/pgsql/15/initdb.log[roy@localhost bin]$ sudo postgresql-15-setup initdb
Initializing database ... OK

启动服务

systemctl enable postgresql-15  -- 设置为开机自启动systemctl start postgresql-15

在这里插入图片描述

查看服务状态
在这里插入图片描述

进入 /var/lib/pgsql/15/data/ 目录,更改pg_hba.conf 配置

在IP4 下增加

host    all            all            0.0.0.0/0            scram-sha-256

更改postgresql.conf 配置,开启如下配置

listen_addresses = '*'
port = 5432
[roy@localhost bin]$ sudo ls /var/lib/pgsql/15/data/
base              global  pg_commit_ts  pg_hba.conf    pg_logical    pg_notify    pg_serial     pg_stat      pg_subtrans  pg_twophase  pg_wal   postgresql.auto.conf  postmaster.opts
current_logfiles  log     pg_dynshmem   pg_ident.conf  pg_multixact  pg_replslot  pg_snapshots  pg_stat_tmp  pg_tblspc    PG_VERSION   pg_xact  postgresql.conf       postmaster.pid
[roy@localhost bin]$ sudo vi /var/lib/pgsql/15/data/pg_hba.conf
[roy@localhost bin]$ sudo vi /var/lib/pgsql/15/data/postgresql.conf

重启服务

systemctl restart postgresql-15  -- 重启

开放端口

firewall-cmd --permanent --add-port=5432/tcpfirewall-cmd --reload

修改密码

要找出 postgres 用户的密码,您可以尝试以下方法:

1. 默认密码

在很多情况下,PostgreSQL 的默认用户(postgres)没有设置密码。如果您是通过包管理器安装的 PostgreSQL,通常可以直接使用:

su - postgres

进入 postgres 用户后,可以在 PostgreSQL 命令行界面中设置密码。

2. 重置密码

如果您不知道密码,可以通过以下步骤重置它:

  1. 切换至 postgres 用户

    sudo su - postgres
    

    如果没有 sudo 权限,您可能需要先用 root 用户登录。

  2. 进入 PostgreSQL 命令行界面 ,修改密码

ALTER USER postgres WITH PASSWORD '123456'; 

在这里插入图片描述

然后输入新的密码。

  1. 退出 psql

    \q
    

重启服务

完成。

安装timescaledb

安装timescaledb是针对某一个数据库的,单独的数据库要专门创建timescaledb扩展。但是都是要先安装timescaledb服务

安装timescaledb服务

在上面方式二的步骤安装postgres之后就可以直接安装。没有出现依赖问题。

[roy@localhost PostgreSQL]$ sudo rpm -ivh timescaledb_15-2.10.0-1.rhel7.x86_64.rpm
[sudo] password for roy:
warning: timescaledb_15-2.10.0-1.rhel7.x86_64.rpm: Header V4 RSA/SHA1 Signature, key ID 73e3b907: NOKEY
Preparing...                          ################################# [100%]
Updating / installing...1:timescaledb_15-2.10.0-1.rhel7    ################################# [100%]

更改postgresql.conf 配置,开启如下配置

shared_preload_libraries = 'timescaledb'

重启服务

systemctl restart postgresql-15  -- 重启

测试的话,先可以给postgres数据库创建

  1. 切换到postgres用户
 sudo su - postgres

在这里插入图片描述
增加扩展

CREATE EXTENSION IF NOT EXISTS timescaledb;

出现下图代表扩展成功。
在这里插入图片描述

参考:CentOS 7离线安装Postgresql15.2+Timescaledb

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/web/59151.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

MyBatis xml 文件中 SQL 语句的小于号未转义导致报错

问题现象 在 MyBatis 的 xml 文件中添加了一个 SQL 语句 <select id"countXxx" resultType"int">select count(*) from t1 where count < 3 </select>启动 Spring Boot 应用程序后报错&#xff1a; Caused by: org.apache.ibatis.builde…

深入剖析输入URL按下回车,浏览器做了什么

DNS 查询 首先,是去寻找页面资源的位置。如果导航到https://example.com, 假设HTML页面被定位到IP地址为93.184.216.34 的服务器。如果以前没有访问过这个网站&#xff0c;就需要进行DNS查询。 浏览器向域名服务器发起DNS查询请求&#xff0c;最终得到一个IP地址。第一次请求…

ceph介绍和搭建

1 为什么要使用ceph存储 什么是对象存储&#xff1f; 对象存储并没有向文件系统那样划分为元数据区域和数据区域&#xff0c;而是按照不同的对象进行存储&#xff0c;而且每个对象内部维护着元数据和数据区域。因此每个对象都有自己独立的管理格式。 对象存储优点&#xff1a…

这些场景不适合用Selenium自动化!看看你踩过哪些坑?

Selenium是自动化测试中的一大主力工具&#xff0c;其强大的网页UI自动化能力&#xff0c;让测试人员可以轻松模拟用户操作并验证系统行为。然而&#xff0c;Selenium并非万能&#xff0c;尤其是在某些特定场景下&#xff0c;可能并不适合用来自动化测试。本文将介绍Selenium不…

AI大模型在尽职调查中的应用场景与客户案例

应用场景 1. 企业IPO尽职调查中的文档处理与合规审查 在券商投行进行企业IPO尽职调查过程中&#xff0c;企业需要提交大量的财务报表、历史沿革文件、法律合同等资料。这些文件涉及多个部门&#xff0c;往往存在信息分散、合规性复杂、数据量庞大等问题。思通数科的AI能力平…

[C++]内联函数和nullptr

> &#x1f343; 本系列为初阶C的内容&#xff0c;如果感兴趣&#xff0c;欢迎订阅&#x1f6a9; > &#x1f38a;个人主页:[小编的个人主页])小编的个人主页 > &#x1f380; &#x1f389;欢迎大家点赞&#x1f44d;收藏⭐文章 > ✌️ &#x1f91e; &#x1…

工业4.0时代下的人工智能新发展

摘要&#xff1a;随着德国工业4.0时代以及中国制造2025的提出&#xff0c;工业智能化的改革的时代正逐渐到来&#xff0c;然而我国整体工业水平仍然处于工业2.0水平。围绕工业4.0中智能工厂、智能生产、智能物流这三大主题&#xff0c;结合国内外研究现状&#xff0c;对人工智能…

一步一步从asp.net core mvc中访问asp.net core WebApi

"从asp.net core mvc中访问asp.net core WebApi"看到这个标题是不是觉得很绕口啊&#xff0c;但的确就是要讲一讲这样的访问。前面我们介绍了微信小程序访问asp.net core webapi(感兴趣的童鞋可以看看前面的博文有关WEBAPI的搭建)&#xff0c;这里我们重点不关心如何…

【Python】关于python中overload装饰器详解

Python不像C、Java等语言可以进行函数的重载。Python是不可以进行函数重载的。下面的例子&#xff0c;虽然我们定义了三个test函数&#xff0c;但是在局部命名空间下&#xff0c;只有一个test函数&#xff0c;就是最有一个&#xff0c;也就是说最后一个test覆盖了前两个test。 …

JVM学习之路(5)垃圾回收

目录 Java垃圾回收 方法区回收 方法区的回收 堆内存回收 引用计数法和可达性分析算法 查看GC Root 五种对象引用 软引用 ​编辑 弱引用 虚引用和终结器引用 垃圾回收算法&#xff1a; 垃圾回收算法的历史和分类 垃圾回收算法的评价标准 标记清除算法 复制算法 标记整理算法 分代…

ubuntu 20.04 NVIDIA驱动、cuda、cuDNN安装

1. NVIDIA驱动 系统设置->软件和更新->附加驱动->选择NVIDIA驱动->应用更改。该界面会自动根据电脑上的GPU显示推荐的NVIDIA显卡驱动。 运行nvidia-smi: NVIDIA-SMI has failed because it couldnt communicate with the NVIDIA driver. Make sure that the lat…

Ubuntu18.04+ROS环境+moveit UR5机械臂仿真

目录 仿真环境&#xff1a; 1.下载Universal Robots机器人功能包 2.运行 Gazebo中的仿真模型 3.运行moveit运动规划 4.运行rviz并进行轨迹规划 仿真环境&#xff1a; 本文使用版本&#xff1a;Ubuntu18.04 ros版本&#xff1a;ros-melodic-desktop-full&#xff0c;安装…

C++11新特性(二)

目录 一、C11的{} 1.初始化列表 2.initializer_list 二、可变参数模版 1.语法与原理 2.包扩展 3.empalce接口 三、新的类功能 四、lambda 1.语法 2.捕捉列表 3.原理 五、句装器 1.function 2.bind 一、C11的{} 1.初始化列表 C11以后想统⼀初始化⽅式&#xff0…

Flutter 小技巧之 Shader 实现酷炫的粒子动画

在之前的《不一样的思路实现炫酷 3D 翻页折叠动画》我们其实介绍过&#xff1a;如何使用 Shader 去实现一个 3D 的翻页效果&#xff0c;具体就是使用 Flutter 在 3.7 开始提供 Fragment Shader API &#xff0c;因为每个像素都会过 Fragment Shader &#xff0c;所以我们可以通…

实现3D热力图

实现思路 首先是需要用canvas绘制一个2D的热力图&#xff0c;如果你还不会&#xff0c;请看json绘制热力图。使用Threejs中的canvas贴图&#xff0c;将贴图贴在PlaneGeometry平面上。使用着色器材质&#xff0c;更具json中的数据让平面模型 拔地而起。使用Threejs内置的TWEEN&…

2. Sharding-JDBC广播表和绑定表操作

1. 广播表实战 ⼴播表概念 1. 指所有的分⽚数据源中都存在的表&#xff0c;表结构和表中的数据在每个数据库中均完全⼀致。 2. 适⽤于数据量不⼤且需要与海量数据的表进⾏关联查询的场景。 3. 例如&#xff1a;字典表、配置表。注意 1. 分库分表中间件&#xff0c;对应的数据…

【C++打怪之路Lv13】- “继承“篇

&#x1f308; 个人主页&#xff1a;白子寰 &#x1f525; 分类专栏&#xff1a;重生之我在学Linux&#xff0c;C打怪之路&#xff0c;python从入门到精通&#xff0c;数据结构&#xff0c;C语言&#xff0c;C语言题集&#x1f448; 希望得到您的订阅和支持~ &#x1f4a1; 坚持…

【科研积累】大模型的认知笔记

1 认识大模型 大模型是人工智能发展的一个里程碑&#xff0c;人工智能包括机器学习&#xff0c;机器学习包括监督学习、无监督学习和强化学习&#xff0c;深度学习神经网络也是机器学习的一个分支&#xff0c;生成式人工智能是深度学习的一个子集&#xff0c;ChatGPT和Stable …

mac 中python 安装mysqlclient 出现 ld: library ‘ssl‘ not found错误

1. 出现报错 2. 获取openssl位置 brew info openssl 3. 配置环境变量&#xff08;我的是在~/.bash.profile&#xff09; export LDFLAGS"-L/opt/homebrew/Cellar/openssl3/3.4.0/lib" export CPPFLAGS"-I/opt/homebrew/Cellar/openssl3/…

自动驾驶系列—自动驾驶中的短距离感知:超声波雷达的核心技术与场景应用

&#x1f31f;&#x1f31f; 欢迎来到我的技术小筑&#xff0c;一个专为技术探索者打造的交流空间。在这里&#xff0c;我们不仅分享代码的智慧&#xff0c;还探讨技术的深度与广度。无论您是资深开发者还是技术新手&#xff0c;这里都有一片属于您的天空。让我们在知识的海洋中…