Shared Home directory between Unix servers


 
Thread Tools Search this Thread
Special Forums Hardware Filesystems, Disks and Memory Shared Home directory between Unix servers
# 1  
Old 02-22-2008
PHP Shared Home directory between Unix servers

Hi
Im working in an environment where 2 production and 2 testing unix servers are used.. All these servers share the same home directory..
how is it done
where would the home directory be located
Login or Register to Ask a Question

Previous Thread | Next Thread

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

Use programs in shared folder except ones in my home dir

I am using a cluster where all the programs are located in a shared folder (I can only read but not modify anything in this folder). The path of the share folder is in my .bashrc file (and thus also in my $PATH - first position): source /home/shared/bashrc But some of the programs are... (5 Replies)
Discussion started by: beca123456
5 Replies

2. Shell Programming and Scripting

Use programs in shared folder except ones in my home dir

(0 Replies)
Discussion started by: beca123456
0 Replies

3. Shell Programming and Scripting

Search in Unix home directory

I have many views in my Linux home dir under different folders mentioned below. Home 1. CCVIEWS 2. views 3. Development 4. testproject : : etc. Now i want to list all the clearcase views in my linux dir in below format to work on other script. 1) user_test_Work1.vws ... (4 Replies)
Discussion started by: saku
4 Replies

4. UNIX for Dummies Questions & Answers

Unix set home directory

Hi I've just made a directory, what command do I use to now make it the base directory? Thanks!!!!!!!!!!!!!!! (1 Reply)
Discussion started by: beckywatson
1 Replies

5. UNIX for Dummies Questions & Answers

Copying files from unix servers to other locations e.g. C directory

Hi, I am just wondering is it possible to move or copy a file from a UNIX server to a different location e.g. the C drive on a computer? I have used the cp command to move files to different locations on unix servers but it would be handy to move a file to my C drive. I am currently... (3 Replies)
Discussion started by: crunchie
3 Replies

6. AIX

CD Rom shared for many AIX servers.

Guy's I have more than 20 servers available in different locations and I want to configure CD Rom as NFS between these servers to be sharedCan any one explain the configuration how can NFS or share CD rom between more than 20 servers available in different locationsto be used in one time from all... (5 Replies)
Discussion started by: Mr.AIX
5 Replies

7. UNIX for Advanced & Expert Users

Shared hosting, how to install programs and libraries in your home folder

Hi all I hope I am posting in the right section. If not please excuse me and redirect me to the right section. Here is my problem: I am using a shared hosting plan at Godady. I have shell access and of course my own folder. I would like to be able to install programs in my own folder... (4 Replies)
Discussion started by: PiniFarini
4 Replies

8. UNIX for Dummies Questions & Answers

home directory & group in UNIX question

folks; I'm going to use LDAP on Solaris 10 to authenticate users, i have 3 questions, i'm hoping it can be possible: 1. when users login for the first time, Is there a way to auto create a home directory like "/home/"user_name" so we don't have to a create a home directory for every single... (3 Replies)
Discussion started by: Katkota
3 Replies

9. UNIX for Dummies Questions & Answers

copy file from UNIX to shared directory

Hi, I want to copy a file from unix machine to a shared windows directory. i tried using the ftp command but i was able to transfer the file only to my local directory. Is there any way we can transfer/copy the files from unix to windows shared directory.......... Please help. Thanks (5 Replies)
Discussion started by: sireesha15
5 Replies
Login or Register to Ask a Question
Mojo::Home(3pm) 					User Contributed Perl Documentation					   Mojo::Home(3pm)

NAME
Mojo::Home - Detect and access the project root directory in Mojo SYNOPSIS
use Mojo::Home; my $home = Mojo::Home->new; $home->detect; DESCRIPTION
Mojo::Home is a container for home directories. ATTRIBUTES
Mojo::Home implements the following attributes. "app_class" my $class = $home->app_class; $home = $home->app_class('Foo::Bar'); Application class. METHODS
Mojo::Home inherits all methods from Mojo::Base and implements the following new ones. "new" my $home = Mojo::Home->new; my $home = Mojo::Home->new('/home/sri/myapp'); Construct a new Mojo::Home object. "detect" $home = $home->detect; $home = $home->detect('My::App'); Detect home directory from the value of the "MOJO_HOME" environment variable or application class. "lib_dir" my $path = $home->lib_dir; Path to "lib" directory of application. "list_files" my $files = $home->list_files; my $files = $home->list_files('foo/bar'); Portably list all files recursively in directory relative to the home diectory. $home->rel_file($home->list_files('templates/layouts')->[1]); "mojo_lib_dir" my $path = $home->mojo_lib_dir; Path to "lib" directory in which Mojolicious is installed. "parse" $home = $home->parse('/home/sri/myapp'); Parse home directory. "rel_dir" my $path = $home->rel_dir('foo/bar'); Portably generate an absolute path for a directory relative to the home directory. "rel_file" my $path = $home->rel_file('foo/bar.html'); Portably generate an absolute path for a file relative to the home directory. "slurp_rel_file" my $string = $home->slurp_rel_file('foo/bar.html'); Portably read all data at once from file relative to the home directory. my $content = $home->slurp_rel_file($home->list_files('public')->[1]); "to_string" my $string = $home->to_string; my $string = "$home"; Home directory. SEE ALSO
Mojolicious, Mojolicious::Guides, <http://mojolicio.us>. perl v5.14.2 2012-09-05 Mojo::Home(3pm)