关机-防火墙-编码集-账号超时时间--历史操作记录

99封情书 提交于 2020-02-07 02:27:11

关机-防火墙-编码集-账号超时时间

1、shutdown(halt、init 0)关机
shutdown -h now:关机
shutdown -r now:重启
reboot(init 6):重启

2、防火墙临时关闭:/etc/init.d/iptables stop

3、防火墙永久关闭:chkconfig iptables off

[root@localhost ~]# /etc/init.d/iptables status
Firewall is stopped.
[root@localhost ~]# chkconfig iptables off
[root@localhost ~]#

4、中文乱码问题

1)系统设置
2)注意客户端编码

[root@localhost ~]# cat /etc/sysconfig/i18n
LANG=“en_US.UTF-8”
SYSFONT=“latarcyrheb-sun16”
[root@localhost ~]# echo ‘LANG=“zh_CN.UTF-8”’ >/etc/sysconfig/i18n–相当与vi
[root@localhost ~]# source /etc/sysconfig/i18n –让配置生效
[root@localhost ~]# echo $LANG
zh_CN.UTF-8
在这里插入图片描述
5、设置账号超时时间
[root@CentOS ~]# export TMOUT=10–临时生效

6、history历史记录
-c:清空所有
-d:删除指定历史记录

[root@CentOS ~]# history
1 ipconfig
2 ifconfig

linux特殊变量:
export TMOUNT=10 连接时超时时间控制变量
export HISTSIZE=5 命令行历史操作记录限制只显示5条,防止黑客攻击
export HISTFILESIZE=5 命令行命令对应文件的记录数 ~/.bash_history

注意如果需要命令永久生效:需要放入/etc/profile里面
echo export TMOUNT=10 >> /etc/profile
echo export HISTSIZE=5 >> /etc/profile
echo export HISTFILESIZE=5 >> /etc/profile

source /etc/profile–配置生效

禁止登陆的时候查看服务器的版本和内核信息:
原因:很多软件的漏洞跟系统的版本有关

**>/etc/issue.net

/etc/issue
cat /etc/issue.net**

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!