OneinStack建站脚本的安装部署

OneinStack建站脚本的安装部署

CludeChn
2023-04-13 / 0 评论 / 23 阅读 / 正在检测是否收录...
温馨提示:
本文最后更新于2023年04月30日,已超过571天没有更新,若内容或图片失效,请留言反馈。

OneinStack安装脚本是使用shell编写的,以便快速部署LEMP/LAMP/LNMP/LNMPA/LTMP(Linux、Nginx/Tengine/OpenResty、MySQL在生产环境中/MariaDB/Percona、PHP、JAVA),适用于RHEL7、8、9(包括CentOS、RedHat、AlmaLinux、Rocky)、Debian9、10、11、Ubuntu16、18、20、22和Fedora27+等操作系统。

包含以下组合

  • lnmp(Linux + Nginx+ MySQL/MongoDB+ PHP)
  • lamp(Linux + Apache+ MySQL/MongoDB+ PHP)
  • lnmpa(Linux + Nginx+ MySQL/MongoDB+ PHP+ Apache):Nginx处理静态,Apache处理动态PHP
  • lnmt(Linux + Nginx+ MySQL/MongoDB+ Tomcat):Nginx处理静态,Tomcat(JDK)处理JAVA
  • lnpp(Linux + Nginx+ PostgreSQL+ PHP)
  • lapp(Linux + Apache+ PostgreSQL+ PHP)

支持系统版本

  • CentOS 7~9(包括redhat,AlmaLinux,Rocky,Anolis)
  • Debian 9、10、11
  • Ubuntu 16、18、20、22
  • Fedora 27+
  • Deepin
  • openEuler,EulerOS
  • Kylin
  • Amazon Linux 2
  • Aliyun Linux 2~3,TencentOS 2~3

特性

  • 持续不断更新,支持交互、无人值守安装
  • 源码编译安装,大多数源码是最新stable版,并从官方网址下载
  • 提供多个数据库版本(MySQL-8.0, MySQL-5.7, MySQL-5.6, MySQL-5.5, MariaDB-10.4,MariaDB-10.3,MariaDB-10.2,MariaDB-5.5,Percona-8.0, Percona-5.7, Percona-5.6, Percona-5.5,PostgreSQL, MongoDB)
  • 提供多个PHP版本(PHP-8.2,PHP-8.1,PHP-8.0,PHP-7.4,PHP-7.3,PHP-7.2,PHP-7.1,PHP-7.0,PHP-5.6, PHP-5.5,PHP-5.4,PHP-5.3)
  • 提供Nginx、Tengine、OpenResty、Apache和nginx waf功能
  • 提供多个Tomcat版本(Tomcat-10, Tomcat-9,Tomcat-8,Tomcat-7)
  • 提供多个JDK版本(OpenJDK-8, OpenJDK-11)
  • 根据自己需求安装PHP缓存加速器,提供ZendOPcache、xcache、apcu、eAccelerator。及php加解密工具ionCube、ZendGuardLoader
  • 根据自己需求安装Nodejs、Pureftpd、phpMyAdmin
  • 根据自己需求安装Memcached、Redis
  • jemalloc优化MySQL、Nginx
  • 提供添加虚拟主机脚本
  • 提供Nginx/Tengine/OpenResty/Apache、PHP、Redis、Memcached、phpMyAdmin升级脚本
  • 提供本地备、远程(rsync)、阿里云OSS、腾讯云COS、又拍云、七牛云、亚马逊S3和Dropbox备份脚本

开源软件版本

OneinStack

安装方式

自动脚本

访问自动化脚本网址: 自动安装 ,根据自己的需求选择安装内容。最下方生成安装脚本,复制到服务器上直接执行即可。

OneinStack自动安装

运行脚本最好使用screen命令开一个窗口执行,以保证Shell不会中断。

交互安装

安装发行版的依赖项,下载源代码并运行安装脚本。

CentOS/Redhat

yum -y install wget screen

Debian/Ubuntu

apt-get -y install wget screen

下载源代码并安装

wget http://mirrors.linuxeye.com/oneinstack-full.tar.gz
tar xzf oneinstack-full.tar.gz
cd oneinstack

如果在安装过程中断开连接,则可以执行命令以重新连接到安装窗口

screen -S oneinstack

如果需要修改目录(安装、数据存储、Nginx日志),请在运行install.sh前修改文件options.conf

./install.sh

安装第二个PHP版本

~/oneinstack/install.sh --mphp_ver 54
#/安装PHP5.4版本,--mphp_ver 54;PHP8.2版本,--mphp_ver 82

添加扩展

~/oneinstack/addons.sh

添加虚拟主机

~/oneinstack/vhost.sh

删除虚拟主机

~/oneinstack/vhost.sh --del

添加FTP虚拟用户

~/oneinstack/pureftpd_vhost.sh

备份

~/oneinstack/backup_setup.sh    // Backup parameters
~/oneinstack/backup.sh    // Perform the backup immediately
crontab -l    // Can be added to scheduled tasks, such as automatic backups every day 1:00
  0 1 * * * cd ~/oneinstack/backup.sh  > /dev/null 2>&1 &

管理服务

Nginx/Tengine/OpenResty:

systemctl {start|stop|status|restart|reload} nginx

MySQL/MariaDB/Percona

systemctl {start|stop|restart|reload|status} mysqld

PostgreSQL:

systemctl {start|stop|restart|status} postgresql

MongoDB:

systemctl {start|stop|status|restart|reload} mongod

PHP:

systemctl {start|stop|restart|reload|status} php-fpm

Apache:

systemctl {start|restart|stop} httpd

Tomcat:

systemctl {start|stop|status|restart} tomcat

Pure-FTPd:

systemctl {start|stop|restart|status} pureftpd

Redis:

systemctl {start|stop|status|restart|reload} redis-server

Memcached:

systemctl {start|stop|status|restart|reload} memcached

升级

~/oneinstack/upgrade.sh

卸载

~/oneinstack/uninstall.sh
0

评论 (0)

取消