1.ubuntu部署TimescaleDB
2.Ubuntu 16.04 安装 postgresql 9.3
3.Ubuntu 22.04 安装 pgAdmin 图形管理界面
4.Ubuntu14.04安装PostgreSQL9.2
ubuntu部署TimescaleDB
在Ubuntu系统中部署TimescaleDB,首先确保PostgreSQL版本为.4或更高,或者.0或更高版本。需要注意的是,TimescaleDB不再支持PostgreSQL 9.6.3及以上版本以及.9及以上版本,并将在后续版本中移除。淘宝客劫持源码要部署TimescaleDB,需要添加PostgreSQL的第三方仓库以获取最新版本的PostgreSQL包。
使用以下命令添加PostgreSQL的仓库:
ubuntu@VM-0--ubuntu:~# sudo echo "deb http://apt.postgresql.org/pub/repos/apt/ $(lsb_release -c -s)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg.list
ubuntu@VM-0--ubuntu:~# sudo wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
ubuntu@VM-0--ubuntu:~# sudo apt-get update
随后,添加TimescaleDB的PPA:
ubuntu@VM-0--ubuntu:~# sudo add-apt-repository ppa:timescale/timescaledb-ppa
ubuntu@VM-0--ubuntu:~# sudo apt-get update
为了适应特定的PostgreSQL版本,安装相应的TimescaleDB包:
ubuntu@VM-0--ubuntu:~# sudo apt install timescaledb-postgresql-
执行“timescaledb-tune”(作为timescaledb-tools包的一部分,推荐依赖项)以更新TimescaleDB配置设置:
ubuntu@VM-0--ubuntu:~# sudo timescaledb-tune --quiet --yes
重启PostgreSQL服务以应用更改:
ubuntu@VM-0--ubuntu:~# sudo service postgresql restart
为Postgres用户设置密码:
ubuntu@VM-0--ubuntu:~$ sudo -u postgres psql postgres
psql (.2 (Ubuntu .2-2.pgdg.+1))
Type "help" for help.
postgres=# \password postgres
Enter new password: #输入密码
Enter it again: #确认密码
postgres=# \q #退出
修改登录权限设置:
ubuntu@VM-0--ubuntu:~# sudo vim /etc/postgresql//main/pg_hba.conf
# Database administrative login by Unix domain socket
# local all postgres md5
# local all postgres peer #peer方式允许管理员账号通过socket连接,用-h指定socket目录,(default: "/var/run/postgresql")
# TYPE DATABASE USER ADDRESS METHOD
# "local" is for Unix domain socket connections only
local all all peer
# IPv4 local connections:
host all all .0.0.1/ md5
host all all .0.0.1/ md5
进行登录测试:
ubuntu@VM-0--ubuntu:~$ psql -h /var/run/postgresql -U postgres -W
Password: #输入密码
psql (.2 (Ubuntu .2-2.pgdg.+1))
Type "help" for help.
Ubuntu . 安装 postgresql 9.3
使用Ubuntu .安装PostgreSQL 9.3的步骤如下:
首先,通过快捷键Ctrl+Alt+t启动终端。
接着,输入指令wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -来下载并添加公钥。kubelet 1.8源码分析
随后,输入sudo gedit /etc/apt/sources.list命令,打开并编辑apt源列表文件。
在文件末尾添加以下内容:deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main,确保PostgreSQL 9.3的软件包能够被APT发现。
执行sudo apt-get update,更新APT索引库,以获取最新软件包信息。数字签名 源码
最后,输入sudo apt-get install postgresql-9.3命令,安装PostgreSQL 9.3版本。
完成安装后,回到根目录,使用命令etc/init.d/postgresql start启动PostgreSQL服务。
Ubuntu . 安装 pgAdmin 图形管理界面
Ubuntu . 上的 PostgreSQL 数据库管理界面管理利器 - pgAdmin,安装和配置过程如下:
首先,nba网站后台源码确保系统上安装了 curl,因为我们需要它来获取包存储库的公钥,通过命令行输入:
1. 安装 curl:
sudo apt-get install curl
接着,配置 pgAdmin 的 APT 包存储库,通过以下步骤:
2. 添加 pgAdmin APT 存储库:
使用 curl 命令获取公钥并安装:
curl -fsSL https://download.postgresql.org/pub/repos/apt/repo-key.gpg | sudo apt-key add -
创建配置文件:
sudo echo "deb https://download.postgresql.org/pub/repos/apt/ $(lsb_release -cs)-pgdg main" | sudo tee /etc/apt/sources.list.d/pgadmin.list
然后安装 pgAdmin:
3. 安装 pgAdmin:
sudo apt-get update && sudo apt-get install pgadmin4
安装完成后,为 Web 接口设置用户账户,执行:
4. 配置 Web 界面用户:
运行 /usr/pgadmin4/bin/setup-web.sh 脚本,输入相关信息,串口调试c 源码如邮件地址、密码,同时会自动重启 Apache 服务。
现在,可以通过浏览器访问管理界面:
5. 访问 pgAdmin 界面:
在浏览器中输入:
http://{ IP-Address-of-Your-System}/pgadmin4
登录后,pgAdmin 便为您的 PostgreSQL 数据库提供了便捷的管理界面。
6. 连接 PostgreSQL 服务器:
在 pgAdmin 界面中,点击服务器图标,注册新服务器,填写 General 和 Connection 信息,保存连接。
就这样,您已经在 Ubuntu . 上成功安装并配置了 pgAdmin,可以高效地管理 PostgreSQL 数据库了。
Ubuntu.安装PostgreSQL9.2
在 Ubuntu ..4 LTS 环境下,通过 VM 虚拟机安装 PostgreSQL 9.2。首先,安装 make 工具,可选择跳过安装。
开始安装 PostgreSQL,步骤如下:
1. 添加源并更新。
# sudo sh -c 'echo "deb $(lsb_release -cs)-pgdg main" >/etc/apt/sources.list.d/pgdg.list'
# apt-get update
确保使用正确的版本代号。
2. 下载密钥。
# wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add -
3. 安装 PostgreSQL 9.2。
# sudo apt-get install postgresql-9.2
安装过程中将自动处理依赖和更新。
4. 配置远程访问。
安装完成后,通过以下命令为 PostgreSQL 用户设置密码:
postgres#\password postgres
最后,需要编辑两个配置文件:postgresql.conf 和 pg_hba.conf,以允许远程访问。
成功完成以上步骤后,即可在 Ubuntu ..4 LTS 上安装和配置 PostgreSQL 9.2。