答:安装过程较长,建议使用screen或nohup
screen:
- yum -y install screen perl
- screen -S cpanel
- cd /home
- wget -N http://httpupdate.cpanel.net/latest
- sh latest 2>&1 | tee ./cPanel-Install.log
复制代码
nohup:
- yum -y install perl
- cd /home
- wget -N http://httpupdate.cpanel.net/latest
- nohup sh latest > ./cPanel-Install.log 2>&1
&
1、ssh登陆服务器
ssh root@IP
chkconfig iptables off service iptables stop
2、确定服务器主显IP地址
curl -L http://cpanel.net/showip.cgi
3、卸载冲突的软件
yum groupremove “FTP Server” “GNOME Desktop Environment”"KDE (K Desktop Environment)” “Mail Server”"Mono” “Web Server” “X Window System”
4、安装screen软件
yum install screen
5、用screen软件创建一个名为cPanel的新窗口
screen -S cpanel
6、进入home目录
cd /home
7、用wget下载cPanel的安装脚本latest
wget -N http://httpupdate.cpanel.net/latest
8、 执行安装脚本
sh latest
9、手动激活cPanel授权(非必要步骤)
/usr/local/cpanel/cpkeyclt
注:在安装cPanel的时候,可能出现的一些问题:
1、主机名问题:
hostname localhost.localdomain
2、重新执行安装:
rm -rf /root/installer.lock
sh latest 执行安装脚本
4、关闭SELinux
编辑 /etc/selinux/config文件
修改为 SELINUX=disabled
5、停用防火墙
chkconfig iptables off
service iptables stop
6.无法和cpanel.net建立连接,ping提示ping: unknown host cpanel.net,这是dns的问题,修改/etc/resolv.conf,将nameserver 设置为 8.8.8.8
cpanel安装时出现这个错误
Fatal! Perl must be installed before proceeding!
可以先
yum install perl
然后再重新安装就可以了