双十一,买了一个腾讯云服务器 1G内存, 发现有3个 没有用的服务在后台运行,于是决定关闭它

最后决定果断卸载掉 一劳永逸.

yum remove postfix -y //这个占用25端口,就是那个SMTP发邮件的服务

yum remove cups //这个占用631端口 ,共享打印

yum remove rpcbind //这个占用111端口, nfs服务

yum remove postfix cups rpcbind -y //完整的命令

卸载前的内存情况:

[root@VM_0_6_centos ~]# free -h
total used free shared buff/cache available
Mem: 991M 604M 72M 1.6M 314M 228M
Swap: 4.0G 854M 3.2G

卸载后的内存情况:

[root@VM_0_6_centos ~]# free -h
total used free shared buff/cache available
Mem: 991M 606M 77M 1.7M 307M 238M
Swap: 4.0G 879M 3.1G

以上系统为Centos7