Author: cgr | Language: text |
Description: ase | Timestamp: 2018-01-16 19:08:42 +0000 |
View raw paste | Reply |
Skip to content
vabsnanoti
Just another WordPress.com site
vabsnanoti
Installation & configuration of Sybase DB (15.7) Server on Linux
Download the software:
Setting up Sybase Server by tgz(bin) :
For a licensed version you need to go here: http://sybase.subscribenet.com (account required) or to the eShop at sybase.com: http://eshop.sybase.com/eshop/buy?id=19517
To get a free download you can go to this page http://www.sybase.com/ase_1500devel.
Prepare the Operating System:
Make sure that the file system for the Sybase software is big enough. A full installation needs approx. 1.5 GB so 4 GB should give you enough room to handle upgrades too. we install the software in /opt/Sybase And storing Database files in /var/sybase.
Become root and add a group “sybase” and a user “sybase” to the system. Also create the needed directories.
groupadd sybase
useradd -g sybase -d /opt/sybase sybase
mkdir -p /opt/sybase
mkdir -p /var/sybase
passwd sybase
chown sybase:sybase /opt/sybase
chown sybase:sybase /var/sybase
Now Use
sysctl kernel.shmmax
And configure
sysctl -w kernel.shmmax=274877906944
Also added in
Vi /etc/sysctl.conf
kernel.shmmax=274877906944
Installation of the software:
So, switch to the newly created user:
su - sybase
You should now be in the directory /opt/sybase. Make a work directory and put the downloaded Sybase software in it.
mkdir install
cd install
cp /root/ase1570_linx8664_64_02.tgz /opt/sybase/install
tar –xf ase1570_linx8664_64_02.tgz
Now start the installation
./setup.bin
Preparing to install...
Extracting the JRE from the installer archive...
Unpacking the JRE...
Extracting the installation resources from the installer archive...
Configuring the installer for this system's environment...
Launching installer...
Preparing CONSOLE Mode Installation...
Sybase Adaptive Server Enterprise Suite (created with InstallAnywhere)
Intro
------------
InstallAnywhere will guide you through the installation of Sybase Adaptive
Server Enterprise Suite 15.5 ESD2.
It is strongly recommended that you quit all programs before continuing with
this installation.
Respond to each prompt to proceed to the next step in the installation. If you
want to change something on a previous step, type 'back'.
You may cancel this installation at any time by typing 'quit'.
PRESS <ENTER> TO CONTINUE:
Choose Install Folder
---------------------
Where would you like to install?
Default Install Folder: /home/sybase/SYBASE_ASE
ENTER AN ABSOLUTE PATH, OR PRESS <ENTER> TO ACCEPT THE DEFAULT
:
The directory /home/sybase/SYBASE_ASE does not exist. Do you want to create it?
(Y/N): Y
Choose Install Set
------------------
Please choose the Install Set to be installed by this installer.
->1- Typical
2- Full
3- Customize...
ENTER THE NUMBER FOR THE INSTALL SET, OR PRESS <ENTER> TO ACCEPT THE DEFAULT
:
Software License Type Selection
-------------------------------
What would you like to do?
->1- Install licensed copy of Sybase Adaptive Server Enterprise Suite
2- Install Free Developer Edition of Sybase Adaptive Server Enterprise Suite
3- Install Express Edition of Sybase Adaptive Server Enterprise Suite
4- Evaluate Sybase Adaptive Server Enterprise Suite
Enter one of the options above: 2
End-user license agreement
--------------------------
1) All regions
Please enter the number of the location you are installing. (1-1) (DEFAULT:
1):
IMPORTANT - READ CAREFULLY BEFORE USING THE ACCOMPANYING
SOFTWARE
SYBASE(R) ADAPTIVE SERVER(R) ENTERPRISE
DEVELOPER'S EDITION v15.5.x
LICENSE AGREEMENT
NOTICE TO USER: BY INSTALLING OR USING THIS SOFTWARE YOU
ACCEPT ALL THE TERMS AND CONDITIONS OF THIS AGREEMENT.
PLEASE READ IT CAREFULLY.
THE FOLLOWING TERMS AND CONDITIONS ("AGREEMENT") SHALL
GOVERN YOUR INSTALLATION AND USE OF THE ACCOMPANYING
ADAPTIVE SERVER ENTERPRISE DEVELOPER'S EDITION v15.5.x
SOFTWARE PROGRAM, DOCUMENTATION AND RELATED EXPLANATORY
MATERIALS (THE "PROGRAM"). BY INSTALLING AND USING THE
PROGRAM YOU AGREE TO ABIDE BY THE TERMS AND CONDITIONS OF
THIS AGREEMENT. IF YOU DO NOT ACCEPT OR AGREE WITH THESE
TERMS, YOU MAY NOT INSTALL OR USE THE PROGRAM.
YOU ARE REQUIRED TO ACCEPT THE TERMS OF THE AGREEMENT BEFORE
Press ENTER to read the text [Type 'back' and press ENTER to skip the text]
:
I agree to the terms of the Sybase license for the install location
specified. (Y/N): Y
Pre-Installation Summary
------------------------
Please Review the Following Before Continuing:
Product Name:
Sybase Adaptive Server Enterprise Suite
Install Folder:
/home/sybase/SYBASE_ASE
Product Features:
Adaptive Server Enterprise,
Open Client,
DB-Library,
jConnect 6.0 for JDBC,
jConnect 7.0 for JDBC,
Interactive SQL,
QPTune,
Sybase Central,
Adaptive Server Plug-in,
SySAM Plug-in,
Agent Management Console,
SySAM License Utilities,
Unified Agent,
ASE Agent Plug-in,
ASE ODBC Driver
Disk Space Information (for Installation Target):
Required: 1,141,741,287 bytes
Available: 2,447,298,560 bytes
Ready To Install
----------------
InstallAnywhere is now ready to install Sybase Adaptive Server Enterprise Suite
This paste is large and only partially shown.
View full paste
View raw paste | Reply |