1 安裝相關的軟體包:
[root@ansible ~]# uname -r
3.10.0-123.9.3.el7.x86_64
[root@ansible ~]# yum -y install sendmail mailx
2 修改host檔案,本機ip為192.168.1.12:
[root@ansible ~]# hostname
ansible
[root@ansible ~]# vim /etc/hosts
192.168.1.12 ansible localhost.localdomain
3 重啟sendmail服務:
[root@ansible ~]# systemctl restart sendmail.service
4 測試郵件傳送,-s為標題,內容需要手動輸入,然後按回車鍵,ctrl+d結束輸入:
[root@ansible ~]# mail -s "a" [email protected]
ddeot
上面傳送郵件的方式,是在沒有公網網域名稱解析下的權宜之計,用這種方式任何一台linux伺服器都可以向外傳送郵件,ansible是用在內網解析的計算機名稱。
利用本地centos映象公升級centOS
覺得在以後的工作中,centos的公升級會比較多,下面這篇具有很大的可借鑑性!網上搜一下有很多centos6.5公升級7.0的帖子,都是用網路公升級,嘗試很多次每次都失敗了,提示kernel panic,也沒找到問題原因。受乙個日本人帖子的啟發,本部落格介紹如何通過centos7.0的映象在本地公升...
CentOS利用cpulimit限制CPU使用率
1.安裝cpulimit unzip命令解壓 unzip cpulimit.zip cd cpulimit master make 這一步出錯,collect2 fatal error cannot find ld 解決方式 yum y install binutils ln s usr bin l...
centos下利用crontab實現定時任務
cron服務是linux自帶的定時任務。方便快捷好用是他的優點。只要了解他的時間設定,即cron表示式,能輕鬆的掌握 檢視當前crontab定時列表 crontab l編輯crontab crontab e刪除crotab crontab r crontab e 編輯將對應的定時任務刪除即可cron...