KVM是什么?for Kernel-based Virtual Machine安装环境Centos 6.5 mini x64 禁用selinux, 禁用防火墙安装过程:1. 查看我们的电脑是否支持 虚拟化grep -E -o 'svm|vmx' /proc/cpuinfo如果有结果就说明支持如果没有...
分类:
其他好文 时间:
2015-07-14 15:05:36
阅读次数:
137
Selinux是对于强制访问控制的实现,在这种访问控制体系的限制下,进程只能访问那些在他的任务中所需要文件.对于新手来说会影响我们的操作.一般情况下是不需要的,所以禁用他,如果需要的情况下,我们可以先临时禁用,然后等服务搭建好后,可开启,然后再配置selinux.关于selinux更深奥的东西,这个...
分类:
系统相关 时间:
2015-06-23 15:19:59
阅读次数:
254
一、Hadoop组件依赖关系:步骤1)关闭防火墙和禁用SELinux切换到root用户关闭防火墙:service iptables stop禁用SELinuxvim /etc/sysconfig/selinux 设置SELinux=disabled2)设置静态IPvim /etc/sysconfig...
分类:
其他好文 时间:
2015-06-09 21:41:39
阅读次数:
111
Redhat下SSH免密码登录步骤:被登录端:#mkdir/root/.ssh另需禁用selinux(需重启服务器),否则会失败#vi/etc/selinux/configSELINUX=disabled(默认为:SELINUX=enforcing):wq登录端:#ssh-keygen路径为默认密码可为空#mv~/.ssh/id_rsa.pub~/.ssh/authorized_keys#scp~/.ssh..
分类:
其他好文 时间:
2015-06-06 22:10:16
阅读次数:
147
1.保证windows与 Linux能相互ping 通,NAT或Bridge均可
ifconfig
2.禁用Selinux服务
1、临时禁用SELinux:
root@server# setenforce 0
这样重启服务器之后,还是会启动SELinux。
2、永久禁用:
[@more@]
...
分类:
系统相关 时间:
2015-04-11 16:28:10
阅读次数:
169
装完系统后的初始化操作:配置ip:禁用selinux:清空iptables:同步时间ntpdate:关于时间同步:确定你在装系统的时候修改了时区的,不然更新的时间会不正确,如果你刚开始没选择亚太地区的时区,现在又要改,你就要执行下面一步,cp/usr/share/zoneinfo/Asia/Shanghai/etc/local..
分类:
其他好文 时间:
2015-02-09 18:37:42
阅读次数:
151
fedora18下的xen安装与管理############################# xen installation ##############################关闭防火墙和禁用selinux# iptables -F# service iptables save# vi...
分类:
其他好文 时间:
2015-01-27 19:53:52
阅读次数:
275
1、基本环境准备
[hadoop@hadoop html]$ sudo chkconfig iptables off 禁用防火墙
[hadoop@hadoop html]$ vi /etc/selinux/config
禁用selinux,SELINUX=disabled
注:保存重启系统
2、Cloudera Manager的离线安装包下载,构建CM本地源
[ha...
分类:
其他好文 时间:
2015-01-04 12:12:07
阅读次数:
365
【初始化-sshd】init_sshd.sh#!/bin/bash
#
#2014/09/02
#1)禁用selinux
#modify/etc/sysconfig/selinux
#to:SELINUX=disabled
#andrebootlater.
cp-a/etc/selinux/config/etc/selinux/config.bak
echo‘SELINUX=disabled‘>/etc/selinux/config
#2)清空firewall
iptables-..
分类:
其他好文 时间:
2014-12-24 18:33:51
阅读次数:
161