Plan for failures, hope for success!
Posts tagged redhat 5
Auto Mounting a DFS shares on your Redhat 5 (CentOS 5) Server
7 years ago
by pinchii
in Technology
Ok so the other day I wrote an article on how to mount the DFS to your Linux box, If you haven’t already read the other one, I suggest you go check it out now. Today im going to expand on that article and explain how to Auto Mount the DFS Share.
- Edit /etc/fstab and add the following line:
1//pinchii.com/share/data /mnt/dfsfolder cifs noauto,uid=pinchii_user,credentials=/etc/dfs_creds.conf,workgroup=PINCHII-DOMAIN 0 0- //pinchii.com/share/data is my DFS Share
- /mnt/dfsfolder is my local mount point
- cifs is the file system
- noauto is telling the OS not to automount this mount (ill explain why later)
- uid sets the owner of the files in the file system
- credentials is the path to my credentials file
- workgroup is my domain name
- the last two 0 (zero) are the dump-freq and pass-dump, I wont get into these, google them if you like
- Create the above credential file, i created a file in /etc called dfs_creds.conf, the file looks like this:
12username=pinchii_domain_userpassword=pinchii_domain_password create an init.d script, the script should look like this:Update: You dont even need the script above anymore, just setup your fstab entry as follows:
12Pause 10mount -v //mnt/dfsfolder >> logfile.log
The reason for not auto mounting the DFS in the FSTab is because if for some reason the network connection is not ready, your server will hang waiting for the DFS, pausing the script for a few seconds will allow the server to stablish a connection and then mount the DFS share.
1//pinchii.com/share/data /mnt/dfsfolder cifs uid=pinchii_user,credentials=/etc/dfs_creds.conf,workgroup=PINCHII-DOMAIN,<span style="color: #ff0000;">_netdev</span> 0 0
The option _netdev is always recommended for cifs mounts in fstab. Option _netdev delays mounting until the network has been enabled.- Thats all you need, this is what works for me, hope it works for you!!!
Can’t run Yum Update – Byte ID 7
8 years ago
by pinchii
in Technology
Bad id for repo: Some Repo Name, byte = 7
What this means is that in your SomeRepoName.conf file your repository deifinition has a space, so if your repository is Some Repo Name, change it to Some_Repo_Name, and problem solved