Sponsored Content
Top Forums UNIX for Dummies Questions & Answers Help to install Sybil software Post 302501031 by zaxxon on Wednesday 2nd of March 2011 09:50:54 AM
Old 03-02-2011
Quote:
Step two : OK, but... The original file has been replaced by another file wich seems to give the same results ?
There is many substeps in there, no clue which you talk about.

Quote:
Step theree :
- Unpack : OK
- Copy of directory : OK
- Edit of the first line of chado_demo/conf/sybil.conf : NO
===> I don't understand what I should write ????
The install doc says:
Quote:
Edit the first (uncommented) line in chado_demo/conf/Sybil.conf to reference the correct database. Initially this line reads as follows (in the format "schema:dbms:server/host"):ChadoMart:Postgres:localhost
So edit the listed file. The 1st line seems to point to the database. Since you created a database, iirc, you should place it's name there, so the application knows where to connect to. I am not able to download that stuff to have a look into it, but you might also get a grip on some PostgreSQL documentation to get familiar a bit with it.

Quote:
- Shared URL path : Dunno...
===> I put the path as said (can provide the file too)
I can't explain better than the doc already does:
Quote:
# The first <path>, under the location 'shared_htdocs' must be changed to the URL
# of the directory to which src/content/shared/htdocs was copied:
#
<location name='shared_htdocs'>
<path>/sybil_demo/</path>
To give you an overview how things work (usually)

You have a webserver. In this case this is an Apache 2. So it has some directory, htdocs for example, where the default stuff is in, it offers to the public via http. You can configure your Apache so that it offers more directories than just that etc. One of it should point at least to the place, where this Sybil software got the content it offers via web. Usually some directory with a index file (html, php, ...). This web interface is used to enter and retrieve data, when you work with this application (from the glimpse at it).
The data this web application receives is stored and supplied from the database, PostgreSQL in this case which sits in the "background".

Such applications work with a normal database user to connect to the database. The webserver has to point to the directory, where the web content is placed.

Maybe there is some other installation instructions in the downloaded archive. I guess I can't help you more from this point.
 

10 More Discussions You Might Find Interesting

1. Solaris

software install on solaris 10

what is the command to install a software from a remote server or cd? pkg_add -rv bash < freebsd i need the same command on solaris i try to use pkgadd but no success (0 Replies)
Discussion started by: litch
0 Replies

2. UNIX for Dummies Questions & Answers

where can i get software for install unix

Need help guys, i need to know where can i get a unix on solaris 10 software to install unix into my computer since i dont have internet. I want to start playing on them at home. Any help appreciated .... sonny (1 Reply)
Discussion started by: rxsonny
1 Replies

3. UNIX for Dummies Questions & Answers

permission to install software

Hello everyone, I want to install a software on an external hard disk. I used Fedora core 6 whose default shell is bash. As user I have changed to sh shell because in order to install I have to use the sh shell. I had changed permission on all the files using sh-3.1$ chmod +x... (6 Replies)
Discussion started by: sitij109
6 Replies

4. HP-UX

How to install xbrowser software on HPUX?

Hi fnds, Can anybody tell me how to install x brower software on HP-UX and after successfull installation how I can launch the x browser. Thanks, Vinodky (0 Replies)
Discussion started by: vinodky
0 Replies

5. UNIX for Dummies Questions & Answers

trying to install the audio software in my pc

Hi, my friend refer me here he was saying that they have the best solution and really good wisdom of the UNIX system , i am learning and trying to install the audio software in my pc , but it 's not working may be i am forgetting something. (2 Replies)
Discussion started by: maggilane
2 Replies

6. UNIX for Dummies Questions & Answers

How to use yast2 to install software in SUSE?

Hi I ssh to a remote server which is running in SUSE. And I want to install apache2.0 there. Then I used yast2 to install it. But after installing it, I go to the terminal and type" apache -version" to check if apache is installed there. And it said "-bash: apache: command not found" I don't... (0 Replies)
Discussion started by: AlexCheung
0 Replies

7. Red Hat

Install a Software on Fedora!

Hi, I've been busy since this afternoon with an editor called e3 installation process! I have the source code and I think that I have to make a .C file first then try make command ... ./configure doesn't work, there is no useful README and I am completely lost... The file for Fedora x86_64 is... (1 Reply)
Discussion started by: almirzaee
1 Replies

8. Red Hat

How to Customize/install software package after?

Hi Team While installation of RHEL, By mistake I have selected "Customize Later". RHEL has installed with basic software. NOw I need to install the other package which is available in DVD, How Can I get the same package selection window to install the software ? (0 Replies)
Discussion started by: atul9806
0 Replies

9. AIX

Install software in another directory with smitty install

Hello, I would like to ask if someone knows if is possible to install sofware via smitty or installp in another directorie , or we have to accept the default location? i would like to intall in /opt folder , but smitty installed it in /usr Thanks in advance (4 Replies)
Discussion started by: prpkrk
4 Replies

10. Red Hat

User to install software

Hi there. I'm setting up my first "proper" server using RHEL - in the past I've only had various test servers etc running, so want to make sure I'm doing things properly. When installing s/w, let's say Apache, I don't want it to run as root, correct? Should I then create a new user "apache"... (4 Replies)
Discussion started by: eludlow
4 Replies
page_util_quote(3tcl)					      Parser generator tools					     page_util_quote(3tcl)

__________________________________________________________________________________________________________________________________________________

NAME
page_util_quote - page character quoting utilities SYNOPSIS
package require page::util::quote ?0.1? package require snit ::page::util::quote::unquote char ::page::util::quote::quote'tcl char ::page::util::quote::quote'tclstr char ::page::util::quote::quote'tclcom char _________________________________________________________________ DESCRIPTION
This package provides a few utility commands to convert characters into various forms. API
::page::util::quote::unquote char A character, as stored in an abstract syntax tree by a PEG processor (See the packages grammar::peg::interpreter, grammar::me, and their relations), i.e. in some quoted form, is converted into the equivalent Tcl character. The character is returned as the result of the command. ::page::util::quote::quote'tcl char This command takes a Tcl character (internal representation) and converts it into a string which is accepted by the Tcl parser, will regenerate the character in question and is 7bit ASCII. The string is returned as the result of this command. ::page::util::quote::quote'tclstr char This command takes a Tcl character (internal representation) and converts it into a string which is accepted by the Tcl parser and will generate a human readable representation of the character in question. The string is returned as the result of this command. The string does not use any unprintable characters. It may use backslash-quoting. High UTF characters are quoted to avoid problems with the still prevalent ascii terminals. It is assumed that the string will be used in a double-quoted environment. ::page::util::quote::quote'tclcom char This command takes a Tcl character (internal representation) and converts it into a string which is accepted by the Tcl parser when used within a Tcl comment. The string is returned as the result of this command. BUGS, IDEAS, FEEDBACK This document, will undoubtedly contain bugs and other problems. Please report such in the category page of the Tcllib SF Trackers [http://sourceforge.net/tracker/?group_id=12883]. Please also report any ideas for enhancements you may have. KEYWORDS
page, parser generator, quoting, text processing CATEGORY
Page Parser Generator COPYRIGHT
Copyright (c) 2007 Andreas Kupries <andreas_kupries@users.sourceforge.net> page 1.0 page_util_quote(3tcl)
All times are GMT -4. The time now is 07:39 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy