linux调优

  1. vim /etc/security/limits.conf
    添加如下的行
  • soft nproc 11000
  • hard nproc 11000
  • soft nofile 655350
  • hard nofile 655350
  1. 我们在 /etc/hosts.allow中加入
    all:218.24.129.
    这样就会允许来自218.24.129.*域的所有的客户来访问
  2. 如果我们在 /etc/hosts.deny中加入
    all:218.24.129.
    这样就限制了所有在218.24.129.134中的所有的用户的访问
    当hosts.allow和 host.deny相冲突时,以hosts.allow设置优化
    设置好后,要重新启动
    /etc/rc.d/init.d/xinetd restart
    /etc/rc.d/init.d/network restart
  3. /home/sh/clear.sh 每一分钟清空一次
    !/bin/bash
    clear history
    history -c
    echo > /root/.bash_history
    5.centos 7 更换 163 源 linux 默认源官网的下载软件是去海外找改为163网易源
    mv /etc/yum.repos.d/CentOS-Base.repo /etc/yum.repos.d/CentOS-Base.repo.backup
    wget http://mirrors.163.com/.help/CentOS7-Base-163.repo
    yum clean all
    yum makecache
    遇到的问题 yum makecache 一直停留再 Determining fastest mirrors
    解决法法
    cp /etc/yum/pluginconf.d/fastestmirror.conf /etc/yum/pluginconf.d/fastestmirror.conf.bak
    vim /etc/yum/pluginconf.d/fastestmirror.conf
    enabled=0
    cp /etc/yum.conf /etc/yum.conf.bak
    vim /etc/yum.conf
    plugins=0
    6 修改dns
    cat /etc/resolv.conf
    nameserver 221.199.12.157
    nameserver 218.203.123.116
    nameserver 221.199.12.158
    nameserver 218.203.123.132
  4. linux 创建普通账号只查看日志部署项目切sudo 切root
    useradd -d /home/programmer -s /bin/bash programmer
    su - programmer
    ssh-keygen 一直下一步生成服务器key
    vim authorized_keys 加入要登录的key
    8.服务器位置进程kill 吧CPU跑死了 ( vTtHH1 )未知进程
    ps aux |grep Z 排查僵尸进程
  5. 您在 /var/spool/mail/root 中有邮件 echo "unset MAILCHECK">> /etc/profile

你可能感兴趣的:(linux调优)