-
Notifications
You must be signed in to change notification settings - Fork 0
/
INSTALL.txt
69 lines (49 loc) · 2.18 KB
/
INSTALL.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
CREATE THE Oracle DATABASE
--------------------------
This file describes how to create a Oracle database for Drupal.
If you control your databases through a web-based control panel,
check its documentation, as the following instructions are for the
command line only.
This step is only necessary if you don't already have a database
set-up (e.g. by your host). In the following examples, 'dba_user' is
an example Oracle user which has the CREATE and GRANT privileges. Use
the appropriate user name for your system.
Optionally, you can create a new tablespace for your Drupal site
datebase. Log into sqlplus by following command:
sqlplus dba_user
sqlplus will prompt for the 'dba_user' database password. At the
sqlplus prompt, enter following command:
CREATE TABLESPACE tablespace_name
DATAFILE 'file_directory_path'
SIZE filesize AUTOEXTEND ON NEXT extend_size;
where
'tablespace_name' is the name of you new tablespace
'file_directory_path' is the file location in database server
'filesize' is the initial file size, e.g. 50K, 1000M.
'extend_size' is the volumn for extension when data file is full
First, you must create a new user for your Drupal site. At the
sqlplus prompt, enter the following command:
CREATE USER username
IDENTIFIED BY "password";
DEFAULT TABLESPACE tablespace_name;
GRANT CONNECT, RESOURCE TO username;
where
'tablespace_name' is the name of you tablespace
'username' is the username of your Oracle account
'password' is the password required for that username
Note: Unless your database user has all of the privileges listed
above, you will not be able to run Drupal.
Oracle SPECIAL REQUIREMENTS
---------------------------
1. SYSTEM REQUIREMENT
Oracle driver for Drupal is fully tested with below softwares:
Oracle Database 10g Release 2 (10.2.0.1.0) for Linux x86,
Zend Core for Oracle v.2 Linux x86,
Zend Framework 1.0.0,
PHP Version 5.2.3,
Apache 2.2.3 (Debian)
You may use something newer than above, but there is no guarantee for
backward compatible.
2. TABLE PREFIX LIMITATION
Table prefix are limited in maximum 12 characters. Proved by testing, it
is suggested to use table prefix within 10 characters.