Sponsored Content
Operating Systems Solaris IPlanet Website Root directory? Post 302795993 by jlliagre on Thursday 18th of April 2013 04:59:09 PM
Old 04-18-2013
Have a look at the server configuration files.
This User Gave Thanks to jlliagre For This Post:
 

10 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

iPlanet on HP-UX - WANT to auth aganist MS Directory Services/LDAP

I am running iPlanet 6 on HP-UX 11, and presently all users can access the site. There are 6000 users accessing the website from an Windows Network. I would like users to access the site, but would also like to log user ID's in the access log, without prompting users for an ID/Password. Is... (1 Reply)
Discussion started by: shuterj
1 Replies

2. Shell Programming and Scripting

scripts in root directory

Is it good practice to leave scripts in the root directory? if no, why is it not? (1 Reply)
Discussion started by: stephen adebayo
1 Replies

3. UNIX for Dummies Questions & Answers

root directory

root directory is going out of space. how can i free up memory by deleting unwanted file. which files are safe to remove.i checked tmp dir. also. but no files. thanks (1 Reply)
Discussion started by: ajantha
1 Replies

4. UNIX for Dummies Questions & Answers

website directory

hye ,first timer,anyways have a question,how can someone access a website root directory,i mean if i have a website www.xyz.com ,how can i access it directory, i mean how can i use /root /home /hom to access my website, what is the proper syntax ?? thx (1 Reply)
Discussion started by: waelkd
1 Replies

5. UNIX for Dummies Questions & Answers

How to display only Owner and directory/sub directory names under particular root

hai, I am new to Unix, I have a requirement to display owner name , directory or sub directory name, who's owner name is not equal to "oasitqtc". (here "oasitqtc" is the owner of the directory or sub directory.) i have a command (below) which will display all folders and sub folders, but i... (6 Replies)
Discussion started by: gagan4599
6 Replies

6. Ubuntu

Root directory not available!

I am using Ubuntu 10.10. I want to access root home directory (~) through GUI and want access to its content. I login from administrator who is the only login user and have all rights for it. I can access the content through terminal but can't do it through GUI. Remedy my problem (5 Replies)
Discussion started by: nixhead
5 Replies

7. Web Development

What is a root directory

Hey guys. I am learning PHP and I just started a few minutes ago and it said after you maked your first hello world php file to upload it to your root directory in your webserver. What is your root directory? Is it where like all the appearance of the website is held (like what we see when we enter... (6 Replies)
Discussion started by: orszhak
6 Replies

8. Solaris

root directory is full

root directory in server / is full 100% , i already tried to delete any core file , log , .. still files under /proc directory take more than 4 G.. what you advice please i don't want to format the server and install again and re partition , i tried the FORMAT tools ! but it seems i cant do... (5 Replies)
Discussion started by: moata_u
5 Replies

9. UNIX for Dummies Questions & Answers

Removing directory with leading hyphen from root directory

I know that this basic question has been asked many times and solutions all over the internet, but none of the are working for me. I have a directory in the root directory, named "-p". # ls -l / total 198 <snip> drwxr-xr-x 4 root root 4096 Dec 3 14:18 opt drwxr-xr-x 2 root ... (2 Replies)
Discussion started by: edstevens
2 Replies

10. Solaris

SunOS confusing root directory and user home directory

Hello, I've just started using a Solaris machine with SunOS 5.10. After the machine is turned on, I open a Console window and at the prompt, if I execute a pwd command, it tells me I'm at my home directory (someone configured "myuser" as default user after init). ... (2 Replies)
Discussion started by: egyassun
2 Replies
Catalyst::Manual::Deployment::IIS::FastCGI(3pm) 	User Contributed Perl Documentation	   Catalyst::Manual::Deployment::IIS::FastCGI(3pm)

NAME
Catalyst::Manual::Deployment::IIS::FastCGI - Deploying Catalyst with Microsoft IIS Microsoft IIS It is possible to run Catalyst under IIS with FastCGI, but only on IIS 6.0 (Microsoft Windows 2003), IIS 7.0 (Microsoft Windows 2008 and Vista), and (hopefully) its successors. FastCGI is sometimes said to be supported on IIS 5.1 (Windows XP), but some features (specifically, wildcard mappings) are not supported. This prevents Catalyst applications from running on the server. Let us assume that our server has the following layout: d:WWWWebApp path to our Catalyst application d:strawberryperlinperl.exe path to perl interpreter (with Catalyst installed) c:windows Windows directory Setup IIS 6.0 (Windows 2003) Install FastCGI extension for IIS 6.0 FastCGI is not a standard part of IIS 6 - you have to install it separately. For more info and the download, go to <http://www.iis.net/extensions/FastCGI>. Choose the appropriate version (32-bit/64-bit); installation is quite simple (in fact no questions, no options). Create a new website Open "Control Panel" > "Administrative Tools" > "Internet Information Services Manager". Click "Action" > "New" > "Web Site". After you finish the installation wizard you need to go to the new website's properties. Set website properties On the tab "Web site", set proper values for: Site Description, IP Address, TCP Port, SSL Port, etc. On the tab "Home Directory" set the following: Local path: "d:WWWWebApp oot" Local path permission flags: check only "Read" + "Log visits" Execute permitions: "Scripts only" Click "Configuration" button (still on Home Directory tab) then click "Insert" the wildcard application mapping, and in the next dialog set: Executable: "c:windowssystem32inetsrvfcgiext.dll" Uncheck: "Verify that file exists" Close all dialogs with "OK". Edit fcgiext.ini Put the following lines into c:windowssystem32inetsrvfcgiext.ini (on 64-bit system c:windowssyswow64inetsrvfcgiext.ini): [Types] *:8=CatalystApp ;replace 8 with the identification number of the newly created website ;it is not so easy to get this number: ; - you can use utility "c:inetpubadminscriptsadsutil.vbs" ; to list websites: "cscript adsutil.vbs ENUM /P /W3SVC" ; to get site name: "cscript adsutil.vbs GET /W3SVC/<number>/ServerComment" ; to get all details: "cscript adsutil.vbs GET /W3SVC/<number>" ; - or look where are the logs located: ; c:WINDOWSSYSTEM32LogfilesW3SVC7whatever.log ; means that the corresponding number is "7" ;if you are running just one website using FastCGI you can use '*=CatalystApp' [CatalystApp] ExePath=d:strawberryperlinperl.exe Arguments="d:WWWWebAppscriptwebapp_fastcgi.pl -e" ;by setting this you can instruct IIS to serve Catalyst static files ;directly not via FastCGI (in case of any problems try 1) IgnoreExistingFiles=0 ;do not be fooled by Microsoft doc talking about "IgnoreExistingDirectories" ;that does not work and use "IgnoreDirectories" instead IgnoreDirectories=1 Setup IIS 7.0 (Windows 2008 and Vista) Microsoft IIS 7.0 has built-in support for FastCGI so you do not have to install any addons. Necessary steps during IIS7 installation During IIS7 installation, after you have added role "Web Server (IIS)" you need to check to install the role feature "CGI" (do not be nervous that it is not FastCGI). If you already have IIS7 installed you can add the "CGI" role feature through "Control panel" > "Programs and Features". Create a new website Open "Control Panel" > "Administrative Tools" > "Internet Information Services Manager" > "Add Web Site". site name: "CatalystSite" content directory: "d:WWWWebApp oot" binding: set proper IP address, port etc. Configure FastCGI You can configure FastCGI extension using commandline utility "c:windowssystem32inetsrvappcmd.exe" Configuring section "fastCgi" (it is a global setting) appcmd.exe set config -section:system.webServer/fastCgi /+"[fullPath='d:strawberryperlinperl.exe',arguments='d:wwwWebAppscriptwebapp_fastcgi.pl -e',maxInstances='4',idleTimeout='300',activityTimeout='30',requestTimeout='90',instanceMaxRequests='1000',protocol='NamedPipe',flushNamedPipe='False']" /commit:apphost Configuring proper handler (it is a site related setting) appcmd.exe set config "CatalystSite" -section:system.webServer/handlers /+"[name='CatalystFastCGI',path='*',verb='GET,HEAD,POST',modules='FastCgiModule',scriptProcessor='d:strawberryperlinperl.exe|d:wwwWebAppscriptwebapp_fastcgi.pl -e',resourceType='Unspecified',requireAccess='Script']" /commit:apphost Note: before launching the commands above, do not forget to change the site name and paths to values relevant for your server setup. AUTHORS
Catalyst Contributors, see Catalyst.pm COPYRIGHT
This library is free software. You can redistribute it and/or modify it under the same terms as Perl itself. perl v5.14.2 2012-01-20 Catalyst::Manual::Deployment::IIS::FastCGI(3pm)
All times are GMT -4. The time now is 04:02 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy