一个用于从yaml配置文件激活aiida环境的软件包
项目描述
activate-aiida
这是一个小型的软件包,围绕内部aiida-core工具(v1.2)构建,用于快速从零开始创建和启动隔离的AiiDA环境。它专注于开发,但也更广泛地使用。
基本步骤如下
- 购买一台新电脑
- 安装Conda
- 在Linux上
wget https://repo.continuum.io/miniconda/Miniconda3-latest-Linux-x86_64.sh -O miniconda.sh
bash miniconda.sh
conda update conda
- 在Linux上
- 创建开发环境
conda env create -n aiida-dev -f aiida-dev-env.yml
conda activate aiida-dev
- 这是aiida-core中的
environment.yaml
的副本,但包含了所有额外的开发包,以及其他好东西,如jupyter lab
- 以开发模式安装aiida-core
pip install --no-deps -e .
- 运行
source aiida-activate --help
以查看选项- 需要使用
source
来调用,以便设置一些环境变量 - 运行
source aiida-activate setup.yaml -c -w 4
将会- 如果不存在,则在
store_path
/pgsql初始化数据库 - 终止任何正在运行的postgres服务器
- 以所需设置启动postgres服务器
- 确保RabbitMQ正在运行
- 将aiida存储库路径设置为
store_path
/.aiida - 运行
verdi quicksetup --config=setup.yaml
,如果配置文件尚不存在 - 将配置文件设置为默认配置
- 停止任何当前守护进程,并启动一个具有4个工作进程的守护进程
- 激活 verdi 选项卡完成功能
- 如果不存在,则在
- 需要使用
- 完成操作后,
aiida-deactivate
将停止守护进程和 postgres 服务器
示例配置文件
store_path: /home/csewell/Documents/aiida-core/test_repo
su_db_username: chrisjsewell
# su_db_password: # not yet supported
db_engine: postgresql_psycopg2
db_backend: django
db_host: localhost
db_port: 5432
db_name: basic_db
db_username: chrisjsewell
db_password: niceday
profile: basic
email: christopher.sewell@epfl.ch
first_name: Chris
last_name: Sewell
institution: EPFL
non_interactive: true
示例命令行界面
$ source aiida-activate setup.yaml -c -w 4
parsed args: -c true -w 4 setup.yaml
- Reading variables from setup.yaml
- Setting Up SQL Database
PGDATA='/home/csewell/Documents/aiida-core/test_repo/pgsql'
- Activating Postgres server: /home/csewell/Documents/aiida-core/test_repo/pgsql on port 5432
waiting for server to start.... done
server started
Logging Postgres server to: /home/csewell/Documents/aiida-core/test_repo/pgsql/postgres_env_.log
- Ensure RabbitMQ Running
- Setting Up AiiDa Database
AIIDA_PATH='/home/csewell/Documents/aiida-core/test_repo'
Info: Database user "chrisjsewell" already exists!
Use it? [y/N]: y
Success: created new profile `basic`.
Info: migrating the database.
Operations to perform:
Apply all migrations: auth, contenttypes, db
Running migrations:
Applying contenttypes.0001_initial... OK
Applying contenttypes.0002_remove_content_type_name... OK
Applying auth.0001_initial... OK
Applying auth.0002_alter_permission_name_max_length... OK
Applying auth.0003_alter_user_email_max_length... OK
Applying auth.0004_alter_user_username_opts... OK
Applying auth.0005_alter_user_last_login_null... OK
Applying auth.0006_require_contenttypes_0002... OK
Applying auth.0007_alter_validators_add_error_messages... OK
Applying auth.0008_alter_user_username_max_length... OK
Applying auth.0009_alter_user_last_name_max_length... OK
Applying auth.0010_alter_group_name_max_length... OK
Applying auth.0011_update_proxy_permissions... OK
Applying db.0001_initial... OK
Applying db.0002_db_state_change... OK
Applying db.0003_add_link_type... OK
Applying db.0004_add_daemon_and_uuid_indices... OK
Applying db.0005_add_cmtime_indices... OK
Applying db.0006_delete_dbpath... OK
Applying db.0007_update_linktypes... OK
Applying db.0008_code_hidden_to_extra... OK
Applying db.0009_base_data_plugin_type_string... OK
Applying db.0010_process_type... OK
Applying db.0011_delete_kombu_tables... OK
Applying db.0012_drop_dblock... OK
Applying db.0013_django_1_8... OK
Applying db.0014_add_node_uuid_unique_constraint... OK
Applying db.0015_invalidating_node_hash... OK
Applying db.0016_code_sub_class_of_data... OK
Applying db.0017_drop_dbcalcstate... OK
Applying db.0018_django_1_11... OK
Applying db.0019_migrate_builtin_calculations... OK
Applying db.0020_provenance_redesign... OK
Applying db.0021_dbgroup_name_to_label_type_to_type_string... OK
Applying db.0022_dbgroup_type_string_change_content... OK
Applying db.0023_calc_job_option_attribute_keys... OK
Applying db.0024_dblog_update... OK
Applying db.0025_move_data_within_node_module... OK
Applying db.0026_trajectory_symbols_to_attribute... OK
Applying db.0027_delete_trajectory_symbols_array... OK
Applying db.0028_remove_node_prefix... OK
Applying db.0029_rename_parameter_data_to_dict... OK
Applying db.0030_dbnode_type_to_dbnode_node_type... OK
Applying db.0031_remove_dbcomputer_enabled... OK
Applying db.0032_remove_legacy_workflows... OK
Applying db.0033_replace_text_field_with_json_field... OK
Applying db.0034_drop_node_columns_nodeversion_public... OK
Applying db.0035_simplify_user_model... OK
Applying db.0036_drop_computer_transport_params... OK
Applying db.0037_attributes_extras_settings_json... OK
Applying db.0038_data_migration_legacy_job_calculations... OK
Applying db.0039_reset_hash... OK
Applying db.0040_data_migration_legacy_process_attributes... OK
Applying db.0041_seal_unsealed_processes... OK
Applying db.0042_prepare_schema_reset... OK
Applying db.0043_default_link_label... OK
Applying db.0044_dbgroup_type_string... OK
Success: database migration completed.
- Starting AiiDA
Rescanning aiida plugins
Setting default profile: basic
Success: basic set as default profile
Stopping any current daemon
Profile: basic
Daemon was not running
Activating daemon for profile: basic with 4 workers
Activating verdi tab completion
- Finishing Status:
✓ config dir: /home/csewell/Documents/aiida-core/test_repo/.aiida
✓ profile: On profile basic
✓ repository: /home/csewell/Documents/aiida-core/test_repo/.aiida/repository/basic
✓ postgres: Connected as chrisjsewell@localhost:5432
✓ rabbitmq: Connected to amqp://127.0.0.1?heartbeat=600
✓ daemon: Daemon is running as PID 22227 since 2020-04-10 00:55:10
$ deactivate-aiida
Stopping Daemon:
Profile: basic
Waiting for the daemon to shut down... OK
Stopping Postgres:
waiting for server to shut down.... done
server stopped
Done!
故障排除
如果 postgres 没有正确停止,可能会出现此错误
psql: could not connect to server: No such file or directory
在这种情况下,您可能需要手动删除 path/to/database/postmaster.pid
文件(见这里)
如果端口被留下未关闭(见这里)
>> sudo lsof -i :PORTNUM
>> sudo kill -9 PID
项目详细信息
下载文件
下载适用于您平台的应用程序。如果您不确定选择哪个,请了解有关安装包的更多信息。
源代码发行版
activate-aiida-0.3.0.tar.gz (8.5 kB 查看哈希值)