# cd gitblit-1.8.0
# ./gitblit.sh
# nohup ./gitblit.sh &
postgres 資料庫啟動:
systemctl restart postgersql
查詢postgres的配置檔案:
sudo find / -name postgresql.conf
-- 查詢活躍的連線數
select count(1) from pg_stat_activity;
-- 查詢最大的連線數
show max_connections
修改最大連線數
1 找的psotgressql.conf 檔案
sudo find / -name postgresql.conf
2 找到 max_connections 這一項
3 修改後面的值,比如修改為1000
4 重啟資料庫服務
systemctl restart postgresql
防火牆啟動
systemctl restart iptables.service
檢視linux版本命令:
1、# uname -a (linux檢視版本當前作業系統核心資訊)
2、# cat /proc/version (linux檢視當前作業系統版本資訊)
3、# cat /etc/issue 或 cat /etc/redhat-release (linux檢視版本當前作業系統發行版資訊)
4、# cat /proc/cpuinfo (linux檢視cpu相關資訊,包括型號、主頻、核心資訊等)
5、# getconf long_bit (linux檢視版本多少位)
6、# lsb_release -a (centos 6.9版本需要安裝lsb,centos 7.0以上直接可以使用,網上都說linux都支援,我只驗證過centos系統)
重啟防火牆
systemctl restart iptables
2 psotgres 匯入匯出資料:
scp -p 65088 [email protected]:/data/postgres/backup/netbus_20200922102239.dump ./
修改檔案授權:
chown -r postgres. ***.dump
postgres匯出:
/data/pgsql/bin/pg_dump -p 64523 -u postgres -d netbus -f c > /data/postgres/backup/netbus_`date +%y%m%d%h%m%s`.dump
postgres匯入:
pg_restore -u postgres -d test test.dump | psql
重啟postgres資料庫:
systemctl restart postgresql
Linux下mysql操作命令大全
通用連線命令 mysql uroot p123456 顯示資料庫 mysql show databases 建立資料庫 mysql create database name 選擇資料庫 mysql use databasename 顯示當前mysql版本和當前日期 mysql select vers...
linux的vim操作命令大全
命令模式 命令作用 a在游標所在的字元後插入 a在游標所在的行尾插入 i在游標所在的字元前插入 i在游標所在的行首插入 o在游標下插入新行 o在游標上插入新行 輸入模式 輸入模式主要用於文字編輯。編輯模式 命令描述 w儲存不退出。w 新檔名 把檔案另存為新檔案。q不儲存退出。wq儲存後退出。強制。q...
Linux 詳細命令操作大全二
linux 詳細命令操作大全一 操作符號 許可權 例子 格式二 chmod 數字 檔名 例子 022 轉成二進位制 000010 010 取二進位制的相反數 111101 101 每乙個組就代表乙個角色,組中每乙個值代表乙個許可權,1代表有許可權,0代表沒有許可權 rwx r x r x 所以資料夾...