2018年12月29日 星期六

GBIC 的問題

這是第二次遇到的問題

A點的設備(電腦)連線到B點的設備(交換器),網頁開啟很快也很正常
B點的設備(電腦)連線到A點的設備(交換器或網頁),網頁開啟就是很慢,連校內網頁也很慢,連下個指令都要等很久

但是B點的設備 (電腦)Ping 或 Tracert 到A點的設備(交換器或網頁)很正常,不管用什麼指令都是正常的,連光纖GBIC的燈號也有亮

最後想到是GBIC的訊號是雙向,會不會是A點的光纖GBIC有問題
結果一換GBIC就什麼都正常了


2018年11月3日 星期六

Proxmox Cluster 移除操作資訊

刪除 Cluster 的步驟:

首先把2個服務暫停 corosync and the pve-cluster services on the node:
# systemctl stop pve-cluster
# systemctl stop corosync
# pmxcfs -l


Delete the corosync configuration files:
#rm /etc/pve/corosync.conf
#rm -r -f /etc/corosync/*

You can now start the filesystem again as normal service:
# killall pmxcfs
# systemctl start pve-cluster


2018年10月22日 星期一

EXCEL檔案裡插入「框框內打勾」

要在EXCEL檔案裡面的「框框內打勾」方法

 從「插入」->「符號」->「Wingdings2」 就可以找到了

2018年10月6日 星期六

Fortinet VPN 的錯誤訊息處理

這兩天客戶的Fortinet VPN突然不能用,一直出現下面訊息,因為已經買超過保固了,原廠就要收費了,因為實在沒有 "扣扣" 只好請Google大神求救了。

unable to establish the vpn connection. the vpn server may be unreachable


最後還是有答案的啦


就因為客戶的IE因為銀行要求使用 TLS 1.0取消,所以變成銀行的可以,我的不行啦,改回來就好了。

參考網站  layer8.one



2018年10月1日 星期一

PVE 版本升級方式(5X)


# nano /etc/apt/sources.list

Proxmox VE No-Subscription Repository

As the name suggests, you do not need a subscription key to access this repository. It can be used for testing and non-production use. Its not recommended to run on production servers, as these packages are not always heavily tested and validated.
We recommend to configure this repository in /etc/apt/sources.list.
File /etc/apt/sources.list
deb http://ftp.debian.org/debian stretch main contrib

# PVE pve-no-subscription repository provided by proxmox.com,
# NOT recommended for production use
deb http://download.proxmox.com/debian/pve stretch pve-no-subscription

# security updates
deb http://security.debian.org stretch/updates main contrib

Proxmox VE Test Repository

按Ctrl+o -> enter Save
按Ctrl+X -> EXIT

 參考來源 Package Repositories

2018年9月30日 星期日

Windows 7 使用桌面延伸功能時桌面圖示亂跑的問題解決

每次桌面圖示調好,只要使用切換桌面的功能圖示就會跑掉,快氣死了,我可是有工作效率的人,怎麼可以忍受這種事情發生吧。

由於 Windows 7 是安裝在我的筆電上面,不管在公司或是家裡,我都把它連上另一個顯示器。而每次我按 Windows-P 把畫面延伸到另一個螢幕時,桌面圖示開始亂跑的時候。

把桌面圖示調整到喜歡的位置,在「桌面」上按滑鼠「右鍵」並選按「重新整理」然後接上另一台螢幕,按 Windows-P 功能,再做一次在桌面上按滑鼠右鍵並選按「重新整理」的動作 這樣就行了。

如果你再次移動了任何一個桌面圖示或者加入了新的圖示上述的步驟再重新做一次就行了。


















參考來源 .Net 2Share

2018年9月18日 星期二

CentOS NTP 架設


安裝:
[root@ntp ~]# yum install ntp -y

啟動 NTP 服務
[root@ntp ~]# /etc/init.d/ntpd start
Starting ntpd:     [  OK  ]

Linux Iptables Firewall 停用
# /etc/init.d/iptables stop
# chkconfig iptables off

關閉 selinux
# cd /etc/selinux
# vi config
SELINUX=disabled


觀察 NTP 服務的 Port 123
[root@ntp ~]# netstat -tlunp | grep 123
udp        0      0 192.168.0.250:123           0.0.0.0:*     3224/ntpd         
udp        0      0 127.0.0.1:123               0.0.0.0:*     3224/ntpd         
udp        0      0 0.0.0.0:123                 0.0.0.0:*     3224/ntpd         
udp        0      0 ::1:123                     :::*          3224/ntpd         
udp        0      0 fe80::5054:ff:fe00:fa:123   :::*          3224/ntpd         
udp        0      0 :::123                      :::*          3224/ntpd   


設定開機啟動 ntpd
[root@ntp ~]# chkconfig ntpd on

查詢開機是否啟動 ntpd
[root@ntp ~]# chkconfig --list ntpd
ntpd            0:off   1:off   2:on    3:on    4:on    5:on    6:off

確認 NTP 伺服器是否順利更新時間?
[root@demo ~]# ntpstat -p

編輯 ntp.conf 的內容
[root@ntp ~]# vi /var/ntp.conf

restrict tock.stdtime.gov.tw
restrict tick.stdtime.gov.tw
restrict time.stdtime.gov.tw
restrict time1.google.com
restrict time2.google.com
restrict time3.google.com
restrict time4.google.com
restrict 192.168.0.0 mask 255.255.0.0 nomodify -->設定允許的IP網段
restrict 10.168.0.0  mask 255.255.0.0 nomodify

server tock.stdtime.gov.tw prefer
server watch.stdtime.gov.tw prefer
server time.stdtime.gov.tw prefer
server clock.stdtime.gov.tw
server tick.stdtime.gov.tw
server time1.google.com
server time2.google.com
server time3.google.com
server time4.google.com


參考網站 鳥哥的 Linux 私房菜


2018年9月17日 星期一

啟動OFFICE 時遇到 0x80041010 錯誤訊息


以系統管理員執行CMD,準備修正 WMI 的程序
執行以下指令:

"C:\WINDOWS\system32\WBEM\mofcomp.exe" "C:\Program Files\Common Files\Microsoft Shared\OfficeSoftwareProtectionPlatform\OSPPWMI.MOF"

再用KMS程式重新認證一次

參考來源 土牛資訊土–Q&A

2018年7月26日 星期四

CentOS 7 的一些紀錄


關閉 Firewalld 防火牆指令:
# systemctl stop firewalld.service

設定下次開機不會啟動 Firewalld 防火牆
# systemctl disable firewalld.service

關閉 SELinux:
vi /etc/selinux/config

安裝 Wget 程式
yum install -y wget

安裝 ntpdate 程式
yum install -y ntpdate
ntpdate -u time2.google.com

安裝Webmin 出現 No Perl MD5 hashing module found!  問題處理
yum install -y perl-Digest-MD5

安裝Webmin 出現



yum install -y unzip
yum install -y perl-Data-Dumper
yum install -y perl-Encode-Detect

 CentOS 7 ifconfig 指令處理
ip addr --> 查網路卡
ip link --> 查網路速度
ip -s link --> 統計數據
yum -y install net-tools -->安裝 ifconfig的指令

MySQL 5.7
# wget http://dev.mysql.com/get/mysql57-community-release-el7-7.noarch.rpm
# yum localinstall mysql57-community-release-el7-7.noarch.rpm
# yum -y install mysql-community-server

Nginx 安裝 --> 參考 XYZ的筆記本
# rpm -Uvh http://nginx.org/packages/centos/7/noarch/RPMS/nginx-release-centos-7-0.el7.ngx.noarch.rpm
# yum install nginx

啟動 nginx
# systemctl list-unit-files | grep nginx

開機自動啟動
# systemctl enable nginx

立即啟動
# systemctl start nginx



2018年6月25日 星期一

CentOS SSL安裝



一、安裝SSL相關元件
       # yum install mod_ssl openssl

二、安裝 GRCA 及 GCA 之憑證串鏈與 SSL 憑證
     # openssl x509 -in server.cer -inform DER -out server.crt


三、設定/etc/httpd/conf.d/ssl.conf 設定新建立的憑證位置
       找到下列文字:
        #   Server Certificate:
        # Point SSLCertificateFile at a PEM encoded certificate.  If
        # the certificate is encrypted, then you will be prompted for a
        # pass phrase.  Note that a kill -HUP will prompt again.  A new
        # certificate can be generated using the genkey(1) command.
        SSLCertificateFile /etc/pki/tls/certs/localhost.crt

        #   Server Private Key:
        #   If the key is not combined with the certificate, use this
        #   directive to point at the key file.  Keep in mind that if
        #   you've both a RSA and a DSA private key you can configure
        #   both in parallel (to also allow the use of DSA ciphers, etc.)
        SSLCertificateKeyFile /etc/pki/tls/private/localhost.key

        將紅色文字修改為自己新建立的憑證檔
        SSLCertificateFile /etc/pki/tls/certs/idindon.crt
        SSLCertificateKeyFile /etc/pki/tls/private/idindon.key


一、GCA政府憑證管理中心Apache SSL憑證請求檔製作與憑證安裝手冊
二、CENTOS 6.4中Apache 安裝與設定

 

硬碟檔案格式由RAW改為NTFS格式


G硬碟格式已經變成RAW格式

1.首先搜尋 "cmd.exe", 右鍵用管理者權限打開
2.輸入『chkdsk 磁碟機代號: /f』
3.跑完稍待片刻就能讀取硬碟囉
正在 Chkdsk Disk中

Chkdsk 結束就可以了


2018年3月4日 星期日

Proxmox 升級錯誤碼 100的解决方法

在PVE中出现 command 'apt-get update' failed: exit code 100 这个错误提示的情况

修改 /etc/apt/sources.list.d/pve-enterprise.list

# nano /etc/apt/sources.list.d/pve-enterprise.list
========================================================
原先下列的方式
deb https://enterprise.proxmox.com/debian jessie pve-enterprise
在這一句代碼前加入#號注釋掉即可。改為以下内容
# deb https://enterprise.proxmox.com/debian jessie pve-enterprise
====================================================================
按Ctrl+o -> enter Save
按Ctrl+X -> EXIT

2018年1月6日 星期六

Proxmox 無法備份的訊息 lock backup

因為備份的檔案太大了,所以就按了停止鍵,從此就鎖住了。

解鎖的方式如下

# qm unlock 100 --> 100為 Qemu ID 號碼

Proxmox Cluster Error (cannot initialize cmap service)

第一次就失敗了。

出現這個錯誤訊息,而且很慘的全部份Node都無法啟動。
Cannot initialize CMAP service

只好暫時先停止
# service pve-cluster stop
# pmxcfs -l