parent
c509dbf9a8
commit
996a7f165d
@ -0,0 +1,32 @@
|
||||
#!/usr/bin/node
|
||||
|
||||
import mysql from 'mysql2/promise'
|
||||
import select, { Separator } from '@inquirer/select'
|
||||
import chalk from 'chalk'
|
||||
|
||||
const log = console.log
|
||||
|
||||
/**
|
||||
*
|
||||
*
|
||||
*
|
||||
*/
|
||||
|
||||
const install = await select({
|
||||
message: 'Install',
|
||||
choices: [{
|
||||
name: 'Nginx',
|
||||
value: 'nginx.js'
|
||||
}, {
|
||||
name: 'Mariadb',
|
||||
value: 'mariadb.js'
|
||||
}, {
|
||||
name: 'php-fpm',
|
||||
value: 'php-fpm.js'
|
||||
}, {
|
||||
name: 'Lets Encrypt',
|
||||
value: 'lets-encrypt.js'
|
||||
}]
|
||||
})
|
||||
|
||||
log(install)
|
@ -1,10 +1,10 @@
|
||||
curl -LsS -O https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
|
||||
sudo bash mariadb_repo_setup --mariadb-server-version=10.6
|
||||
//curl -LsS -O https://downloads.mariadb.com/MariaDB/mariadb_repo_setup
|
||||
//sudo bash mariadb_repo_setup --mariadb-server-version=10.6
|
||||
|
||||
apt update
|
||||
apt install mariadb-server
|
||||
//apt update
|
||||
//apt install mariadb-server
|
||||
|
||||
mariadb-secure-installation
|
||||
//mariadb-secure-installation
|
||||
|
||||
systemctl start mariadb
|
||||
systemctl enable mariadb
|
||||
//systemctl start mariadb
|
||||
//systemctl enable mariadb
|
Loading…
Reference in new issue