linux 一键安装
时间: 2023-11-03 17:03:26 浏览: 185
Linux一键安装是通过使用OneinStack工具来自动安装所需的环境和软件。您可以选择自动安装或者交互安装。以下是一些示例代码:
自定义手动安装代码:
```
yum -y install wget screen # for CentOS/Redhat
# apt-get -y install wget screen # for Debian/Ubuntu
wget http://mirrors.linuxeye.com/oneinstack-full.tar.gz
tar xzf oneinstack-full.tar.gz
cd oneinstack
# 如果需要修改目录(安装、数据存储、Nginx日志),请修改options.conf文件
screen -S oneinstack # 如果网路出现中断,可以执行命令`screen -R oneinstack`重新连接安装窗口
./install.sh # 注:请勿sh install.sh或者bash install.sh这样执行
```
自动安装代码:
```
tomcat 9.0 、jdk 1.8 、mysql5.7 数据库密码 mostchh
wget http://mirrors.linuxeye.com/oneinstack-full.tar.gz && tar xzf oneinstack-full.tar.gz && ./oneinstack/install.sh --nginx_option 1 --tomcat_option 1 --jdk_option 2 --db_option 2 --dbinstallmethod 1 --dbrootpwd mostchh --pureftpd --redis --memcached --iptables --reboot
```
如果您遇到无法链接到数据库的问题,可能是因为没有给数据库远程授权。您可以在Linux中登录到mysql后执行以下命令给数据库远程授权:
```
grant all privileges on *.* to 'root'@'%' identified by '数据库密码' with grant option \g
```
阅读全文