码迷,mamicode.com
首页 > 其他好文 > 详细

Centos系统初始化

时间:2015-10-16 11:58:42      阅读:223      评论:0      收藏:0      [点我收藏+]

标签:centos linux 初始化

修改用户密码:

passwd

修改linux主机名

vi/etc/sysconfig/network

vim/etc/host

主机名立即生效

hostname

selinux和防火墙

Redhat使用了SELinux来增强安全,关闭的办法为:

1.永久有效

修改/etc/selinux/config文件中的SELINUX=""disabled,然后重启。

2.即时生效

setenforce 0

关闭防火墙的方法为:

1.永久性生效

开启:chkconfig iptables on

关闭:chkconfig iptables off

2.即时生效,重启后失效

开启:service iptables start

关闭:service iptables stop

配置nameserver,确保能连接网络

ping www.baidu.com

ping 202.108.22.5

vi/etc/resolv.conf

nameserver 8.8.8.8

nameserver 114.114.114.114

配置163yum

 yum -y install wget

cd  /etc/yum.repos.d/

wget http://mirrors.163.com/.help/CentOS6-Base-163.repo

重启linux

reboot

安装scp,vim命名

yum  -y install openssh-clients vim

需要说明的是对于Linux下的其它服务都可以用以上命令执行开启和关闭操作

补充:

a.防火墙还需要关闭ipv6的防火墙:

chkconfig ip6tables off

并且可以通过如下命令查看状态:

chkconfig--list iptables

b.selinux状态可以通过以下命令查看:

sestatus


本文出自 “雪藤六” 博客,请务必保留此出处http://879100963.blog.51cto.com/6686639/1703426

Centos系统初始化

标签:centos linux 初始化

原文地址:http://879100963.blog.51cto.com/6686639/1703426

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!