因?qū)毸J(rèn)部署目錄為 www,請檢查數(shù)據(jù)盤的掛載目錄
數(shù)據(jù)盤掛載情況如下:
1.數(shù)據(jù)盤未格式化,請手動格式掛載
2.數(shù)據(jù)盤已掛載非www目錄,請修改掛載目錄
我司新一代云CentOS6版本以及其它操作系統(tǒng)模版需手動格式掛載,
CentOS7版本通過腳本默認(rèn)掛載目錄為home,手動修改掛載目錄
此教程以CentOS 7作為部署示例,為新創(chuàng)建的云主機
通過VNC或SSH登錄云主機,修改數(shù)據(jù)盤的掛載操作
1.移除rc.local 自動掛載腳本
sed -i '/mount.sh/s/^sh/#sh/g' /etc/rc.local
2.修改掛載目錄,添加開機掛載
mount | grep home #檢查數(shù)據(jù)盤有無掛載在home目錄下,如有可執(zhí)行以下操作
umount /home
mkdir /www
mount -t ext3 /dev/mapper/Xvdbgroup-xvdb1 /www
echo "/dev/mapper/Xvdbgroup-xvdb1 /www ext3 defaults 0 0">>/etc/fstab
CA證書庫的更新
yum upgrade ca-certificates
EPEL庫的安裝
yum install epel-release
sed -i 's/^metalink/#metalink/g' /etc/yum.repos.d/epel.repo
sed -i 's/^#baseurl/baseurl/g' /etc/yum.repos.d/epel.repo
使用pip國內(nèi)源
mkdir ~/.pip
cat >> ~/.pip/pip.conf <<EOF
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = https://mirrors.aliyun.com
EOF
在終端下運行寶塔安裝腳本
yum install -y wget && wget -O install.sh http://download.bt.cn/install/install_6.0.sh && sh install.sh
故障處理:
1.寶塔安裝過程中在PIP下載第三方庫時報錯files.pythonhosted.org 請求超時的處理
HTTPSConnectionPool(host='files.pythonhosted.org', port=443): Read timed out
修改pip庫的下載源為國內(nèi)即可
在用戶家目錄創(chuàng)建 pip.conf,以下示例為阿里云PIP源
mkdir ~/.pip
cat >> ~/.pip/pip.conf <<EOF
[global]
index-url = https://mirrors.aliyun.com/pypi/simple/
[install]
trusted-host = https://mirrors.aliyun.com
EOF
2. 在安裝EPEL后,使用yum安裝軟件包時提示EPEL問題,
Cannot retrieve metalink for repository: epel/x86_64. Please verify its path and try again
修改epel.conf 所使用的源路徑
sed -i 's/^metalink/#metalink/g' /etc/yum.repos.d/epel.repo
sed -i 's/^#baseurl/baseurl/g' /etc/yum.repos.d/epel.repo