Linux一键式安装JDK、Mysql、Redis、Nginx(附带安装包,无需手动配置密码等)
以下是一个简化版的Linux一键式安装JDK、MySQL、Redis和Nginx的脚本示例。请注意,这个脚本仅供参考,实际部署时应根据具体环境进行必要的安全加固和配置调整。
#!/bin/bash
# 更新系统并安装必要的软件包
sudo apt-update
sudo apt-get install -y apt-transport-https ca-certificates curl software-properties-common
# 安装JDK
sudo apt-get install -y openjdk-11-jdk
# 安装MySQL
echo "mysql-server mysql-server/root_password password your_password" | sudo debconf-set-selections
echo "mysql-server mysql-server/root_password_again password your_password" | sudo debconf-set-selections
sudo apt-get install -y mysql-server
# 安装Redis
sudo apt-get install -y redis-server
# 安装Nginx
sudo apt-get install -y nginx
# 启动服务
sudo service mysql start
sudo service redis-server start
sudo service nginx start
请替换your_password
为你想要设置的MySQL root用户密码。
这个脚本仅适用于基于Debian的系统(如Ubuntu),对于其他Linux发行版,如CentOS,你需要使用对应的包管理器命令(如yum
或dnf
)和配置方式。
评论已关闭