Centos7链接:https://pan.baidu.com/s/1NHoUKhWm2-ErfKouhkWvag?pwd=lol1
Centos6链接:https://mirrors.ustc.edu.cn/centos-vault/6.5/isos/x86_64/CentOS-6.5-x86_64-minimal.iso
vim /etc/sysconfig/network-scripts/ifcfg-ens33
#修改
BOOTPROTO=static
ONBOOT=yes
#增加
IPADDR=192.168.137.100
GATWAY=192.168.137.2
DNS1=114.114.114.114
DNS2=8.8.8.8
systemctl restart network#重启网络
ping www.baidu.com
#安装lrzsz
yum install lrzsz -y
修改主机名
vim /etc/hostname
node0
systemctl
systemctl status firewalld #查看防火墙状态
systemctl start firewalld #开启防火墙
systemctl stop firewalld #关闭防火墙
systemctl restart firewalld #重启防火墙
systemctl list-unit-files #查看服务开启状态
systemctl disable firewalld #禁止防火墙开机自启
systemctl enable firewalld #允许防火墙开机自启
systemctl is-enabled firewalld #查看防火墙是否允许开机自启
进程
ps -aux | grep mysql #查看所有进程
ps -ef | grep mysql #同上 可查看子父进程之间的关系
kill -9 进程号/进程名称 #强制结束进程
killall firewalld #杀死所有有关进程
pstree #查看进程树 -p显示pid -u显示用户
top #查看系统健康状态 -N以PID排序
netstat -nlp | grep 端口号 #查看网络端口号占用情况
crontab定时任务
#重启crond服务
systemctl restart crond
crontab -e #编辑crontab定时任务
-l #查询定时任务
-r #删除当前用户所有定时任务
* * * * * 执行的任务 #分时天月星期
* #代表任何时间 如第一个*表示一个小时中每分钟执行一次
, #代表不连续时间,如“0 8,12,16 * * *”代表每天的8点,12点,16点都执行一次
- #代表连续的时间范围,如“0 5 * * 1-6”代表在周一到周六的5点执行命令
*/n #代表每隔多久执行一次,如“*/10 * * * *”代表每隔10分钟执行一次
RPM
rpm -qa #查询所安装的所有rpm包
-e #卸载
--nodeps #带依赖
-i #安装
-v #显示详细信息
-h #进度条
rpm -ivh #安装
YUM仓库
基于rpm包管理,从指定服务器上自动下载rpm包且安装,可自动处理依赖关系
yum clean all #清理yum过期的缓存
makecache #将当前yum源的rpm包列表缓存到本地
remove #删除指定rpm包
网易yum地址:http://mirrors.163.com/.help/centos.html
yum install -y wget
cd /etc/yum.repos.d#yum源目录
mv CentOS-Base.repo CentOS-Base.repo.back#备份
wget http://mirrors.163.com/.help/CentOS7-Base-163.repo#下载网易yum源
mv CentOS7-Base-163.repo CentOS-Base.repo #修改名称
yum clean all #清除yum缓存
yum makecache #重新创建yum缓存
yum报错:
YumRepo Error: All mirror URLs are not using ftp, http[s] or file
原因
CentoS 6 停止维护更新日期2020年11月30日
解决办法
1.修改yum配置文件
vi /etc/yum.repos.d/CentOS-Base.repo #打开yum配置文件
2.将配置信息替换
但是一定要注意,里面的信息要根据自己的centos版本做相应的调整
# CentOS-Base.repo
#
# The mirror system uses the connecting IP address of the client and the
# update status of each mirror to pick mirrors that are updated to and
# geographically close to the client. You should use this for CentOS updates
# unless you are manually picking other mirrors.
#
# If the mirrorlist= does not work for you, as a fall back you can try the
# remarked out baseurl= line instead.
#
#
[base]
name=CentOS-6.5 - Base
baseurl=http://mirrors.aliyun.com/centos-vault/6.6/os/x86_64/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
[updates]
name=CentOS-6.5 - Updates
baseurl=http://mirrors.aliyun.com/centos-vault/6.6/updates/x86_64/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
[extras]
name=CentOS-6.5 - Extras
baseurl=http://mirrors.aliyun.com/centos-vault/6.6/extras/x86_64/
gpgcheck=1
gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
[centosplus]
name=CentOS-6.5 - Plus
baseurl=http://mirrors.aliyun.com/centos-vault/6.6/centosplus/x86_64/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
[contrib]
name=CentOS-6.5 - Contrib
baseurl=http://mirrors.aliyun.com/centos-vault/6.6/contrib/x86_64/
gpgcheck=1
enabled=0
gpgkey=http://mirrors.aliyun.com/centos-vault/RPM-GPG-KEY-CentOS-6
3.清理缓存
yum clean all #清除yum缓存
rm -rf /var/cache/yum/ #删除yum缓存文件
yum makecache #重新创建yum缓存,这里注意系统时间要与因特网一致