藍存封息

人生就是瘋狂大笑 直到流淚

You are currently browsing the Centos category.

[Centos] MySql5.5 install

在 Centos 上 要避免安裝太新的版本,會有 libery 不支援的問題,建議用 yum 預設版本

移除產生衝突的套件

yum -y remove mysql-libs-5.1.52

Ref:

CentOS下以RPM方式安装MySQL5.5 – 陈 锋 – 博客园

RedHat install MySql: conflicts with file from package mysql-libs – star_splendid

Posted 一月 31st, 2012.

Add a comment

[Centos] SSH 可以 SU

建立使用者

USERNAME

新增至管理權限

usermod -G wheel USERNAME

開啟

vi /etc/pam.d/su

將註解拿掉

#auth required /lib/security/$ISA/pam_wheel.so use_uid

開啟

vi /etc/login.defs

末尾新增

SU_WHEEL_ONLY yes

安装sudo工具

yum install sudo -y

修改 sudo 設置

vi /etc/sudoers

Continue Reading…

Posted 一月 31st, 2012.

Add a comment