Skip to content

Server

server#

About server#

server is a shell script that is used to create, start up, shut down and check the status of Altibase.

server { start | stop | restart | kill | status | create db_charset national_charset | startRoleManager | stopRoleManager } 

Syntax#

server

Parameters#

Parameter Description
start Starts up the Altibase process
stop Shuts down the Altibase process
restart Restarts the Altibase process
kill Forcibly termincates the Altibase process
status Displays the status of the Altibase process
create Creates a database that is 10MB in size, runs in noarchivelog mode, and uses the specified character sets
startRoleManager Starts the Altibase process as the role manager for Disaster Recovery
stopRoleManager Terminates the role manager

Description#

iSQL is used to execute SQL statements for creating, starting up and shutting down Altibase. These frequently used commands have been combined and provided in the form of the server shell script for the convenience of DBAs.

The server script includes the following functionalities:

  • Starting up the Altibase process
  • Shutting down the Altibase process
  • Restarting the Altibase process
  • Forcibly terminating the Altibase process
  • Displaying the result of querying SELECT * from TAB;
  • Creating an Altibase
  • Starting the Altibase process as the role manager

For more information about using SQL to manage Altibase databases, please refer to the SQL Reference.

Examples#

The server shell command is used as follows:

$ server start
$ server restart
$ server stop
$ server status
$ server kill
$ server create ksc5601 utf16
$ server startRoleManager
$ server stopRoleManager

References#

Please refer to the Administrator's Manual and SQL Reference.