在 RAM 磁盘上运行测试数据库

在 RAM 磁盘上运行测试数据库

是否可以以非特权用户身份创建并启动 Postgresql 服务器,并且数据目录由同一用户拥有?我想运行测试并为其创建测试数据库,数据文件位于 RAM 磁盘上。

$ mkdir -p /dev/shm/tests
$ pg_createcluster 9.3 tests -d /dev/shm/tests/pgsql/data
install: cannot change permissions of ‘/etc/postgresql/9.3/tests’: No such file or directory
Error: could not create configuration directory; you might need to run this program with root privileges

如果sudo无法避免,有没有办法只输入一次管理员密码,以便后续测试运行不需要输入密码?我的意思是我想在测试后停止测试服务器及其数据目录。

答案1

pg_createcluster将坚持将配置文件放在预定义的特权位置。要解决这个问题,只需initdb直接调用:

/usr/lib/postgresql/9.3/bin/initdb /dev/shm/tests/pgsql/data

当然,您也可以配置sudo为不需要密码,但这确实是一个不同的问题,并且已经有很多答案。

答案2

好的,我花了一段时间才让它工作起来,但它是这样的:

def run(command, action_descr, env=None):
    print '\n%s' % termcolor.colorize(action_descr, termcolor.c.YELLOW)
    print '$ %s' % termcolor.colorize(command, termcolor.c.YELLOW)
    try:
        output = subprocess.check_output(command, env=env, shell=True)
    except subprocess.CalledProcessError as exc:
        print termcolor.colorize('FAIL:\n%s' % exc.output, termcolor.c.RED, True)
        raise
    else:
        print termcolor.colorize('OK', termcolor.c.GREEN, True)
        return output


def create_test_db_template():
    """Create test template database.
    """
    PG_DIR = run('pg_config --bindir', 'Getting the location of Postgresql executables').strip()
    PG_CTL = os.path.join(PG_DIR, 'pg_ctl')

    test_db_directory = settings.get('tests', 'db_directory')

    env = os.environ.copy()
    env['PGDATA'] = test_db_directory
    env['PGPORT'] = settings.get_test_db_port()

    try:
        status = run('%s status' % PG_CTL, 'Checking previous test server status', env)
    except subprocess.CalledProcessError:
        pass
    else:
        print status
        run('%s stop' % PG_CTL, 'Stopping previous instance of test server', env)

    run('rm -rf %s' % test_db_directory, 'Deleting server data directory')
    run('mkdir -p %s' % test_db_directory, 'Creating server data directory')
    run('%s initdb -o "--auth-host=trust --nosync"' % PG_CTL,
        'Initializing test server and data directory', env)

    pg_log_path = os.path.join(test_db_directory, 'logfile')
    try:
        run('%s start -w --log %s' % (PG_CTL, pg_log_path), 'Starting test server', env)
    except subprocess.CalledProcessError:
        print termcolor.colorize(open(pg_log_path).read(), termcolor.c.RED)
        raise

    for db_name, db_queries in INIT_DB_SQL:
        for db_query in db_queries:
            run('psql %s -c "%s"' % (db_name, db_query), 'Creating template database', env)

    test_template_db_url = 'postgresql://127.0.0.1:%s/%s' % (env['PGPORT'], TEST_TEMPLATE_DB_NAME)
    postgres_db_url = 'postgresql://127.0.0.1:%s/postgres' % (env['PGPORT'])
    ...

这有很多额外的代码,但你应该明白它的意思。

唯一需要手动做的事情是:

sudo chmod 777 /var/run/postgresql

此解决方案不需要 RAM 磁盘,但在用户空间启动 Postgresql 服务器的大部分解决方案都在这里。

要在 RAM 磁盘上运行所有这些,请test_db_directory = 'dev/shm/pgdata/'

相关内容