常规操作命令:
# netstat -atunpl |egrep "mysql|nginx"
# vimdiff php.ini*
# runlevel
# rpm -e httpd --nodeps
# ntsysv 图形化网络设置页面
# openssl passwd -1 -salt `openssl rand -hex 4`
# createrepo redhat/
添加fstab挂载:/192.168.1.250:/file/abc nfs defaults,_netdev 0 0
# fuser -kv /rhome # fusermount -u -z /mnt/ 强制干掉
# cat /etc/sysctl.conf ==>net.ipv4.ip_forward=1 开启路由转发
# stty -echo 隐藏输入字符 stty echo 恢复
# yum provides */sbin/powertop # yum provides */bin/powertop
# ps aux|grep mysql|xargs kill -9
# setfacl -m -R u:tom:rw dir 不能执行 # setfacl -R -m u:tom:rw dir
能执行
***********************************************************************************************************
技能操作命令:
1.删除目录下所有,只保留指定文件:
# find /xx -type f ! -name "file10"|xargs rm -f
2.查看服务器信息:
# dmidecode |grep “Product Name”
# grep name /proc/cpuinfo
# grep MenTotal /proc/meminfo
# uname -r
# env
# more /etc/redhat-release
磁盘相关信息:
# df -lh
# du -lh
# free -m
# fdisk -l |grep dev
3.修改时间
date命令将日期设置为2014年6月18日
# date -s 06/18/14
将时间设置为14点20分50秒
# date -s 14:20:50
4.Centos7忘记root密码
grub界面---》按e---》Vmlinuz行尾添加init=/bin/sh ---》ctrl+x ---》
#mount -o remount,rw / ---》删除密码---》exec /sbin/init
注:7.3版本进入紧急模式后需要关闭SELinux,否则无法重启。
5.history记录查看
通过# cat /etc/profile查看相关history的配置,从中可得到相应histlog路径,本人实操路径为:/r2/histlog/.hist/root
6.Centos7修改主机名
# hostnamectl status
# hostnamectl set-hostname "master"
# hostnamectl master
重新登录,主机名生效
# logout
***********************************************************************************************************
注:
1.通过sysctl.conf文件修改的内核参数不会立刻生效,要用sysctl -p 激活