搜尋此網誌
2016年5月23日 星期一
安裝 ajenti
install (CentOS 7 / RHEL7)
rpm -Uvh http://mirror01.idc.hinet.net/EPEL/7/x86_64/e/epel-release-7-8.noarch.rpm
Add repository key:
wget http://repo.ajenti.org/ajenti-repo-1.0-1.noarch.rpm
rpm -i ajenti-repo-1.0-1.noarch.rpm
Install the package:
yum -y install ajenti
Start the service:
systemctl enable ajenti
systemctl restart ajenti
防火牆要打開 8000 port
firewall-cmd --permanent --zone=public --add-port=8000/tcp
firewall-cmd --reload
預設登入網址 https://<ServerIP>:8000
預設帳號與密碼是 root/admin
如果發生 https 無法成功登入,可以修改/etc/ajenti/config.json
將 "ssl": {
"enable": ture 改成 false
然後重啟服務
systemctl restart ajenti
2016年5月22日 星期日
R 繪圖
畫布
par(mfrow=c(1,1))
長條圖bar plot
直方圖histogram
盒鬚圖boxplot
散佈圖scatter plot
線圖line graph
線條的類型與寬度
使用`lty=#`與`lwd=#`來選擇線條的樣式與寬度。
## Reference
* R in Action, Robert I. Kabacoff
* R Graphics Cookbook, Winston Chang
* R Graphs Cookbook, Hrishi V. Mittal
par(mfrow=c(1,1))
長條圖bar plot
直方圖histogram
盒鬚圖boxplot
散佈圖scatter plot
線圖line graph
線條的類型與寬度
使用`lty=#`與`lwd=#`來選擇線條的樣式與寬度。
## Reference
* R in Action, Robert I. Kabacoff
* R Graphics Cookbook, Winston Chang
* R Graphs Cookbook, Hrishi V. Mittal
2016年5月19日 星期四
CENTOS 安裝與設定 POP3 sever,Dovecot
yum -y install dovecot
1.設定監聽pop3服務
編輯 /etc/dovecot/dovecot.conf
protocols = all or protocols = pop3
設好後存檔離開
2.取消明碼傳輸
編輯 /etc/dovecot/conf.d/10-auth.conf
disable_plaintext_auth = no
3.
編輯 /etc/dovecot/conf.d/10-mail.conf
mail_location = maildir:~/Mail
重點是與postfix設定要一致才能找得到信件
4.啟用dovecot服務
service dovecot start or systemctl start dovecot
5.測試是否能正確收信,
telnet localhost pop3
user 使用者名稱
pass 密碼
list (這是列出信件)
quit (離開)
1.設定監聽pop3服務
編輯 /etc/dovecot/dovecot.conf
protocols = all or protocols = pop3
設好後存檔離開
2.取消明碼傳輸
編輯 /etc/dovecot/conf.d/10-auth.conf
disable_plaintext_auth = no
3.
編輯 /etc/dovecot/conf.d/10-mail.conf
mail_location = maildir:~/Mail
重點是與postfix設定要一致才能找得到信件
4.啟用dovecot服務
service dovecot start or systemctl start dovecot
5.測試是否能正確收信,
telnet localhost pop3
user 使用者名稱
pass 密碼
list (這是列出信件)
quit (離開)
CENTOS 安裝 Postfix Server
yum -y install postfix
vi /etc/postfix/main.cf
1.設定Hostname
#myhostname = host.domain.tld
#myhostname = virtual.domain.tld
myhostname = 你的主機名稱
2.設定網域名稱(Domain Name)
#mydomain =domain.tld
mydomain = 你的網域名稱
3.設定Origin Name
myorigin = $mydomain
4.設定 postfix 的監聽介面
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, locatlhost
#inet_interfaces = localhost
inet_interfaces = all
5.修改Postfix的通訊協定
inet_protocols = ipv4 or inet_protocols = all
6.設定能收收信件的主機名稱
mydestination = $myhostname, localhost.$mydomain, localhost, mydomain
7.設定信任的用戶端
mynetworks = 127.0.0.0/8, 192.168.1.0/24, hash:/etc/postfix/access
8.規範可以 relay 的 MTA 主機位址
relay_domains = $mydestination
9.設定郵件別名的路徑
alias_maps = hash:/etc/aliases
10.設定指定郵件別名表資料庫路徑
alias_database = hash:/etc/aliases
11.設定完成後,請在終端機下輸入以下二行指令
postmap hash:/etc/postfix/access
postalias hash:/etc/aliases
12.重啟postfix就可以利用smtp的服務收發信件
service postfix restart or systemctl restart postfix
13.檢查SMTP服務是否開啟
netstat -tlunp | grep ':25'
vi /etc/postfix/main.cf
1.設定Hostname
#myhostname = host.domain.tld
#myhostname = virtual.domain.tld
myhostname = 你的主機名稱
2.設定網域名稱(Domain Name)
#mydomain =domain.tld
mydomain = 你的網域名稱
3.設定Origin Name
myorigin = $mydomain
4.設定 postfix 的監聽介面
#inet_interfaces = $myhostname
#inet_interfaces = $myhostname, locatlhost
#inet_interfaces = localhost
inet_interfaces = all
5.修改Postfix的通訊協定
inet_protocols = ipv4 or inet_protocols = all
6.設定能收收信件的主機名稱
mydestination = $myhostname, localhost.$mydomain, localhost, mydomain
7.設定信任的用戶端
mynetworks = 127.0.0.0/8, 192.168.1.0/24, hash:/etc/postfix/access
8.規範可以 relay 的 MTA 主機位址
relay_domains = $mydestination
9.設定郵件別名的路徑
alias_maps = hash:/etc/aliases
10.設定指定郵件別名表資料庫路徑
alias_database = hash:/etc/aliases
11.設定完成後,請在終端機下輸入以下二行指令
postmap hash:/etc/postfix/access
postalias hash:/etc/aliases
12.重啟postfix就可以利用smtp的服務收發信件
service postfix restart or systemctl restart postfix
13.檢查SMTP服務是否開啟
netstat -tlunp | grep ':25'
2016年5月16日 星期一
訂閱:
文章 (Atom)