新增postgres使用者和使用者組:
groupadd postgres
useradd -g postgres postgres
echo "postgres" |passwd --stdin postgres
tar -zxvf postgresql-9.6.12-1-linux-x64-binaries.tar.gz
mv pgsql /opt
建立資料檔案目錄
mkdir /data/pgsql_data/
chown postgres:postgres /data/pgsql_data/
chown postgres:postgres /opt/pgsql -r
echo "export path=$path:/opt/pgsql/bin">>/etc/profile
source /etc/profile
切換使用者 postgres,並執行初始化操作
/opt/pgsql/bin/initdb -e utf8 -d /data/pgsql_data/
啟動資料庫
/opt/pgsql/bin/pg_ctl -d /data/pgsql_data/ -l /data/pgsql_data/pg_server.log start
登陸資料庫
psql
新增新使用者和建立資料庫
create user admin with password 'chengce243';
create database mydb with encoding='utf8' owner=admin;
驗證登入
psql -u admin -d mydb
停止postgresql的命令為:
/opt/pgsql/bin/pg_ctl -d /data/pgsql_data/ stop
pgsql二進位制字元
postgresql 8.1 中文文件 prev fast backward chapter 8.資料型別 fast forward next bytea 資料型別允許儲存二進位制字串。參閱table 8 6。table 8 6.二進位制資料型別 名字儲存空間 描述bytea 4 位元組加上實際的二...
96 計數二進位制子串
給定乙個字串 s,計算具有相同數量0和1的非空 連續 子字串的數量,並且這些子字串中的所有0和所有1都是組合在一起的。重複出現的子串要計算它們出現的次數。示例 1 輸入 00110011 輸出 6 解釋 有6個子串具有相同數量的連續1和0 0011 01 1100 10 0011 和 01 請注意,...
二進位制如何安裝mysql 二進位制安裝mysql
1.建立安裝目錄 wget 3.解壓二進位製包 root db01 tar xf mysql 5.6.40 linux glibc2.12 x86 64.tar.gz 4.移動解壓目錄 5.做mysql軟連線 6.建立mysql使用者 root db01 useradd mysql s sbin n...