[Sybase ASE] How to install Sybase on Linux

ENVIRONMENT
- Ubuntu 18.04 LTS
- Sybase ASE/16.0 SP03 PL02/EBF
Hi guys, I’m going to show how to install Sybase DB on Ubuntu Linux.
Step
Download ASE community edition from https://www.sap.com/products/sybase-ase.html
You’ve to click try now, then press register and download ASE suite for linux (in my case). Unzip the file and follow the instruction after that you run this command:
$ cd /path/to/download/ase_suite
$ tar -xvf file_name
$ ./setup.bin -i console
How to start Sybase Server
$ cd /home/path/to/sapase/
$ . ./SYBASE.sh
$ cd ASE_16_0/
$ cd install/
#run start server
$ startserver -f RUN_filename
#run start bck
$ startserver -f RUN_PROD
How to show server
$ ps -eaf | grep -i ase
How to connect db
$ isql64 -U sa -SProd
Password:
1>
#check version
1> select @@version
2> go
Thank you guys for your attention!
Stay tuned #IThack