{"id":22870943,"url":"https://github.com/percona-lab/single_install","last_synced_at":"2025-03-31T11:27:11.967Z","repository":{"id":68884185,"uuid":"588583156","full_name":"Percona-Lab/single_install","owner":"Percona-Lab","description":"This repo provides a single click installation script to Percona Products","archived":false,"fork":false,"pushed_at":"2023-04-24T14:29:36.000Z","size":40,"stargazers_count":1,"open_issues_count":0,"forks_count":0,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-02-06T16:59:09.768Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"Shell","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Percona-Lab.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-01-13T13:33:26.000Z","updated_at":"2023-04-24T16:09:25.000Z","dependencies_parsed_at":"2025-02-06T16:52:23.474Z","dependency_job_id":"9c5dc82f-d9ac-44df-a1d4-dee3e41a6282","html_url":"https://github.com/Percona-Lab/single_install","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Percona-Lab%2Fsingle_install","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Percona-Lab%2Fsingle_install/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Percona-Lab%2Fsingle_install/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Percona-Lab%2Fsingle_install/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Percona-Lab","download_url":"https://codeload.github.com/Percona-Lab/single_install/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246460569,"owners_count":20781153,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-12-13T13:16:39.822Z","updated_at":"2025-03-31T11:27:11.962Z","avatar_url":"https://github.com/Percona-Lab.png","language":"Shell","readme":"# Single Install script\nThis repo provides a single click installation script to Percona Products\n\n\n## Usage\nCurrently we support installing Percona Server for MySQL with or without Percona Xtrabackup and Percona XtraDB Cluster (boostrapped as single node) with or without Percona Xtrabackup.\nSyntax is as follow:\n\n```\nUsage: main [-h] [-v] [-m] [-i] [-b]\nThis tool is used to install Percona Server, Percona XtraDB Cluster and Percona XtraBackup.\nAvailable options:      \n-h, --help\t\t\tPrint this help and exit\n-v, --verbose\t\t\tPrint script debug info \n-m [ps|pxc], --mode=[ps|pxc]\tWhich database server the script will install. Default ps\"\n-i, --interactive\t\tRun the script interactively to prompt the user for configuration values (not implemented)\n-b, --backup\t\t\tInstall Percona XtraBackup package in addition to database server\n```\n\n## Examples\n\n### Install PS without PXB\n\n```\ncurl -fsSL https://raw.githubusercontent.com/Percona-Lab/single_install/main/install_percona | \\\nbash -s -- --mode=ps\n\n\nStarting  'Percona Release' Repo configuraiton\nSuccess!  'Percona Release' Repo configured\nUpdating  and installing software for Percona Server\nCompleted  installation\nStarting  Percona Server services\nSuccess!!  Percona Server Installed!\n\nTo connect to your server, type:\nmysql -u root\n\n```\n\n### Install PS with PXB\n\n```\ncurl -fsSL https://raw.githubusercontent.com/Percona-Lab/single_install/main/install_percona | \\\nbash -s -- --mode=ps --backup\n\n\nRequest:  install Percona XtraBakcup\nStarting  'Percona Release' Repo configuraiton\nSuccess!  'Percona Release' Repo configured\nStarting  installation of Percona XtraBackup\nCompleted  installation of Percona XtraBackup\nUpdating  and installing software for Percona Server\nCompleted  installation\nStarting  Percona Server services\nSuccess!!  Percona Server Installed!\n\nTo connect to your server, type:\nmysql -u root\n\n```\n\n### Install PXC without PXB\n\n```\ncurl -fsSL https://raw.githubusercontent.com/Percona-Lab/single_install/main/install_percona | \\\nbash -s -- --mode=pxc\n\n\nStarting  'Percona Release' Repo configuraiton\nSuccess!  'Percona Release' Repo configured\nUpdating  and installing software for Percona XtraDB Cluster\nCompleted  installation\nStarting  Percona XtraDB Cluster services\nSuccess!!  Percona XtraDB Cluster Installed!\n\nTo connect to your server, type:\nmysql -u root\n\n```\n\n### Install PXC with PXB\n\n```\ncurl -fsSL https://raw.githubusercontent.com/Percona-Lab/single_install/main/install_percona | \\\nbash -s -- --mode=pxc --backup\n\n\nRequest:  install Percona XtraBakcup\nStarting  'Percona Release' Repo configuraiton\nSuccess!  'Percona Release' Repo configured\nStarting  installation of Percona XtraBackup\nCompleted  installation of Percona XtraBackup\nUpdating  and installing software for Percona XtraDB Cluster\nCompleted  installation\nStarting  Percona XtraDB Cluster services\nSuccess!!  Percona XtraDB Cluster Installed!\n\nTo connect to your server, type:\nmysql -u root\n\n```","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpercona-lab%2Fsingle_install","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fpercona-lab%2Fsingle_install","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fpercona-lab%2Fsingle_install/lists"}