/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
修改CentOS默认yum源为mirrors.163.com
1、首先备份系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、进入yum源配置文件所在的文件夹
cd /etc/yum.repos.d/
3、下载163的yum源配置文件到上面那个文件夹内
CentOS7
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
CentOS6
wget http://mirrors.163.com/.help/CentOS6-Base-163.repo
CentOS5
yum.repos.d]# wget http://mirrors.163.com/.help/CentOS5-Base-163.repo
4、运行yum makecache生成缓存
yum makecache
5、这时候再更新系统就会看到以下mirrors.163.com信息
yum -y update
已加载插件:fastestmirror, refresh-packagekit, security
设置更新进程Loading mirror speeds from cached hostfile
* base: mirrors.163.com
* extras: mirrors.163.com
* updates: mirrors.163.com
修改CentOS默认yum源为mirrors.aliyun.com
1、首先备份系统自带yum源配置文件/etc/yum.repos.d/CentOS-Base.repo
mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
2、下载ailiyun的yum源配置文件到/etc/yum.repos.d/
CentOS7
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo
CentOS6
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-6.repo
CentOS5
wget -O /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-5.repo
3、运行yum makecache生成缓存
yum makecache
4、这时候再更新系统就会看到mirrors.aliyun.com信息