使用putty连接虚拟机的redhat连不上时处理方案: 这里使用的是VMware Workstation,  将宿主机与虚拟机之间的网络使用 ‘桥接方式’: 1.关闭宿主机与虚拟机的防火墙, 在redhat下使用service iptables status 查看防火墙是否关闭: 2.宿主机与虚拟机上的redhat可以相互ping通 2.1使用虚拟机ping 主机 2.2使用主机ping虚拟机(虚拟机的ip为 192.168.0.30) 3.再使用putty进行连接虚拟机, 如果还是连不上(连…
需要测试OpenSuSE11 x64上mysql性能,发现很多东西与centos以及红帽有差别.其中最切身的就是sshd服务的开启. 安装好OpenSuSE 11后,发现ssh连接不上去,可以ping通,telnet不行.查看服务后,发现ssh服务没有开启.开启步骤:1.修改/etc/ssh/sshd_config文件.将#PasswordAuthentication no的注释去掉,并将no改为yes 3.将#PermitRootLogin yes的注释掉 4.重新启动SSH服务:/etc/i…
BackTrack 5 开启SSHD服务 1 service ssh start 但启动后,仍然无法从远程连接,会有提示: 1 Read from socket failed: Connection reset by peer 这个时候需要生成密钥文件,方法如下 1 2 3 #ssh-keygen -t rsa -f /etc/ssh/ssh_host_rsa_key   #ssh-keygen -t dsa -f /etc/ssh/ssh_host_dsa_key #sshd-generate…
Centos7 关闭防火墙 CentOS 7.0默认使用的是firewall作为防火墙,使用iptables必须重新设置一下 1.直接关闭防火墙 systemctl stop firewalld.service #停止firewall systemctl disable firewalld.service #禁止firewall开机启动 2.设置 iptables service yum -y install iptables-services 如果要修改防火墙配置,如增加防火墙端口3306 v…
在centos上搭建了个服务器,本机可以访问,局域网无法访问 解决方案:关闭防火墙 sudo systemctl stop firewalld.service 令人恼火的是stop iptables之类的命令都没用!…
1)关闭防火墙(每个节点) [Bash shell] 1 2 service iptables stop chkconfig iptables off 2)关闭selinux(重启生效) [Bash shell] 1 vim /etc/selinux/config…
须知: 防火墙配置文件:/etc/sysconfig/iptables 查看防火墙状态:service iptables status 关闭防火墙:service iptables stop 关闭iptalbes:chkconfig iptables off 查看那SELinux状态:getenforce SELinux配置文件:/etc/selinux/config ****************************************************************…
一:下面是red hat/CentOs7关闭防火墙的命令! 1:查看防火状态 systemctl status firewalld service iptables status 2:暂时关闭防火墙 systemctl stop firewalld service iptables stop 3:永久关闭防火墙 systemctl disable firewalld chkconfig iptables off 4:重启防火墙 systemctl enable firewalld service…
使用xshell远程连接kali 2.0时要开启kaili上的sshd服务,具体方法如下: 命令: vim /etc/ssh/sshd_config # Package generated configuration file # See the sshd_config() manpage for details # What ports, IPs and protocols we listen for Port # Use these options to restrict which int…
启动一个服务:systemctl start firewalld.service关闭一个服务:systemctl stop firewalld.service重启一个服务:systemctl restart firewalld.service显示一个服务的状态:systemctl status firewalld.service在开机时启用一个服务:systemctl enable firewalld.service在开机时禁用一个服务:systemctl disable firewalld.s…