2020年9月15日 星期二

Cent OS 7 Mysql 5.1.73 Install

 setenforce 0

yum info mariadb-libs.x86_64

yum remove mariadb-libs.x86_64


yum install wget gcc ncurses ncurses-devel


cd /tmp

wget http://downloads.mysql.com/archives/mysql-5.1/mysql-5.1.73.tar.gz

tar -zxvf mysql-5.1.73.tar.gz 

cd /tmp/mysql-5.1.73/


./configure  '--prefix=/usr/local/mysql' '--without-debug' '--with-charset=utf8' '--with-extra-charsets=all' '--enable-assembler' '--with-pthread' '--enable-thread-safe-client' '--with-mysqld-ldflags=-all-static' '--with-client-ldflags=-all-static' '--with-big-tables' '--with-readline' '--with-ssl' '--with-embedded-server' '--enable-local-infile' '--with-plugins=innobase'


vim configer 

搜尋 $RM "$cfgfile"

改為 $RM -f "$cfgfile"

"error"

/bin/rm: cannot remove 'libtoolT': No such file or directory

config.status: executing default commands



#需yum install gcc-c++


make[1]: *** [my_new.o] Error 127

make[1]: Leaving directory `/tmp/mysql-5.1.73/mysys'

make: *** [all-recursive] Error 1


#故安裝套件完成後

make

make install

#mysql安裝至/usr/local/mysql下



cp support-files/my-medium.cnf /etc/my.cnf

cp -r support-files/mysql.server /etc/init.d/mysqld

/sbin/chkconfig --del mysqld

/sbin/chkconfig --add mysqld

 

配置权限表

chown -R mysql:mysql /usr/local/mysqld

/usr/local/mysql/bin/mysql_install_db --user=mysql

 

 

启动mysql

给/etc/init.d/mysql 执行权限,然后运行

chmod a+wrx /etc/init.d/mysql

/etc/init.d/mysqld start

 

mysql初始化配置:


包括密码设置等

#/usr/local/mysql/bin/mysql_secure_installation


#

mysql root/P@ssw0rd

#


帳號建立與資料庫權限設定

/usr/local/mysql/bin/mysqladmin -u root -h c7m5 password 'P@ssw0rd'


帳號建立

GRANT ALL PRIVILEGES ON *.* TO 'edwin'@'%' IDENTIFIED BY '' WITH GRANT OPTION;

grant all privileges on *.* to 'edwin'@'%' IDENTIFIED BY 'ec5678';



帳號變數設定

export PATH=/usr/local/mysql/bin:$PATH


服務確認

ps -ef|grep mysql


netstat --tunlp


防火牆確認與開啟

sudo firewall-cmd --permanent --add-service=mysql

sudo firewall-cmd --permanent --zone=public --add-port=3306/tcp

firewall-cmd  --reload

firewall-cmd  --list-all




#phpmyadmin


vim /etc/httpd/conf.d/phpmyadmin.conf


<Directory "/usr/share/phpmyadmin">

Order Deny,Allow

Deny from all

Allow from 127.0.0.1

Allow from 192.168.10.0/24 

#新增可以連線資料庫的特定機器的ip位址或是網段



</Directory>



apachectl -k restart


#SMB


Excel 2007開啟出現stdole32.tlb視窗

開啟Excel 2007時會出現stdole32.tlb錯誤視窗,

KB2767916移除後就正常。


#2020/09/15突然跳出老問題

筆記一下省得忘了

Office 版本並行 設定

 Office 多版本並行時 避免設定錯誤,依據對應版本設定無須重新設定REG登錄檔

點選開始>執行

Win10 開始右鍵>執行


Office2000


reg add HKCU\Software\Microsoft\Office\9.0\Word\Options /v NoReReg /t REG_DWORD /d 1


Office2002


reg add HKCU\Software\Microsoft\Office\10.0\Word\Options /v NoReReg /t REG_DWORD /d 1


Office2003


reg add HKCU\Software\Microsoft\Office\11.0\Word\Options /v NoReReg /t REG_DWORD /d 1


Office2007


reg add HKCU\Software\Microsoft\Office\12.0\Word\Options /v NoReReg /t REG_DWORD /d 1


Office2010


reg add HKCU\Software\Microsoft\Office\14.0\Word\Options /v NoReReg /t REG_DWORD /d 1


Office2013


reg add HKCU\Software\Microsoft\Office\15.0\Word\Options /v NoReReg /t REG_DWORD /d 1



Office2016


reg add HKCU\Software\Microsoft\Office\16.0\Word\Options /v NoReReg /t REG_DWORD /d 1


2020年7月22日 星期三

Outlook 寄信附件 大小增加

這是考古文, 但總會遇到骨董所以筆記放這裡

 E-Mail 最早並沒有支援附件,所以附件要靠編碼加入。

 Base64 固定放大 1.3333 倍
 QP 碼放大 1 ~ 3 倍

 所以當Outlook寄信送往沒有支援的Server時,郵件附件會增加1.3倍 

也就是假使10M會變成13M以上
 用 Windows Live Mail 另存 .eml,是以原始信件 (ANSI) 內容儲存。 
用 Outlook 另存 .msg ,是以 Unicode 儲存,在 Unicode 英數是 ANSI 兩倍。

另外 Outlook 2007 以前可以啟用保存原始郵件功能,會造成郵件內同時有ANSI / Unicode 兩種資訊。

2020年6月15日 星期一

Proxmox 5.X to 6.X

近來測試開源VM
跑得還不錯,以Ubuntu 為基的Proxmox

5.2 運行了一年多
打算正式使用,故順便研究升級與叢集的作法

最後整理筆記如下:

1.升級 Proxmox VE 5.4 到最新的版本。
apt update
apt dist-upgrade
2.利用pve5to6指令查看要升級的狀況。
#pve5to6
3.先升級Corosync 3
停止服務
#systemctl stop pve-ha-lrm
#systemctl stop pve-ha-crm
新增資源庫
#echo “deb http://download.proxmox.com/debian/corosync-3/ stretch main” > /etc/apt/sources.list.d/corosync3.list
更新資源,升級
#apt update
#apt dist-upgrade
啟動
#systemctl start pve-ha-lrm
#systemctl start pve-ha-crm
4.更新升級資料庫由stretch(5.X) 更改為Buster(6.X)
--Update all Debian repository entries to Buster.
用sed 替換字元
sed -i 's/stretch/buster/g' /etc/apt/sources.list
5. 新增資源庫,
Add the Proxmox VE 6 Package Repository
/etc/apt/sources.list
deb http://ftp.debian.org/debian buster main contrib
deb http://ftp.debian.org/debian buster-updates main contrib
#PVE pve-no-subscription repository provided by proxmox.com,
#NOT recommended for production use
deb http://download.proxmox.com/debian/pve buster pve-no-subscription
#security updates
deb http://security.debian.org buster/updates main contrib
/etc/apt/sources.list.d/pve-enterprise.list
deb http://download.proxmox.com/debian buster pve-no-subscription
6.更新
先刪除
#rm /etc/apt/sources.list.d/corosync3.list
更新套件升級
#apt update
#apt dist-upgrade
7. 重開機
事後談,在第五步卡了兩次,原來開源版不需要將原生的註記
可以一併保留

2020年1月1日 星期三

Librenms WebUI password change

LibreNMS 網頁密碼變更

做法:從SQL資料庫下手,由於該資料欄為雜湊值加密過
故需先找一組變更,(設定為空白無法登入)

登入SQL

mysql -u root -p

show databases;

#確認DB,舊版的為librenmsdb

use librenms;

#tables為 users,可以用select確認

select * from users;



底下為 password的雜湊密碼
$2y$10$qwtXWqRQz0xY4SGTEUqDkextPS8DS1axSF1ord2J4juDLPSQBiy6m
更換admin password 密碼語法


 update users set password= '$2y$10$qwtXWqRQz0xY4SGTEUqDkextPS8DS1axSF1ord2J4juDLPSQBiy6m' where username = 'admin';