Where is db_setup.sql ?

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-02-2010 05:59 PM
I can't find "db_setup.sql" it is not enclosed "alfresco-community-3.4.a.zip" - so where can I find it ?
btw, in the install manual files are mentioned which no longer exists e.g. alfresco-community-war-3.3.tar.gz or Alfresco-Community-3.3-Linux-x86-Install.
Thanks in advance
Vertex
btw, in the install manual files are mentioned which no longer exists e.g. alfresco-community-war-3.3.tar.gz or Alfresco-Community-3.3-Linux-x86-Install.
Thanks in advance
Vertex
Labels:
- Labels:
-
Archive
6 REPLIES 6

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2010 05:50 PM
I am also looking for this, to install Alfresco on Linux (Ubuntu) I have tomcat, java and mysql installed, and need that scprit before deploying the alfresco war, does anyone know where this file is or what it does?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-25-2010 06:41 PM
setup_db.sql can be manually replaced by:
create database alfresco default character set utf8 collate utf8_bin;grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option;grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco' with grant option;

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-26-2010 11:11 AM
setup_db.sql can be manually replaced by:create database alfresco default character set utf8 collate utf8_bin;grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option;grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco' with grant option;
Thank You!

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-09-2011 06:46 PM
setup_db.sql can be manually replaced by:create database alfresco default character set utf8 collate utf8_bin;grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option;grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco' with grant option;
Thank You!
how can I dot in Postgresql?
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2011 05:45 AM
AFAIK there is no setup script for postgresql. I created a database and login through the pgAdmin console and it worked.

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
08-10-2011 07:41 AM
setup_db.sql can be manually replaced by:create database alfresco default character set utf8 collate utf8_bin;grant all on alfresco.* to 'alfresco'@'localhost' identified by 'alfresco' with grant option;grant all on alfresco.* to 'alfresco'@'localhost.localdomain' identified by 'alfresco' with grant option;
Thank You!
how can I dot in Postgresql?
Here is the script for creating alfresco database in postgreSQL -
CREATE DATABASE alfresco
WITH OWNER = alfresco
ENCODING = 'UTF8'
TABLESPACE = pg_default
LC_COLLATE = 'English_United States.1252'
LC_CTYPE = 'English_United States.1252'
CONNECTION LIMIT = -1;
