Sponsored Content
Top Forums UNIX for Advanced & Expert Users Application Servers Installation and Users Post 302183452 by srikanths on Wednesday 9th of April 2008 05:06:53 AM
Old 04-09-2008
Application Servers Installation and Users

Hi,

When most of the server applications get installed, they create their own user. I believe this is to not use the "root" account. For example, Apache when installed creates a user called "apache". And the directories which it uses are all owned by this user. This seems to be the "professional" way of installing applications.

Is there any terminology for this kind of deployment? If I have to install a similar kind of server application, what are the steps that I need to take care? Has anyone written a blog post explaining these things? Or is there any standard guidelines published somewhere?

Thanks!
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

UNIX Database / Application Installation

Greetings, forgive me if this is listed in another thread somewhere, I am short on time. I am being interviewed for the position of UNIX Database and Job code installer for a consulting firm. I have never installed or worked on a native UNIX system. I have been running Linux (RH,SuSE,Slackware)... (3 Replies)
Discussion started by: OllieTech
3 Replies

2. UNIX for Dummies Questions & Answers

Application servers, proper usage

Is it common in the Unix/Linux environment to install compute intensive applications on a Server system and have the client machines download the executables into memory at runtime to run locally? This model seems taxing to the network, and as I understand, has been largely abandoned in the... (1 Reply)
Discussion started by: jonwillog
1 Replies

3. Shell Programming and Scripting

script to create users on many servers

Hi all, working on script to create a user acct on all our servers. for i in `cat $host_file`; do ssh $i /usr/bin/sudo /usr/bin/mkuser id='bpadm' gecos='NetBackup Admin' 2>&1 >> $log done error i get is: 3004-692 Error changing "id" to "bpadm" : Value is invalid. I have tried this in... (1 Reply)
Discussion started by: dnidiffer
1 Replies

4. AIX

Installation an application on AIX

Hi all I'm newbie In this forum, i have posted some topics about zip and unzip a file on AIX system. And i have some answers so that AIX can not work with zip file, and they tell me some files to zip and unzip my files on AIX such as: zip-2.3-3.aix4.3.ppc.rpm unzip-5.51-1.aix5.1.ppc.rpm... (2 Replies)
Discussion started by: leenguyen0101
2 Replies

5. Shell Programming and Scripting

Difference between development and Production unix servers for a application??

Hi all I am running a major script of my application in development for implementing code changes for process improvement in time. The script runs in production once in a month . It takes 8 hours 30 mins in Production server . what surprice me is , when I run the same script in development server... (9 Replies)
Discussion started by: sakthifire
9 Replies

6. Shell Programming and Scripting

Wants to create 3 users in 400 servers

I wants to create 3 users and set password for the users in 400 servers. I can run this script without error. If wants to set the password in the same command it is not working. Like that i have to create 3 users #!/usr/bin/ksh for server in `cat /tmp/servers` do echo "servername =... (5 Replies)
Discussion started by: G0kulakrishnan
5 Replies

7. Shell Programming and Scripting

I need to add 30 users to 50 servers

Hi Y'all, I need help adding 30 users to 50 servers. Is there a way to automate this? I'm using this command: sudo mkuser pgrp=srvadm gecos=Spears, Brittney auditclasses=ALL sugroups=system,security user01 But I'm doing it per user, per server...HOW CAN I MAKE THIS EASIER?... (7 Replies)
Discussion started by: jennie28n
7 Replies

8. Shell Programming and Scripting

Script to delete users in the servers

Hi Team, Hope you are doing good.I am new to scripting.I have a requirement of deleting around 10 users in 100 servers.It is very time consuming by logging into each servers and delete the user.Here I have redhat 6 ,Suse linux 10&11 environment servers. In one set of servers I have... (5 Replies)
Discussion started by: muraliinfy04
5 Replies

9. HP-UX

Sudden application crash in servers

Hi, This weekend there was a sudden application crash in the server. I did not know where to start to investigate the problem, so I first looked into the /var/adm/syslog/syslog.log, and this was what I found : Dec 17 00:38:02 L28bi01 sshd: error: accept: No buffer space available Dec 17... (9 Replies)
Discussion started by: anaigini45
9 Replies
MojoMojo::Installation(3pm)				User Contributed Perl Documentation			       MojoMojo::Installation(3pm)

NAME
MojoMojo::Installation - Installation instructions for MojoMojo INSTALLING MOJOMOJO
Step 0 Install MojoMojo's prerequisites. See <http://mojomojo.org/documentation/installation>. Step 1 - install Install MojoMojo either using the cpan shell like this: cpan MojoMojo or by downloading the tarball from <http://search.cpan.org/dist/MojoMojo> and running perl Makefile.PL on it manually. If you do this, run make installdeps to get all the required modules installed. Step 2 - configure "mojomojo.conf" is the main configuration file and is in Config::General format. First make sure your config file has a valid DSN for your database (You can use SQLite, MySQL or PostgreSQL - SQLite by default). The setting you change is in the "connect_info" hash in the "Model::DBIC" block. For instance, for MySQL: dsn dbi:mysql:database=mojomojo;host=localhost user db_user password db_password or for SQLite: dsn dbi:SQLite:__HOME__/db/sqlite/mojomojo.db user db_user passwrd db_password or for PostgreSQL: dsn dbi:Pg:dbname=mojomojo;host=localhost;port=5432 user db_user password db_password For MySQL and PostgreSQL you want to create the database first (SQLite does this automatically) create database mojomojo; Once the DSN is setup, we "deploy" the schema and some initial data to the mojomojo database by running the following script: ./script/mojomojo_spawn_db.pl This script has sane defaults for a test install, but you can override these. Run it with --help to see usage information. Step 3 - launch MojoMojo is a Catalyst application and works with Catalyst's built-in web server, or with an external one. Using the Catalyst built-in server Catalyst includes a test server which can be started using: ./script/mojomojo_server.pl -p 3000 where 3000 is the port number and the default if no port is specified. Note that if you install it through the cpan shell, mojomojo_server will be found in your bin directory. Using an external web server MojoMojo has been tested with Apache, lighttpd and nginx. If you need to make a choice, nginx and lighttpd are much lighter in terms of resource consumption, and faster at serving static files, while Apache is more popular and powerful. Comparison information can be found at WikiVs: o <http://www.wikivs.com/wiki/Apache_vs_nginx> o <http://www.wikivs.com/wiki/Lighttpd_vs_nginx> o <http://www.wikivs.com/wiki/Apache_vs_Lighttpd> See <http://mojomojo.org/documentation/deployment> for how to setup MojoMojo with various web servers. Set up Apache using either mod_perl or FastCGI. See http://search.cpan.org/dist/Catalyst/lib/Catalyst/Manual/Cookbook.pod#Using_FastCGI for further information on FastCGI, or you can look at Catalyst::Engine::Apache for info on setting up Catalyst apps in Apache. If your server is connected to a http proxy you may need to add the following line to the main config block: using_frontend_proxy 1 Step 4 - login Login to your MojoMojo and change the admin password. The default login/pass is "admin"/"admin". For troubleshooting, see <http://mojomojo.org/troubleshooting>. Step 5 - create pages Create a new page. Decide what URL you would like for the page then browse to that URL. You will then be asked to add content. For example, if you want to create a page about food, go to /food. perl v5.14.2 2010-05-11 MojoMojo::Installation(3pm)
All times are GMT -4. The time now is 10:54 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy