美文网首页
Linux系统调优

Linux系统调优

作者: 老率的IT私房菜 | 来源:发表于2020-11-28 12:08 被阅读0次

linux系统安装完毕后,首先要做的就是系统调优,这样会提高系统的使用效率,接下来为大家介绍一下linux系统调优方法。

关闭selinux功能

selinux是美国国家安全局对于强制访问控制的实现,这个功能很强大,同时又很麻烦,大多是运维人员都选择将其关闭,利用其它途径增加安全性。

命令是永久关闭selinux,执行后重启系统生效。

[root@chao selinux]# sed -i 's/SELINUX=enforcing/SELINUX=disabled/' /etc/selinux/config

开机自启服务

linux系统和windows系统类似,开机也会自启一些服务,没用的服务即会占用资源又有安全隐患,需要把必须运行的服务开机自启,其他的关闭。

需要开机自启的服务:

sshd,远程连接需要使用此服务

rsyslog,日志有关的软件

networ,网络相关的软件

crond,定时任务相关软件

sysstat数据分析的软件

查看目前开机自启的服务

[root@chao selinux]# systemctl list-unit-files|grep enabled

abrt-ccpp.service                            enabled

abrt-oops.service                            enabled

abrt-vmcore.service                          enabled

abrt-xorg.service                            enabled

abrtd.service                                enabled

atd.service                                  enabled

auditd.service                                enabled

autovt@.service                              enabled

chronyd.service                              enabled

crond.service                                enabled

dbus-org.fedoraproject.FirewallD1.service    enabled

dbus-org.freedesktop.ModemManager1.service    enabled

dbus-org.freedesktop.NetworkManager.service  enabled

dbus-org.freedesktop.nm-dispatcher.service    enabled

dmraid-activation.service                    enabled

firewalld.service                            enabled

getty@.service                                enabled

irqbalance.service                            enabled

iscsi.service                                enabled

kdump.service                                enabled

ksm.service                                  enabled

ksmtuned.service                              enabled

libstoragemgmt.service                        enabled

libvirtd.service                              enabled

例如想关闭一个

[root@chao selinux]# systemctl disable postfix.service

Removed symlink /etc/systemd/system/multi-user.target.wants/postfix.service.

设置ssh服务

编辑/etc/ssh/sshd_config文件 更改默认端口为Port 22222 保存退出,重启服务!

linux中文设置

查看系统是否是 zh_CN.UTF-8 如果不是手动添加一行到此文件。

[root@chao etc]# cat locale.conf

LANG="zh_CN.UTF-8"

设置账户超时时间

[root@chao ~]# echo 'export TMOUT=300' >>/etc/profile[root@chao ~]# source /etc/profile[root@chao ~]# env |grep -i tmout[root@chao ~]# vim /etc/profile[root@chao ~]# source /etc/profile[root@chao ~]#  等待输入超时:自动登出Connection closing...Socket close.Connection closed by foreign host.Disconnected from remote host(172.16.1.16) at 11:01:36.Type `help' to learn how to use Xshellprompt.

设置命令行历史记录数

将原来的5条改成10条

[root@chao ~]# sed -i 's/^HISTSIZE=5/HISTSIZE=10/' /etc/profile

[root@chao ~]# source /etc/profile

隐藏系统版本

[root@chao ~]# echo redflag 5.9 >/etc/issue

[root@chao ~]# cat /etc/issue

redflag 5.9

锁定重要文件

[root@chao ~]# chattr -i /etc/passwd /etc/shoadow /etc/group /etc/gshadow /etc/inittab

以上就是常用的优化步骤!

相关文章

  • Performance Tuning (TBD)

    性能调优是个大而复杂的系统性问题,涉及Linux系统(进程管理,文件系统,磁盘系统,网络IO处理等),内核参数调优...

  • 技术站点

    系统 环境 服务器mnt挂载磁盘 ubuntu系统备份恢复 性能 linux性能监测工具 linux系统级调优工具...

  • Linux系统调优

    linux系统[https://www.linuxprobe.com/]安装完毕后,首先要做的就是系统调优,这样会...

  • Linux系统调优

    一 二 IO

  • 原理剖析(第 013 篇)应用系统性能调优

    原理剖析(第 013 篇)应用系统性能调优 一、大致介绍 二、调优背景 三、计划分析 四、Linux命令相关查看指...

  • linux 系统调优参数

    3. 关于内核参数的优化,在/etc/sysctl.conf文件内 1)timewait的数量,默认是180000...

  • Linux系统调优-CPU

    Linux下系统调优,内容总结主要来自于工作经验和参考部分网络博客及红帽官方博客的结合,主要选取了一些个人理解的以...

  • optimize

    linux性能分析及调优__cpu 性能瓶颈调优可调性能参数 、内存性能瓶颈可调性能参数(操作系统设置swap的目...

  • JVM调优

    1 调优层次 性能调优包含多个层次,比如:架构调优、代码调优、JVM调优、数据库调优、操作系统调优等。架构调优和代...

  • 在 Mac 下面调优 TiKV

    在多数时候,我们都只会在 Linux 系统上面去运行 TiKV,所以很多的调优经验都是基于 Linux 的,譬如如...

网友评论

      本文标题:Linux系统调优

      本文链接:https://www.haomeiwen.com/subject/iimqwktx.html