When i have my own linux VPS Server , how can i initial software environment and install JCloud Server Application to service for developers.
How to install JCloud Server Application in my own VPS and service for developers
107 Views Asked by user12240680 At
1
There are 1 best solutions below
Related Questions in JAVA
- I need the BIRT.war that is compatible with Java 17 and Tomcat 10
- Creating global Class holder
- No method found for class java.lang.String in Kafka
- Issue edit a jtable with a pictures
- getting error when trying to launch kotlin jar file that use supabase "java.lang.NoClassDefFoundError"
- Does the && (logical AND) operator have a higher precedence than || (logical OR) operator in Java?
- Mixed color rendering in a JTable
- HTTPS configuration in Spring Boot, server returning timeout
- How to use Layout to create textfields which dont increase in size?
- Function for making the code wait in javafx
- How to create beans of the same class for multiple template parameters in Spring
- How could you print a specific String from an array with the values of an array from a double array on the same line, using iteration to print all?
- org.telegram.telegrambots.meta.exceptions.TelegramApiException: Bot token and username can't be empty
- Accessing Secret Variables in Classic Pipelines through Java app in Azure DevOps
- Postgres && statement Error in Mybatis Mapper?
Related Questions in LINUX
- Is there some way to use printf to print a horizontal list of decrementing hex digits in NASM assembly on Linux
- Why does Hugo generate different taxonomy-related HTML on different OS's?
- Writes in io_uring do not advance the file offset
- Why `set -o pipefail` gives different output even though the pipe is not failing
- what really controls the permissions: UID or eUID?
- Compiling eBPF program in Docker fails due to missing '__u64' type
- Docker container unable to make HTTPS requests to external API
- Whow to use callback_query_handler in Python 3.10
- Create kea runtime directory at startup in Yocto image
- Problem on CPU scheduling algorithms in OS
- How to copy files into the singularity sandbox?
- Android kernel error: undefined reference to `get_hw_version_platform'
- Is there a need for BPF Linux namespace?
- Error when trying to execute a binary compiled in a Kali Linux machine on an Ubuntu system
- Issue with launching application after updating ElectronJs to version 28.0.0 on Windows and Linux
Related Questions in CLOUD
- I need an azure product that executes my intensive ffmpeg command then dies, and i only get charged for the delta. Any Tips?
- Does MS Word secretly upload my file to cloud?
- i was installing cloudstack and ended up in this error can anyone help me?
- Merge Azure mp4 blobs via API (Preferred Azure)
- What's the best practice to use OceanBase in cloud environment
- JSON representation of the current Terraform configuration
- I can't ssh to my instance, Connection refused
- Publish Vue.js + ASP.NET Core on Azure
- Why can CPU memory be specified and allocated during instance creation but not GPU memory on the cloud?
- AWS rekognition faces search
- SAP Cloud Connector
- Well isolated DB storage for each user
- how to upload multiple files and pictures to s3 while keeping the record in database?
- Error syncing Google Calendar, when i login with the account in the flutter project
- how to make public IP works on ec2 machine
Related Questions in GCLOUD-COMPUTE
- Is it possible to ignore existing files in the directory when performing scp using gcloud compute scp?
- Sending back exit signal to gitlab pipeline
- How to reproduce this algorithm?
- Stop Read Replica Instance on GCP CloudSQL
- How do you set a gCloud snapshot schedule so it appears in the GLOBAL list?
- Permission key denied in Azure
- GCP logout URL? Unable to configure SSO in AZURE
- Can google access data on compute engine virtual machine?
- Snowflake organization account
- Which GPU should I use on Google Cloud Platform (GCP)
- Google cloud compute VM instance not getting listed
- Google Cloud Shell Keep Disconnecting
- How do I make an MX record to point to a Google Workspace email address of the same domain?
- unable to login using serial console but WinSCP allowed to login the VM instance
- Fetching List public VM Images in Google Cloud
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular # Hahtags
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
1 : Check JDK version in your server
JDK version should be 1.7 or above
2: Make sure you have proper J2EE container(tomcat/weblogic/resin..) installed in your server
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
create database in MYSQL :
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
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:
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:
This is the directory structure once you extract war file:
Edit database configuration information using command below:
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 .
add the config below to proper postion
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
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