Ubuntu[1]安装Vesta Control Panel
参考:http://www.5013.org/archives/819
1)登录
ssh ubuntu@139.199.9.173 ubuntu@139.199.9.173's password:
重装系统以后无法登录。 @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @ WARNING: REMOTE HOST IDENTIFICATION HAS CHANGED! @ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ rm /Users/qiongyanzhu/.ssh/known_hosts 就可以登录了。
2)安装
2.1)
curl -O http://vestacp.com/pub/vst-install.sh
{
指令:curl
在linux中curl是一个利用URL规则在命令行下的文件传输工具,是一款很强大的http命令行工具。它支持文件的上传和下载,是综合传输工具,但按传统,习惯称url为下载工具。
语法:# curl [option] [url]
-O/--remote-name 把输出写到该文件中,保留远程文件的文件名
}
2.2)
bash vst-install.sh
Error: this script can only be executed by root
你要用root登录的话$ sudo su passwd root $ vi /etc/ssh/sshd_config 把里面那行PermitRootLogin删掉
2.3)
sudo bash vst-install.sh [sudo] password for ubuntu:
Following software will be installed on your system: - Nginx Web Server - Apache Web Server (as backend) - Bind DNS Server - Exim mail server - Dovecot POP3/IMAP Server - MySQL Database Server - Vsftpd FTP Server - Iptables Firewall + Fail2Ban
Please enter admin email address: 156463617@qq.com
Please enter FQDN hostname [localhost]: localhost
Congratulations, you have just successfully installed Vesta Control Panel
2.4)
然后通过网站登录,https://10.135.XX.XX:8083
username: admin
password: XXXX
3) 错误解决
前台创建的mysql,在后台能使用用户登录,前台则无法登录phpMyAdmin
/etc/phpmyadmin/config.inc.php
修改用户名、密码
$cfg['Servers'][$i]['controluser'] = '';
$cfg['Servers'][$i]['controlpass'] = '';
重启vesta
sudo service vesta restart