GNOME
apt-get install ubuntu-desktop
KDE
apt-get install kubuntu-desktop
xfce
apt-get install xubuntu-desktop
install VNC
apt-get install vnc4server
reboot
/opt/bitnami/apps/wordpress/bnconfig --disable_banner 1
Restart Web Server:
If using Apache, execute the command below:
/opt/bitnami/ctlscript.sh restart apache
If using NGINX, execute the command below:
/opt/bitnami/ctlscript.sh restart nginx
下载密钥文件XXX.pem。
打开Xshell,工具--》用户密钥管理者,导入XXX.pem。
新建--》用户身份验证
方法:Public Key。
用户名:
<div>
<div> Amazon Linux,用户名称是 ec2-user。
RHEL5,用户名称是 root 或 ec2-user。
Ubuntu,用户名称是 ubuntu。
Fedora,用户名称是 fedora或 ec2-user。
SUSE Linux,用户名称是 root 或 ec2-user。</div>
</div>
其他系统具体需查看系统日志。
选择用户密钥,确定。
SSH切换到 root
sudo -i
修改密码
passwd root
修改SSH配置文件
vi /etc/ssh/sshd_config
允许密码登录 将注释去掉并修改成yes
PermitRootLogin yes
PasswordAuthentication yes
重启SSH服务或者重启服务器
- CentOS6
临时关闭
service iptables stop
禁止开机启动
chkconfig iptables off
- CentOS7默认使用firewalld
临时关闭
systemctl stop firewalld
禁止开机启动
systemctl disable firewalld
Removed symlink /etc/systemd/system/multi-user.target.wants/firewalld.service.
Removed symlink /etc/systemd/system/dbus-org.fedoraproject.FirewallD1.service.
- iptables-service
安装iptables
yum install -y iptables-services
关闭防火墙
service iptables stop
检查防火墙状态
service iptables status