2011-04-01から1ヶ月間の記事一覧
ext4の仕様と実装 ext4の仕様 http://ja.wikipedia.org/wiki/Ext4(とりあえずベタにWikiレベルで確認) http://kernelnewbies.org/Linux_2_6_28 (★kernelnewbiesっていう新規カーネル開発者向けの情報) ext4の実装方法 OSインストール時CentOS 5.5の場合、…
OpenAM環境の構築 ちとペンディング 既存の環境をバックアップ(tarアーカイブ)してOpenVZ環境で動かす 全部VM上で動くならやってみる。無理そうならHDDを買う。w http://blog.x-labot.com/2010/01/07/openvz%E3%81%A7p2v%E3%81%8C%E3%82%84%E3%81%A3%E3%81%…
PDC・BDC両方を動作させる。 PDC側 [root@localhost ~]# service ldap restart [root@localhost ~]# service smb restart BDC側 [root@localhost ~]# service ldap restart [root@localhost ~]# service smb restart PDC・BDC両方を停止させる。 PDC側 [root…
ログオンキャッシュを無効にする 「ローカルセキュリティー設定」にて「対話型ログオン:ドメインコントローラが利用できない場合に使用する、前回ログオンのキャッシュ数」を0に設定する。
PDCのSambaサービスを起動する。 [root@localhost lib]# service smb start SMB サービスを起動中: [ OK ] NMB サービスを起動中: [ OK ] BDCの/etc/samba/secrets.tdbを削除する。 [root@localhost tmp]# rm /etc/samba/secrets.tdb rm: cannot lstat `/etc…
/etc/samba/smb.confの設定 [root@localhost tmp]# cat -n /etc/samba/smb.conf 73 # 74 # workgroup = MYGROUP ←修正 75 workgroup = PROJECT-E ←追加 76 server string = Samba Server Version %v 77 78 ; netbios name = MYSERVER 79 netbios name = BDC …
PDC・BDCでOpenLDAPを起動する。 [root@localhost lib]# service ldap start slapd の設定ファイルをチェック中: config file testing succeeded [ OK ] slapd を起動中: [ OK ] slurpd を起動中: [ OK ] PDCでユーザーを追加する。 [root@localhost lib]# s…
/etc/openldap/slapd.confに以下の設定を追加する。 [root@localhost tmp]# cat -n /etc/openldap/slapd.conf 1 # 2 # See slapd.conf(5) for details on configuration options. 3 # This file should NOT be world readable. 4 # 5 include /etc/openldap/…
/etc/openldap/slapd.confに以下の設定を追加する。 [root@localhost lib]# cat -n /etc/openldap/slapd.conf 108 # Replicas of this database 109 #replogfile /var/lib/ldap/openldap-master-replog 110 #replica host=ldap-1.example.com:389 starttls=c…
PDCのSambaとOpenLDAPサーバを停止する。 [root@localhost ~]# service smb stop SMB サービスを停止中: [ OK ] NMB サービスを停止中: [ OK ] [root@localhost ~]# service ldap stop slapd を停止中: [ OK ] PDCのLDAP情報をアーカイブする。 [root@localh…
PDCと同様の作業 SambaとOpenLDAPをインストールする。 認証にLDAP使用を設定する。(authconfig) BDCであってもlocalhostのLDAPを参照する設定を施す。 BDC独自の作業 OpenLDAPの複製を設定する。 SambaをBDCとして設定する。
ユーザr_akagiの移動プロファイルの設定を無効化する。 [root@localhost ~]# smbldap-usermod -F "" r_akagi 今後作成するユーザのため、移動プロファイルの設定を無効化してサービスを再起動する。 [root@localhost ~]# cat -n /etc/samba/smb.conf 179 # d…
どうやらWindows XPとLDAP・Samba連携サーバ間でうまく会話していないようなので、トラブルシューティングを実施する。 LDAP内のオブジェクトを全表示する。 [root@localhost ~]# ldapsearch -x -h localhost # extended LDIF # # LDAPv3 # base <> with sco…
OpenLDAPサーバを起動する。(エラーになる) [root@localhost ~]# service ldap start slapd の設定ファイルをチェック中: bdb_db_open: Warning - No DB_CONFIG file found in directory /var/lib/ldap: (2) Expect poor performance for suffix dc=pj-e,d…
スキーマ設定ファイルをコピーする。 [root@localhost ~]# cp -p /usr/share/doc/samba-3.0.33/LDAP/samba.schema /etc/openldap/schema/ LDAP管理者パスワードを生成する。 [root@localhost ~]# slappasswd -h {MD5} -s ldapadmin {MD5}TmZgZ01/Z0/29bOPByM…
以後の操作にて誤った場合に初期化する。 [root@localhost smbldap-tools-0.9.5]# rm -r /var/lib/ldap/* 初期ドメインデータの作成する。 [root@localhost smbldap-tools-0.9.5]# smbldap-populate -a Administrator -b guest Populating LDAP directory fo…
smbldap-toolsパッケージをインストールする。 [root@localhost tmp]# yum install smbldap-tools Loaded plugins: fastestmirror, priorities Loading mirror speeds from cached hostfile * addons: rsync.atworks.co.jp * base: rsync.atworks.co.jp * ex…
yum-prioritiesをインストールする。 [root@localhost /]# cd /tmp [root@localhost tmp]# yum install yum-priorities Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: ftp.iij.ad.jp * base: ftp.iij.ad.jp * extras…
/etc/samba/smb.confを設定する。 [root@localhost ~]# cat -n /etc/samba/smb.conf 1 # This is the main Samba configuration file. You should read the 2 # smb.conf(5) manual page in order to understand the options listed 3 # here. Samba has a h…
authconfigコマンドを実行する(エラーになる) [root@localhost ~]# authconfig Traceback (most recent call last): File "/usr/sbin/authconfig", line 837, in ? module.run() File "/usr/sbin/authconfig", line 412, in run self.parseOptions() File "/…
LDAPをインストールする。 [root@localhost ~]# yum install openldap-servers openldap-clients Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: rsync.atworks.co.jp * base: rsync.atworks.co.jp * extras: rsync.a…
ユーザ情報 [root@localhost ~]# cat -n /etc/nsswitch.conf 1 # 2 # /etc/nsswitch.conf 3 # 4 # An example Name Service Switch config file. This file should be 5 # sorted with the most-used services at the beginning. 6 # 7 # The entry '[NOTFOU…
SWAT(Samba Web Admin Tool)を使用する /etc/xinetd.d/swatを修正(10,14行目)し、以下になっていることを確認する。 [root@localhost ~]# cat -n /etc/xinetd.d/swat ←コマンド入力 1 # default: off 2 # description: SWAT is the Samba Web Admin Tool. Us…
Sambaをインストールする。 [root@localhost ~]# yum install samba-common samba samba-client samba-swat ←コマンド入力 Loaded plugins: fastestmirror Loading mirror speeds from cached hostfile * addons: rsync.atworks.co.jp * base: rsync.atworks…
VMwareにて2つのゲストOSを作成してOSをセットアップする。 CentOS 5.5 Windows XP (Technetで落とせる最新版) LDAPとSamba及び関連するパッケージをインストール・設定し、動作を確認する。 CentOS 5.5セットアップのメモ書き HTTP Setup Web site name: ft…
Hatena:Diaryによる自宅の作業ログ保存を開始。 バックアップもできるし、至れり尽くせりだな。とりあえず採用の決め手になった Hatena Diaryでソースコードを載せる際にSynatax Highlightさせる方法のメモ書き。以下、http://d.hatena.ne.jp/hatenadiary/20…