峯言凬语 O ever youthful O ever weeping~
本无意与众不同,怎奈何口味太重。
首页
平水韵
颜色表
ABOUT
文章分类
友情链接
您正在查看:Nonni 发布的文章
2018-09-23 |Nonni

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

2018-09-23 |Nonni

下载密钥文件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服务或者重启服务器

  1. CentOS6

临时关闭

service iptables stop

禁止开机启动

chkconfig iptables off

  1. 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.

  1. iptables-service

安装iptables

yum install -y iptables-services

关闭防火墙

service iptables stop

检查防火墙状态

service iptables status