D版CentOS操作系统运维笔记
作者:雨水/家辉 日期:2017年2月28日 CSDN博客:http://blog.csdn.net/gobitan
摘要:CentOS是Redhat的开源版本,目前应用很广。曾经对RHEL很熟悉,但最近几年用Ubuntu比较多,而最近又切换回CentOS了。很多操作都变了,这里把与CentOS发行版相关的日常操作以笔记的形式记录这里,供自己同时也供大家参考,持续更新中...
说明:无特别说明的情况下,本文都以CentOS7为准!
查看版本号
[root@localhost ~]# cat /etc/redhat-release
CentOS Linux release 7.3.1611 (Core)
修改时区
# cp /usr/share/zoneinfo/Asia/Shanghai /etc/localtime
查询已安装的包
[dennis@localhost ~]$ rpm -qa|grep jdk
卸载查询到的包
[root@localhost dennis]# yum remove java-1.7.0-openjdk-1.7.0.111-2.6.7.8.el7.x86_64
切换到root权限下,直接执行su
selinux管理
[1] 安装selinux
如果没有semanage,安装方法如下:
#yum provides semanage
# yum install -ypolicycoreutils-python-2.5-8.el7.x86_64
[2] 查看selinux 状态
# sestatus
[3] 查看selinux开启的http端口
[root@Ambari conf.d]# semanage port -l|grep http
http_cache_port_t tcp 8080,8118,8123,10001-10010
http_cache_port_t udp 3130
http_port_t tcp 80,81,443,488,8008,8009,8443,9000
pegasus_http_port_t tcp 5988
pegasus_https_port_t tcp 5989
[4] 开启某个特定端口
semanage port -a -t http_port_t -p tcp 8190
[5] 临时关闭
# setenforce 0
[6] 永久关闭
修改/etc/selinux/config中的SELINUX=disabled,然后重启操作系统。
静态网络配置
IPADDR=192.168.81.129
NETMASK=255.255.255.0
GATEWAY=192.168.81.2
DNS1=61.139.2.69
最后更新日期:2017-02-28
参考资料:
[1] 暂无