這是本文件的舊版!
PVE 內安裝 phplist
- 直接選用 CT Templates - turnkey-phplist (16.0-1)
- 啟動後就安裝好 phpList - v3.5.3
相關設定
將資料庫開放外部主機存取
- 因為預設資料庫並不對外
netstat -ant | grep 3306
tcp 0 0 127.0.0.1:3306 0.0.0.0:* LISTEN
- 必須調整 MariaDB 的設定 bind-address 可以外部主機存取
vi /etc/mysql/mariadb.conf.d/50-server.cnf
: # localhost which is more compatible and is not less secure. bind-address = 0.0.0.0 :
- 重新啟動服務
systemctl restart mariadb