xCAT Support for KVM

2011-02-24 Thread Xianqing Yu

Hi VCL Community:

I heard that xCat support for KVM now and find xCAT-KVM wiki at 
http://sourceforge.net/apps/mediawiki/xcat/index.php?title=KVM


I wonder that if now VCL can use xCAT provisioning module to provisioning 
KVM. If yes, which version of xCAT module can be used?


Thanks,

Xianqing 



Re: Install problems with VCL

2011-02-24 Thread Josh Thompson
-BEGIN PGP SIGNED MESSAGE-
Hash: SHA1

Have you tried viewing the testsetup.php page?

Josh

On Tuesday February 22, 2011, Frento Burton wrote:
> Oh sorry, I actually made those modifications to the .ht-inc/conf.php file.
> Here is what the top sections looks like:
> 
> 
> ***
> ***  /*
>   Licensed to the Apache Software Foundation (ASF) under one or more
>   contributor license agreements.  See the NOTICE file distributed with
>   this work for additional information regarding copyright ownership.
>   The ASF licenses this file to You under the Apache License, Version 2.0
>   (the "License"); you may not use this file except in compliance with
>   the License.  You may obtain a copy of the License at
> 
>   http://www.apache.org/licenses/LICENSE-2.0
> 
>   Unless required by applicable law or agreed to in writing, software
>   distributed under the License is distributed on an "AS IS" BASIS,
>   WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
>   See the License for the specific language governing permissions and
>   limitations under the License.
> */
> 
> $myhost='<138.238.148.123>';
> 
> define("ONLINEDEBUG", 1); // 1 to display errors to screen, 0 to email
> errors
> 
> 
>    Things in this section must be modified
> #
> 
> define("BASEURL", "https://$myhost/vcl";);   // no trailing slash - all of
> the URL except /index.php
> define("SCRIPT", "/index.php"); // this should only be
> "/index.php" unless you rename index.php to something else
> define("HELPURL", "https://vcl.example.org/help/";);
> define("HELPFAQURL", "http://vcl.example.org/help-faq/";);
> define("HELPEMAIL", "vcl_h...@example.org");
> define("ERROREMAIL", "webmas...@example.org");
> define("ENVELOPESENDER", "webser...@example.org");   // email address for
> envelope sender of mail messages
>  //   if a message gets
> bounced, it goes to this address
> define("COOKIEDOMAIN", "");   // domain in which cookies are set
> define("HOMEURL", "https://$myhost/vcl";); // url to go to when someone
> clicks HOME or Logout
> 
> ***
> *
- -- 
- ---
Josh Thompson
VCL Developer
North Carolina State University

my GPG/PGP key can be found at pgp.mit.edu
-BEGIN PGP SIGNATURE-
Version: GnuPG v2.0.16 (GNU/Linux)

iEYEARECAAYFAk1moXAACgkQV/LQcNdtPQOj8QCeNMVLpCZEFp9+nxjMaA6sUFKf
JNUAn29Y2pXBfYsMfvWWYJKcFCX/K1Ll
=f2iP
-END PGP SIGNATURE-


RE: Install problems with VCL

2011-02-24 Thread mcraft2
I experienced the same problem with FC14, my solution was that I had SELinux 
set to enforce and ran the following command to enable socket connections from 
httpd:
"setsebool -P httpd_can_network_connect 1"
 

-Original Message-
From: Frento Burton [mailto:fbur...@scs.howard.edu] 
Sent: Tuesday, February 22, 2011 8:05 PM
To: vcl-dev@incubator.apache.org
Subject: Re: Install problems with VCL

Oh sorry, I actually made those modifications to the .ht-inc/conf.php file.
Here is what the top sections looks like:


**
http://www.apache.org/licenses/LICENSE-2.0

  Unless required by applicable law or agreed to in writing, software
  distributed under the License is distributed on an "AS IS" BASIS,
  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  See the License for the specific language governing permissions and
  limitations under the License.
*/

$myhost='<138.238.148.123>';

define("ONLINEDEBUG", 1); // 1 to display errors to screen, 0 to email
errors


   Things in this section must be modified
#

define("BASEURL", "https://$myhost/vcl";);   // no trailing slash - all of
the URL except /index.php
define("SCRIPT", "/index.php"); // this should only be
"/index.php" unless you rename index.php to something else define("HELPURL", 
"https://vcl.example.org/help/";); define("HELPFAQURL", 
"http://vcl.example.org/help-faq/";);
define("HELPEMAIL", "vcl_h...@example.org"); define("ERROREMAIL", 
"webmas...@example.org");
define("ENVELOPESENDER", "webser...@example.org");   // email address for
envelope sender of mail messages
 //   if a message gets
bounced, it goes to this address
define("COOKIEDOMAIN", "");   // domain in which cookies are set
define("HOMEURL", "https://$myhost/vcl";); // url to go to when someone clicks 
HOME or Logout