问题描述
当我拥有自己的Linux VPS Server时,如何初始化软件环境并安装JCloud Server Application为开发人员提供服务。
1:检查服务器中的JDK版本
〜$:java -version
Java版本 1.8.0_221
Java SE运行时环境(内部版本1.8.0_221-b11)
Java HotSpot(TM)64位服务器VM(内部版本25.221-b11,混合模式)
JDK版本应为1.7或更高版本
2:确保您具有正确的J2EE服务器中安装的容器(tomcat / weblogic / resin ..)
服务器版本:Apache Tomcat / 9.0.30
服务器构建:2020年7月19日21:45:54 UTC
服务器编号:9.0.30.0
OS名称:Mac OS X
OS版本:10.14.6
体系结构:x86_64
JVM版本:1.8.0_221-b11
JVM供应商:Oracle Corporation
〜$:
我们使用Tomcat作为Web应用程序容器,您可以使用任何J2EE容器(resin / webLogic / GlassFish ...)来托管war文件。
3 :在您的服务器中安装Mysql-Server
〜$:mysql -ubigdog -p
输入密码:
欢迎使用MySQL监视器。命令以;结尾;或\g。
您的MySQL连接ID是4
服务器版本:5.7.27 MySQL社区服务器(GPL)
版权所有(c)2000、2019,Oracle和/或其分支机构。版权所有。
Oracle是Oracle Corporation和/或其附属公司的注册商标。其他名称可能是其各自
所有者的商标。
键入帮助;或 \h以获取帮助。输入 \c以清除当前输入语句。
在MYSQL中创建数据库:
创建数据库JCloudWeb;
注意:以上数据库名称应与 jdbc.url相同。当您编辑配置文件 WEB-INF / classes / conf / myconf.properties时,在下面的第4步中找到属性。
在MYSQL中创建用户凭据
创建用户'newuser'@'localhost'由'password'标识;
授予*所有特权。 *发送给 newuser @ localhost;
冲洗特权;
确保您的MYSQL-Server版本为5.7.27或更高。并在mysql中创建一个帐户,我们将在下一步中使用该帐户。作为开发人员,完成当前步骤时需要具备三件事:
1:MYSQL主机IP地址/域
2:MYSQL帐户访问用户名
3:MYSQL帐户访问密码
注意:您应该可以访问使用上面的帐户凭据从运行JCloud Web应用程序的主机上获取MYSQL Server。
4:下载JCloud服务器War文件
访问JCloud官方网站以下载JCloud服务器war文件并部署到tomcat。 JCloud Server war文件的名称格式为:JCloudServer_1.0.1.war
使用以下命令将war文件解压缩:
jar xvf JCloudServer.war
或
解压缩JCloudServer.war
这是提取战争文件后的目录结构:
JCloudServer $:ls
META-INF WEB-INF索引。 jsp res
JCloudServer $:
使用以下命令编辑数据库配置信息:
vim WEB-INF / classes / conf / myconf.properties
在myconf.properties,您应该可以看到:jdbc.url,jdbc.user,jdbc.password,请为每个参数填写正确的值,您应该从上面的步骤3中获取这些值。
5:配置server.xml
如果您使用的是tomcat,则可以进行如下配置,如果您使用的是其他J2EE容器,请进行配置您的服务器正确。
vim $ TOMCAT / conf / server.xm l
将以下配置添加到正确的位置
< Context path =" //; docBase = / opt / webapp / JCloudServer / />
docBase 是JCloud Web应用程序的绝对目录, 路径 是您要将应用程序公开到Internet的URI。
6:启动tomcat服务器以运行JCloud Server战争文件
catalina.sh开始
现在,您应该可以通过访问http:// localhost-ip-domain:port /来查看JCloud Server来查看主页,可以将访问域共享给开发人员,以便他们可以在您的JCloud服务器中注册自己的开发者帐户。
一旦开发人员在JCloud服务器中获得该帐户,他们就可以下载JCloud SDK来开发基于JCloud框架的本机/ Web应用程序。
以下是有关如何使用JCloud SDK的链接:
When i have my own linux VPS Server , how can i initial software environment and install JCloud Server Application to service for developers.
1 : Check JDK version in your server
~$: java -version
java version "1.8.0_221"
Java(TM) SE Runtime Environment (build 1.8.0_221-b11)
Java HotSpot(TM) 64-Bit Server VM (build 25.221-b11, mixed mode)
JDK version should be 1.7 or above
2: Make sure you have proper J2EE container(tomcat/weblogic/resin..) installed in your server
Server version: Apache Tomcat/9.0.30
Server built: Jul 19 2020 21:45:54 UTC
Server number: 9.0.30.0
OS Name: Mac OS X
OS Version: 10.14.6
Architecture: x86_64
JVM Version: 1.8.0_221-b11
JVM Vendor: Oracle Corporation
~$:
we are using Tomcat as our web application container , You ca use any J2EE container(resin/webLogic/GlassFish...) to host the war file.
3: Install Mysql-Server in your server
~$: mysql -ubigdog -p
Enter password:
Welcome to the MySQL monitor. Commands end with ; or \g.
Your MySQL connection id is 4
Server version: 5.7.27 MySQL Community Server (GPL)
Copyright (c) 2000, 2019, Oracle and/or its affiliates. All rights reserved.
Oracle is a registered trademark of Oracle Corporation and/or its
affiliates. Other names may be trademarks of their respective
owners.
Type 'help;' or '\h' for help. Type '\c' to clear the current input statement.
create database in MYSQL :
CREATE DATABASE JCloudWeb;
Note: The database name above should be as same as "jdbc.url" attribute in step 4 below when you edit config file "WEB-INF/classes/conf/myconf.properties"
Create user credential in MYSQL
CREATE USER 'newuser'@'localhost' IDENTIFIED BY 'password';
GRANT ALL PRIVILEGES ON * . * TO 'newuser'@'localhost';
FLUSH PRIVILEGES;
Make sure your MYSQL-Server version is 5.7.27 or above. And create an account in mysql , we will use this account in next step. As a developer you need to have three thing when you finish current step:
1: MYSQL host IP address/Domain
2: MYSQL account access username
3: MYSQL account access password
Note: You should be able to access MYSQL Server from the host which is running JCloud web application using the account credential above.
4: download JCloud server war file
Go to JCloud official website to download JCloud server war file and deploy to tomcat. JCloud Server war file name format is:JCloudServer_1.0.1.war
unzip the war file using command below:
jar xvf JCloudServer.war
or
unzip JCloudServer.war
This is the directory structure once you extract war file:
JCloudServer$: ls
META-INF WEB-INF index.jsp res
JCloudServer$:
Edit database configuration information using command below:
vim WEB-INF/classes/conf/myconf.properties
in myconf.properties ,you should be able to see :jdbc.url,jdbc.user,jdbc.password, please fill correct value for each of them , you should get those values from step 3 above.
5: config server.xml
If you are using tomcat, then you can config as below, if you are using other J2EE container , please config your server correctly .
vim $TOMCAT/conf/server.xml
add the config below to proper postion
<Context path="/" docBase="/opt/webapp/JCloudServer/"/>
docBase is the absolute directory of JCloud web app , path is the URI which you want to expose your app to internet .
6: Start tomcat server to run JCloud Server war file
catalina.sh start
Now you should be able to see JCloud Server by accessing http://localhost-ip-domain:port/ to see home page , you can share the access domain to your developers so that they can register their own developer account in your JCloud server.
Once developers get the account in JCloud server, they can download JCloud SDK to develop native/web apps based on JCloud framework .
Here is the link about how to use JCloud SDK : How can i use JCloud SDK API to communicate with JCloud Server application for app(native/web) development
这篇关于如何在我自己的VPS和服务中为开发人员安装JCloud Server Application的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!