CentOS

CentOS
MySQLのインストール

●事前準備 # yum -y install ncurses-devel ●インストール # groupadd -g 27 mysql # useradd -u 27 mysql -M -g mysql -s /sbin […]

続きを読む
CentOS
c-clientライブラリのインストール

○PHPでメール関連に使用するcクライアントライブラリ # cd /usr/local/src # wget ftp://ftp.cac.washington.edu/imap/c-client.tar.Z # tar […]

続きを読む
CentOS
clamavのsocketエラー

ふとmaillogを確認していたら、 ClamAV-clamd: Can't connect to UNIX socket /var/run/clamav/clamd.sock とエラーらしき文字が・・・ clamd.c […]

続きを読む
CentOS
postgresqlを7から8へ移行

データベースのバックアップ # su - postgres $ pg_dumpall > data_all $ exit PostgreSQLのバージョンアップ # yum -y update postgresql-se […]

続きを読む
CentOS
CentOS4.6にPHP5をインストール

# vi /etc/yum.repos.d/CentOS-Base.repo ・・・省略・・・ #additional packages that extend functionality of existing pac […]

続きを読む
CentOS
メール添付ファイル送信

メール添付ファイル送信のためのuuencodeをインストールする up2date --install sharutils (redhat) yum -y install sharutils (CentOS) uuenco […]

続きを読む
CentOS
up2date、yumの利用方法

パッケージリストの更新 up2date -p (redhat) yum check-update (CentOS) アップデート可能なパッケージリストを表示 up2date -l (redhat) パッケージのアップデー […]

続きを読む