如果安装过程提示:Please select the mail server configuration type that best meets your needs. 则选择No configuration。
安装完毕即可通过主机当前ip加上端口访问,如http://192.168.11.33:8006
用户名为root,密码为Debian体系的root密码 配置固定静态IP
编辑/etc/network/interfaces 文件,配置当前使用的网络接口为静态IP地址,如:
iface vmbr0 inet static
address 192.168.1.100 # 你想要设置的静态IP地址
netmask 255.255.255.0 # 子网掩码
gateway 192.168.1.1 # 网关地址(通常是路由器IP)
bridge_ports eth0 # 物理网络接口(可以通过ifconfig查询)
bridge_stp off
bridge_fd 0
dns-nameservers 114.114.114.114 8.8.8.8 # DNS 服务器地址