一、類Debian系統中,更新apt源時出現「W: GPG 錯誤:http://mirrors.aliyun.com/ubuntu xenial InRelease: 因爲沒有公鑰,沒法驗證下列簽名: NO_PUBKEY 40976EAF437D05B5 NO_PUBKEY 3B4FE6ACC0B21F32」,使用命令apache
(1)gpg --keyserver keyserver.ubuntu.com --recv 40976EAF437D05B5 #40976EAF437D05B5 爲上述系統返回的NO_PUBKEY碼ubuntu
(2)gpg -a --export 40976EAF437D05B5 | apt-key add -服務器
另附,國內可用key server列表:ide
keyserver.ubuntu.comspa
pgp.mit.edu.net
subkeys.pgp.netserver
www.gpg-keyserver.deblog
以後即可以apt-get update更新apt源了ssl
二、類Debian系統中,網卡配置文件在/etc/network/interfaces,get
(1)動態獲取的配置方法:
auto eth0
iface eth0 inet dhcp
(2)靜態分配的配置方法:
auto eth0
iface eth0 inet static
address 192.168.0.1
netmask 255.255.255.0
gateway 192.168.0.1
根據配置要求(是動態分配仍是自動獲取)修改該配置文件保存。
三、使用apache2搭建https服務器,設置完證書重啓apache2後,登陸https沒法鏈接,檢查沒有443端口,須要拷貝/etc/apache2/mod_available中的socache_shmcb.load ssl.conf ssl.load到/etc/apache2/mod_enabled,以後重啓apache2