psql: command not found

在默认安装完成PostGreSQL后

在执行createdb,psql后,可能会出现command not found

只需要在添加PostGreSQL安装的路径+bin目录

例如:PATH=$PATH:/app/PostgreSQL/9.4/bin

再执行psql

bash-3.2$ psql

Password:
psql.bin (9.4.0)
Type "help" for help.

No entry for terminal type "vt100";
using dumb terminal settings.
postgres=# SELECT 2+2;
?column?
----------
4
(1 row)

postgres=#

完成。

时间: 2024-10-11 23:02:17

psql: command not found的相关文章

“psql: could not connect to server: Connection refused” Error when connecting to remote database

问题: I am trying to connect to a postgres database installed in a remote server using the following command: psql -h host_ip -U db_username -d db_name This the error that occurs: psql: could not connect to server: Connection refused Is the server runn

postgresql基本语句

preface,熟悉pgsql sql Language article disorder; 1,pgsql数据库控制台Cli(command line interface) help mannual; 注意\g == ; terminate with semicolon to execute query SQL command help psql command help 2,

Postgres study reminder ,lesson 1

Just want to learn the postgres database in details from now on, try to write this blog to push myself working on it. This is the first lesson of my series for postgres, Subject is very simple, prepare the postgres ENV , and try to create a new datab

Working with Data Source 12

In command line, psql helps you to manage and connect the database:1 1. Type psql in command line to enter the psql command line tool. 2. In the shell, type \q to exit. 3. In the psql tool, we can create a database by directly typing: CREATE DATABASE

docker安装hive笔记

前两篇文章介绍了docker的基本命令如何安装hadoop 那么大家会比较了解docker的基本语法的安装过程.那么咱们今天来一起安装一下hive. 安装 1.下载gitHub,地址:https://github.com/prasanthj/docker-hive-on-tez.如果背墙了,可以选择下载zip.进入目录之后就能看见如下内容: @~/git/github/docker-hive-on-tez-master $ ls Dockerfile datagen.py hive-log4j.

安装和配置Sentry(收录)

安装和配置Sentry 本文主要记录安装和配置Sentry的过程,关于Sentry的介绍,请参考 Apache Sentry架构介绍 . 1. 环境说明 系统环境: 操作系统:CentOs 6.6 Hadoop版本: CDH5.4 运行用户:root 这里,我参考 使用yum安装CDH Hadoop集群 一文搭建了一个测试集群,并选择cdh1节点来安装sentry服务. 2. 安装 在cdh1节点上运行下面命令查看Sentry的相关组件有哪些: $ yum list sentry* sentry

prometheus使用postgresql-adapter连接postgresql

概述 Prometheus使用postgresql需要使用postgresql-adapter进行数据转换.在安装postgresql-adapter之前需要安装2个扩展:pg_prometheus和timescaledb 官方推荐使用PostgreSQL, pg_prometheus,和TimescaleDB打包在一起的容器,但对于使用已有的postgresql来说并不合适,故需要手动编译安装. 环境准备 使用os为:redhat 7.4 假设已经安装好postgresql,本次使用的post

rails连接postgresql错误:psql: 致命错误: 用户 "postgres" Ident 认证失败

psql: 致命错误:  用户 "postgres" Ident 认证失败 1安装好postgresql数据库后需要初始化及一些配置rails项目才能连接postgresql 安装好postgresql数据后(yum命令直接安装的) 第一步:初始化数据库 #service postgresql initdb (说明:初始化后默认postgresql数据库有一个默认的用户postgres(密码为空)和一个默认创建的postgres数据库) 第二步:启动数据库 #service postg

PSQL工具使用技巧

psql功能强大,技巧怎么用只能后续慢慢补充了,看一个工具先看怎么用help$ psql #连接到数据库服务器,可以在其中输入相应的SQL语句或者psql的命令,psql的命令都以\开始$ \l #列出所有的数据库$ \d #查看表的结构$ \d 表名 #查看指定表的具体结构$ create database 新数据库名 #创建新的数据库$ \c 已经有的数据库名 #切换当前数据库到指定的数据库$ psql -h 主机名/ip地址 -p 端口号 数据库名称 用户名称 #连接到指定的数据库$ \d