Poatgres配置安裝pgagent

陳洪光發表於2019-12-19

安裝cmake

# cd /home
# wget 
# tar -zxvf cmake-3.16.0.tar.gz
# cd /home/cmake-3.16.0/
# sudo apt-get install -y g++
# sudo apt-get install -y libssl-dev
# ./bootstrap
# make
# make install


安裝wxgtk

# sudo apt-get install -y python-wxgtk4.0
# sudo apt-get install -y boost*
# wget  
# mkdir -p /home/wxWidgets-3.1.3
# cd /home/wxWidgets-3.1.3
# vi ~/.profile
PATH=$PATH:$HOME/bin:/usr/local/wxWidgets-3.1.3/bin
export LD_LIBRARY_PATH=/usr/local/wxWidgets-3.1.3/lib:$LD_LIBRARY_PATH
# source ~/.profile
# sudo apt-get install -y gtk*
# ./configure --enable-shared=no --enable-unicode=yes --prefix=/usr/local/wxWidgets-3.1.3/
# make && make install


安裝pgagent

下載地址:

# cd /home
# rz
# tar -zxvf pgagent-8b7ec04.tar.gz
# cd /home/pgagent-8b7ec04
# source /home/postgres/.profile
# cmake ./
# make
# make install
postgres=# create extension pgagent ;
CREATE EXTENSION

$ pgagent  hostaddr=127.0.0.1  dbname=postgres user=postgres password=postgres



來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/25357621/viewspace-2669440/,如需轉載,請註明出處,否則將追究法律責任。

相關文章