pg-server-9.4-linux-i386
v9.4.4
Published
PostgreSQL Server 9.4 for Linux x86 32-bit
Downloads
10
Readme
PostgreSQL Server 9.4 for Linux x86 32-bit
Install and run PostgreSQL server under the current user inside of the application directory.
npm install pg-server-9.4-linux-i386
Provides function for spawning PostgreSQL server instance specifying the data directory and configuration options. Returns ChildProcess
.
var startServer = require('pg-server-9.4-linux-i386');
/*
* Start the PostgreSQL server
* @param {String} dataDir Directory will be initialized if does not exist
* @param {Object} config Settings for postgresql.conf
*/
var postgres = startServer('dbdata', { port: 12345 });
postgres.stdout.on('data', function (data) {
console.log('stdout: ' + data);
});
postgres.stderr.on('data', function (data) {
console.log('stderr: ' + data);
});
postgres.on('close', function (code) {
console.log('child process exited with code ' + code);
});
// Later on, stop server...
postgres.kill();
Default Settings
- Default user name will be the the same as the user name for on the system.
- Default password is
numtel
as specified in thedefaultpw
file. - Default database is
postgres
. - Default port is
5432
(may be changed withport
configuration setting).
License
PostgreSQL