Total739312 Week303 Yesterday161 Today142 1count/day on each IP Since 2006-06-06

レンタルサーバー

«Prev || 1 || Next»

30 September 2011

ServersMan@VPS 今日の作業内容

1.ServersManパッケージのアップデートを行った
ServersManアップデート方法(CentOS 32bit、64bit版)
2.ServersMan Admin Toolパッケージのアップデートを行った
ServersMan Admin Toolバージョンアップ手順(CentOS版)
3.パッケージのアップデートを行った
$ sudo yum check-update
openldap.i386 2.3.43-12.el5_7.9 updates
$ sudo yum update
Updating:
openldap i386 2.3.43-12.el5_7.9 updates 297 k
openldap-.3.43-12.el5_7.9.i386.rpm | 297 kB 00:00
Running rpm_check_debug
Running Transaction Test
Finished Transaction Test
Transaction Test Succeeded
Running Transaction
Updating : openldap 1/2
Cleanup : openldap 2/2
Updated:
openldap.i386 0:2.3.43-12.el5_7.9
Complete!

09/30/11 23:01:32 - noboru - No comments レンタルサーバー , Serversman

22 September 2011

ServersMan@VPS 今日の作業内容

CentO-Anaunce でいろいろなCentOS Errata and Security Advisoryが来ていたのでパッケージのアップデートを行った
以下の二つのアップデートされた
python i386 2.4.3-44.el5_7.1 updates 58 k
python-libs i386 2.4.3-44.el5_7.1 updates 5.8 M

09/22/11 18:20:01 - noboru - No comments レンタルサーバー , Serversman

15 September 2011

ServersMan@VPS 今日の作業内容

CentOS5.7がリリースされていたのでパッケージのアップデートを行った
#yum update

アップデート結果
# uname -a
Linux dti-vps-srv30 2.6.18-194.3.1.el5.028stab069.6 #1 SMP Wed May 26 18:31:05 MSD 2010 i686 i686 i386 GNU/Linux
この結果は変わっていない

#cat /etc/redhat-release
CentOS release 5.7 (Final)

MyDTIの管理ページからOSの再起動をした

vsftpdインストールの残作業をおこなった
#/sbin/chkconfig --level 3 vsftpd on
#/sbin/chkconfig --list
vsftpd 0:off 1:off 2:off 3:on 4:off 5:off 6:off

09/15/11 17:15:53 - noboru - No comments レンタルサーバー , Serversman

13 September 2011

ServersMan@VPS 今日の作業内容

ApacheでVirtualHostを有効にするテストを行った
1.VirtualHost用ディレクトリーを作成して,コンテンツを用意した
2.httpd.conf にてDirectory と VirtualHost の設定を行った
<VirtualHost *:80>
ServerAdmin postmaster@example.jp
DocumentRoot /var/www/example.jp
ServerName www.example.jp
ErrorLog logs/taiki-osen-error_log
CustomLog logs/taiki-osen-access_log common
<Directory "/var/www/example.jp">
Options Indexes FollowSymLinks IncludesNoExec
AllowOverride None
Order allow,deny
Allow from all
</Directory>
ScriptAlias /cgi-bin/ "/var/www/example.jp/cgi-bin/"
<Directory "/var/www/example.jp/cgi-bin/">
AllowOverride None
Options ExecCGI
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
3.httpdサーバーの再起動を行った
4.ディレクトリーの指定を間違えてSSIが動作しなかった

09/13/11 18:25:01 - noboru - No comments レンタルサーバー , WWW , Serversman

05 September 2011

ServersMan@VPS 今日の作業内容

ssl対応のftpサーバーをいれてみた

vsftpdインストール起動設定
1.vsftpdをインストール
  #yum install vsftpd
2.設定ファイルの変更  /etc/vsftpd/vsftpd.conf
 anonymous_enable=NO
 xferlog_file=/var/log/vsftpd_xferlog
 xferlog_std_format=NO
 ascii_upload_enable=YES
 ascii_download_enable=YES
 ftpd_banner=Welcome to ............
 chroot_list_enable=YES
 chroot_list_file=/etc/vsftpd/chroot_list
 ls_recurse_enable=YES
 chroot_local_user=YES
 use_localtime=YES
 pasv_enable=YES
 pasv_promiscuous=YES
 pasv_min_port=???00
 pasv_max_port=???05
 ssl_enable=YES
 rsa_cert_file=/etc/pki/............
 rsa_private_key_file=/etc/pki/............
3.vsftpdを起動
  #/sbin/service vsftpd start
4.iptables の FTP用ポートを開けた

残作業
1.自動起動設定は行っていない
  #/sbin/chkconfig --level 3 vsftpd on


09/05/11 17:39:10 - noboru - No comments レンタルサーバー , Serversman
«Prev || 1 || Next»