# scripts **Repository Path**: guoshaosong/scripts ## Basic Information - **Project Name**: scripts - **Description**: 这是平时可以用到的脚本 - **Primary Language**: Unknown - **License**: GPL-3.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 10 - **Forks**: 7 - **Created**: 2021-09-03 - **Last Updated**: 2023-11-05 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # scripts #### 介绍 {**以下个人常用脚本**} #### 目录索引 1. k8s脚本搭建 wget https://gitee.com/guoshaosong/scripts/raw/master/k8s_install.sh && sh k8s_install.sh 2. zabbix脚本搭建 wget https://gitee.com/guoshaosong/scripts/raw/master/zabbix.sh && sh zabbix.sh 3. 无盘启动脚本搭建 wget https://gitee.com/guoshaosong/scripts/raw/master/diskless.sh && sh diskless.sh 4. docker脚本搭建 wget https://gitee.com/guoshaosong/scripts/raw/master/docker_install.sh && sh docker_install.sh 5. mysql脚本搭建(编译安装) wget https://gitee.com/guoshaosong/scripts/raw/master/mysql_install.sh && sh mysql_install.sh 默认密码 111111,可下载脚本后自行修改 6. nginx脚本搭建(编译安装) wget https://gitee.com/guoshaosong/scripts/raw/master/nginx_install.sh && sh nginx_install.sh 7. php脚本搭建(编译安装) wget https://gitee.com/guoshaosong/scripts/raw/master/php_install.sh && sh php_install.sh #### docker安装mysql以及redis - docker run -d --name mysql -e MYSQL_ROOT_PASSWORD=123456 -p 3306:3306 mysql:5.7.31 - docker run --name redis-server -p 6379:6379 -d redis:6.0.8