Linux63期day-11

系统yum源优化
yum仓库: 汇总保存多个软件包的服务器   
yum源:   /etc/yum.repos.d 配置好yum源文件,便于找到指定的yum仓库 
yum可以解决软件的依赖
优化基础yum(base)
curl -o /etc/yum.repos.d/CentOS-Base.repo http://mirrors.aliyun.com/repo/Centos-7.repo

(http://mirrors.aliyun.com/repo/Centos-7.repo) 这是添加的yum源仓库地址
(/etc/yum.repos.d/CentOS-Base.repo)这是本地yum源文件路径

image.png

image.png

优化扩展yum(epel -- Extra Packages for Enterprise Linux) 让系统能够使用wget命令
wget -O /etc/yum.repos.d/epel.repo http://mirrors.aliyun.com/repo/epel-7.repo
查看软件是否安装:
rpm -qa cowsay (rpm -qa 这是查看软件是否安装的命令) (cowsay 是软件名称)
查看软件都安装哪些信息:
rpm -ql cowsay

防火墙优化
centos6 
   临时关闭:
   /etc/init.d/iptables stop   
   /etc/init.d/iptables status   
   永久关闭:
   chkconfig iptables off                  chkconfig iptables on
   chkconfig --list|grep iptables 
   chkconfig --list iptables
     
   centos7     
   临时关闭:
   systemctl stop firewalld.service        systemctl start firewalld.service (临时开启)  
   永久关闭:
   systemctl disable firewalld.service     systemctl enable firewalld.service(永久开启) 
   查看状态:
   systemctl status firewalld.service 
   systemctl is-active firewalld.service   --- 检查服务是否临时关闭或开启
   systemctl is-enabled firewalld.service  --- 检查服务是否永久关闭或开启

确认一个主机里面有哪些服务
netstat -lntup --- 查看网络服务端口号码信息


image.png

selinux: 企业中都会关闭(安全程序和root权限有关) --- 关闭
centos7:
临时关闭:
setenforce 0
getenforce --- 查看selinux状态
Enforcing /1 --- selinux处于开启状态
Permissive /0 --- selinux处于临时关闭

   永久关闭:
   /etc/selinux/config
   #     enforcing  - SELinux security policy is enforced.
                      selinux安全策略是开启状态
   #     permissive - SELinux prints warnings instead of enforcing.
                      selinux显示警告信息代替开启状态  == 临时关闭
   #     disabled   - No SELinux policy is loaded.
                      禁止selinux策略加载
   SELINUX=disabled
   
   修改文件信息:
   方法一: vi
   方法二: 替换  :7s#enforcing#disabled#g
   方法三: sed   sed -i '7s#enforcing#disabled#g' /etc/selinux/config
系统编码优化
echo $LANG($LANG是要查看的字符)                  查看字符编码信息

image.png

修改字符编码:
centos6
临时调整:
export LANG="en_US.UTF-8"
永久调整:
vim /etc/sysconfig/i18n
LANG="en_US.GBK"

   centos7:
   临时调整:
   export LANG="en_US.UTF-8" 
   永久调整:
   vim /etc/locale.conf 
   LANG="en_US.GBK"
   source /etc/locale.conf
   localectl set-locale LANG="en_US.UTF-8"  

   设置系统提示信息为中文:
   localectl set-locale LANG="zh_CN.UTF-8"
   PS:不建议更改为中文提示
系统时区时间优化

查看时间和时区信息
$ timedatectl
Local time: 一 2019-07-15 06:47:10 EDT
Universal time: 一 2019-07-15 10:47:10 UTC
RTC time: 一 2019-07-15 10:47:11
Time zone: America/New_York (EDT, -0400)
NTP enabled: yes
NTP synchronized: yes
RTC in local TZ: no
DST active: yes
Last DST change: DST began at
日 2019-03-10 01:59:59 EST
日 2019-03-10 03:00:00 EDT
Next DST change: DST ends (the clock jumps one hour backwards) at
日 2019-11-03 01:59:59 EDT
日 2019-11-03 01:00:00 EST

    timedatectl set-time 18:49              --- 设置时间信息
    timedatectl set-timezone Asia/Shanghai  --- 设置时区信息  ******
    timedatectl list-timezones              --- 显示时区信息
    set-local-rtc BOOL                      --- 设置RTC功能是否开启  BOOL(数据布尔型--0/1 false/true)
                                                RTC是否修改硬件主板时间
    set-ntp BOOL                            --- 设置NTP功能是否开启
                                                会通过网络自动同步时间

    手动同步时间方法:
    yum install -y ntpdate
    ntpdate "ntp1.aliyun.com"
    
    timedatectl命令操作不了:
    第一个里程: 安装时间同步软件
    yum install -y chrony     
    systemctl start chronyd
    
    第二个里程: 修改同步方式
    timedatectl set-ntp 1

你可能感兴趣的:(Linux63期day-11)