該篇文章轉載自:https://jalena.bcsytv.com/archives/1796(親測可用),僅用來記錄學習php
# EPEL repository yum install -y epel-release yum-utils yum-fastestmirror python-pip python-wheel yum upgrade python-setuptools pip install --upgrade pip # Update OS yum -y update
# 獲取安裝源地址:https://yum.postgresql.org/repopackages.php#pg96 yum install -y https://download.postgresql.org/pub/repos/yum/9.6/redhat/rhel-7-x86_64/pgdg-centos96-9.6-3.noarch.rpm # 清理緩存 yum clean all # 查找當前最新的版本 yum -y search postgresql96 yum list | grep postgresql96 # 安裝 yum -y install postgresql96-server # 查看安裝好的服務名 systemctl -l | grep postgresql systemctl list-unit-files | grep postgresql # 初始化數據庫 find / -name postgresql*-setup /usr/pgsql-9.6/bin/postgresql96-setup initdb # 設置開機啓動 systemctl enable postgresql-9.6 # 啓動數據庫 systemctl start postgresql-9.6 # 查看服務運行狀況 systemctl status postgresql-9.6 # 中止服務 systemctl stop postgresql-9.6 # 重置超級管理員密碼 su - postgres -c psql alter user postgres with password 'new password'; # 查看用戶 \du # 查看幫助 \? # 退出 \q # 開啓外部訪問 # FAQ:https://www.postgresql.org/docs/9.6/static/auth-pg-hba-conf.html find / -name pg_hba.conf echo "host odoo all 0.0.0.0/0 md5" >> /var/lib/pgsql/9.6/data/pg_hba.conf # 開放防火牆postgresql服務 firewall-cmd --permanent --get-services | grep postgresql # 查看防火牆規則文件是否存在 firewall-cmd --add-service=postgresql --permanent # 重載防火牆 firewall-cmd --reload # 查看是否開啓 firewall-cmd --query-service postgresql firewall-cmd --list-services firewall-cmd --list-all
# 添加Odoo 10 源 yum-config-manager --add-repo=https://nightly.odoo.com/10.0/nightly/rpm/odoo.repo # 安裝Odoo 10 yum update && yum -y install odoo # 生成配置文件 odoo --save --config myodoo.cfg --stop-after-init # 設置開機啓動 systemctl enable odoo # 修改配置 vi /etc/odoo/odoo.conf # 啓動Odoo systemctl start odoo # 重啓Odoo systemctl restart odoo # 中止Odoo systemctl stop odoo # 檢查運行狀況 systemctl status odoo ps aux | grep odoo # 查看運行日誌 tail -f /var/log/odoo/odoo-server.log # 開啓防火牆 firewall-cmd --zone=public --add-port=8069/tcp --permanent # 重載規則 firewall-cmd --reload # 查看是否生效 firewall-cmd --list-all
打開IP:8069,根據頁面提示輸入數據庫名稱等信息初始化Odoo等待Odoo初始化完畢,就能夠驗證了!html
# 切換到Odoo用戶 su - odoo # 進入Odoo Shell python /usr/bin/odoo shell -c /etc/odoo/odoo.conf -d odoo
打印self.name
# https://github.com/wkhtmltopdf/wkhtmltopdf/releases/0.12.2.1/ yum -y install https://github.com/wkhtmltopdf/wkhtmltopdf/releases/download/0.12.2.1/wkhtmltox-0.12.2.1_linux-centos7-amd64.rpm # 測試 wkhtmltopdf -V
# 安裝fontconfig、ttmkfdir yum -y install fontconfig ttmkfdir # 查看當前字體 fc-list # 建立中文字體存放目錄 mkdir /usr/share/fonts/chinese # 選擇上傳的字體 rz # 設置權限 chmod -R 755 /usr/share/fonts/chinese # 搜索字體 ttmkfdir -e /usr/share/X11/fonts/encodings/encodings.dir # 編輯字體配置文件(見結尾圖) vim /etc/fonts/fonts.conf fc-cache fc-list fc-list :lang=zh