kodbox安装向导
创始人
2024-06-02 19:45:45
0

kodbox安装向导

1、环境准备

主机名ip地址用途
kodbox10.0.0.79相当于web
kodbox-mysql10.0.0.80存放网站或者用户信息

2、kodbox-mysql–>部署redis和mysql

2.1 部署redis

2.2.1 安装redis并开启服务

yum install -y redis

2.2.2 修改redis远程访问权限并开启服务

grep -wn bind /etc/redis.conf
61:bind 127.0.0.1 172.16.1.80systemctl enable redis
systemctl start redis

2.2 部署Mysql

2.2.1 安装mysql并启动服务

yum install -y mariadb-server
systemctl enable mariadb && systemctl start mariadb

2.2.2 初始化数据库

$ mysql_secure_installation NOTE: RUNNING ALL PARTS OF THIS SCRIPT IS RECOMMENDED FOR ALL MariaDBSERVERS IN PRODUCTION USE!  PLEASE READ EACH STEP CAREFULLY!In order to log into MariaDB to secure it, we'll need the current
password for the root user.  If you've just installed MariaDB, and
you haven't set the root password yet, the password will be blank,
so you should just press enter here.Enter current password for root (enter for none): 
OK, successfully used password, moving on...Setting the root password ensures that nobody can log into the MariaDB
root user without the proper authorisation.Set root password? [Y/n] y
New password: 
Re-enter new password: 
Password updated successfully!
Reloading privilege tables..... Success!By default, a MariaDB installation has an anonymous user, allowing anyone
to log into MariaDB without having to have a user account created for
them.  This is intended only for testing, and to make the installation
go a bit smoother.  You should remove them before moving into a
production environment.Remove anonymous users? [Y/n] y... Success!Normally, root should only be allowed to connect from 'localhost'.  This
ensures that someone cannot guess at the root password from the network.Disallow root login remotely? [Y/n] y... Success!By default, MariaDB comes with a database named 'test' that anyone can
access.  This is also intended only for testing, and should be removed
before moving into a production environment.Remove test database and access to it? [Y/n] y- Dropping test database...... Success!- Removing privileges on test database...... Success!Reloading the privilege tables will ensure that all changes made so far
will take effect immediately.Reload privilege tables now? [Y/n] y... Success!Cleaning up...All done!  If you've completed all of the above steps, your MariaDB
installation should now be secure.Thanks for using MariaDB!

2.2.3 创建kodbox数据库及用户,并进行授权

1.进入数据库
mysql -uroot -p1232.创建kodbox使用的数据库
CREATE DATABASE IF NOT EXISTS kodbox CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;3.创建用户并进行远程授权
grant all on kodbox.* to 'admin'@'localhost' identified by '123456';
grant all on kodbox.* to 'admin'@'172.16.1.%' identified by '123456';4.刷新权限
FLUSH PRIVILEGES;

3、kodbox–>部署nginx/php/kodbox

3.1 部署nginx

3.1.1 配置nginx的yum源,安装nginx

$cat /etc/yum.repos.d/nginx.reponame=nginx stable repo
baseurl=http://nginx.org/packages/centos/$releasever/$basearch/
gpgcheck=1
enabled=1
gpgkey=https://nginx.org/keys/nginx_signing.key
module_hotfixes=trueyum install -y nginx
systemctl enable nginx

3.1.2 配置nginx中的kodx.conf文件

server {listen 80;server_name lwx.kodx.cn;root /app/code/kodbox;location / {index index.php;}location ~ [^/]\.php(/|$) {try_files $uri =404;fastcgi_pass unix:/var/run/php-fpm.sock;fastcgi_index index.php;set $path_info $fastcgi_path_info;set $real_script_name $fastcgi_script_name;if ($fastcgi_script_name ~ "^(.+?\.php)(/.+)$") {set $real_script_name $1;set $path_info $2;}fastcgi_param SCRIPT_FILENAME $document_root$real_script_name;fastcgi_param SCRIPT_NAME $real_script_name;fastcgi_param PATH_INFO $path_info;include fastcgi_params;}
}nginx -t   #检查语法

3.2 安装php-fpm

3.2.1 上传php压缩包,安装php

tar -xvf php72w-all.tar.gz
yum localinstall -y *.rpmchown -R root:nginx /var/lib/php
systemctl enable php-fpm && systemctl start php-fpm

3.2.2 配置参数文件

PHP_INI=/etc/php.ini
PHP_FPM=/etc/php-fpm.d/www.confsed -i \-e "s/max_execution_time = 30/max_execution_time = 3600/g" \-e "s/max_input_time = 60/max_input_time = 3600/g" \-e "s/memory_limit = 128M/memory_limit = 512M/g" \-e "s/post_max_size = 8M/post_max_size = 512M/g" \-e "s/upload_max_filesize = 2M/upload_max_filesize = 512M/g" \${PHP_INI}sed -i \-e "s/pm.max_children = 50/pm.max_children = 100/g" \-e "s/pm.start_servers = 5/pm.start_servers = 10/g" \-e "s/pm.min_spare_servers = 5/pm.min_spare_servers = 10/g" \-e "s/pm.max_spare_servers = 35/pm.max_spare_servers = 50/g" \-e "s/;pm.max_requests = 500/pm.max_requests = 500/g" \-e "s/user = apache/user = nginx/g" \-e "s/group = apache/group = nginx/g" \-e "s/;listen.mode = 0660/listen.mode = 0666/g" \-e "s/;listen.owner = nobody/listen.owner = nginx/g" \-e "s/;listen.group = nobody/listen.group = nginx/g" \-e "s/listen = 127.0.0.1:9000/listen = \/var\/run\/php-fpm.sock/g" \${PHP_FPM}systemctl restart php-fpm

3.3 安装kodbox

1.创建站点目录
mkdir -p /app/code/kodbox/
cd /app/code/kodbox/2.下载有道云压缩包并解压
curl -L "https://api.kodcloud.com/?app/version&download=server.link" -o kodbox.zip
unzip kodbox.zip && rm -f kodbox.zip3.站点目录进行授权
chown -R nginx:nginx /app/code/kodbox/
chmod -R 755 /app/code/kodbox/4.重启nginx
systemctl restart nginx

4、kodbox网页配置

4.1 网站访问 http://10.0.0.79

环境监测成功后点击下一步

image-20230220194605622

4.2 数据库配置

因为这里用的是单独的数据库服务器,所以要在kodbox服务端上安装mariadb客户端

yum install -y mariadb

存储引擎选择MyISAM,否则这个页面会报错

image-20230220195430082

image-20230220195209424

点击确定,进行下一步

4.3 账号配置

image-20230220195618461

image-20230220195656005

4.4 登录页面

image-20230220195855989

image-20230220195930756

5、kodbox配置Minio对象存储

5.1 找到后台管理

image-20230220200522385

5.2 选择存储文件中的存储管理

image-20230220200725903

5.3 新增Minio对象存储

Minio安装参考

https://blog.csdn.net/m0_49562857/article/details/129484748?spm=1001.2014.3001.5501

image-20230220200816800

5.4 Minio配置

这里这个端口要注意下,Minio默认的9000端口是提供web服务的,9029是提供给其他设备进行访问的一个端口

这两个端口都可以在安装Minio的时候自定义

5.5 验证

image-20230220204439844

image-20230220204510714

image-20230220204526576

我上传了一张图片,可以看到这张图片在我的两台Minio分别进行了存储

相关内容

热门资讯

122.(leaflet篇)l... 听老人家说:多看美女会长寿 地图之家总目录(订阅之前建议先查看该博客) 文章末尾处提供保证可运行...
育碧GDC2018程序化大世界... 1.传统手动绘制森林的问题 采用手动绘制的方法的话,每次迭代地形都要手动再绘制森林。这...
育碧GDC2018程序化大世界... 1.传统手动绘制森林的问题 采用手动绘制的方法的话,每次迭代地形都要手动再绘制森林。这...
Vue使用pdf-lib为文件... 之前也写过两篇预览pdf的,但是没有加水印,这是链接:Vu...
PyQt5数据库开发1 4.1... 文章目录 前言 步骤/方法 1 使用windows身份登录 2 启用混合登录模式 3 允许远程连接服...
Android studio ... 解决 Android studio 出现“The emulator process for AVD ...
Linux基础命令大全(上) ♥️作者:小刘在C站 ♥️个人主页:小刘主页 ♥️每天分享云计算网络运维...
再谈解决“因为文件包含病毒或潜... 前面出了一篇博文专门来解决“因为文件包含病毒或潜在的垃圾软件”的问题,其中第二种方法有...
南京邮电大学通达学院2023c... 题目展示 一.问题描述 实验题目1 定义一个学生类,其中包括如下内容: (1)私有数据成员 ①年龄 ...
PageObject 六大原则 PageObject六大原则: 1.封装服务的方法 2.不要暴露页面的细节 3.通过r...
【Linux网络编程】01:S... Socket多进程 OVERVIEWSocket多进程1.Server2.Client3.bug&...
数据结构刷题(二十五):122... 1.122. 买卖股票的最佳时机 II思路:贪心。把利润分解为每天为单位的维度,然后收...
浏览器事件循环 事件循环 浏览器的进程模型 何为进程? 程序运行需要有它自己专属的内存空间࿰...
8个免费图片/照片压缩工具帮您... 继续查看一些最好的图像压缩工具,以提升用户体验和存储空间以及网站使用支持。 无数图像压...
计算机二级Python备考(2... 目录  一、选择题 1.在Python语言中: 2.知识点 二、基本操作题 1. j...
端电压 相电压 线电压 记得刚接触矢量控制的时候,拿到板子,就赶紧去测各种波形,结...
如何使用Python检测和识别... 车牌检测与识别技术用途广泛,可以用于道路系统、无票停车场、车辆门禁等。这项技术结合了计...
带环链表详解 目录 一、什么是环形链表 二、判断是否为环形链表 2.1 具体题目 2.2 具体思路 2.3 思路的...
【C语言进阶:刨根究底字符串函... 本节重点内容: 深入理解strcpy函数的使用学会strcpy函数的模拟实现⚡strc...
Django web开发(一)... 文章目录前端开发1.快速开发网站2.标签2.1 编码2.2 title2.3 标题2.4 div和s...