B4J Tutorial [server] Run a Server on a VPS - Erel    Jan 22, 2026   (20 reactions)   tags: B4J Run Server on VPS, Erel folder for example).
3. Start the server with:
nohup path_to_java/bin/java -jar somejar.jar > nohup.out &
The console output will be written to nohup.out.
You need to use nohup as otherwise... B4J Question jShell nohup under Windows - peacemaker    Nov 11, 2022 Hi, All
How to run console programs under Windows for endless running ? Say, ffmpeg.... B4J Tutorial [WebApp] Web Apps Overview - Erel    May 30, 2021   (21 reactions)   tags: Erel Stuff, b4j then you should use the nohup command. Where do I go from here? Hello World Web App Other tutorials... B4J Question Linux web-app autostart - peacemaker    Sep 10, 2022 Hi, All
How to make sure that app is autostarted undex Linux ?
Tried to use crontab - does not start after reboot.
crontab -e
@reboot nohup /var/www/project/data/www/project/jdk-14.0.1/bin/java -jar /var/www/project/data/www/project/result.jar > nohup.out &
App is started with nohup... B4J Tutorial [Server] Login System & Filters Tutorial - Erel    Jan 14, 2016   (15 reactions) . - I'm using this command to run it on the Linux server nohup ../jre1.7.0_51/bin/java -jar ServerExample.jar > nohup.out & - The project depends on the following B4A libraries: ByteConverter... B4J Question Unable to start b4j non-ui app on vps server - toby    May 26, 2022
6. Ran the following terminal command
nohup /home/user1/java11/bin/java -jar /home/user1/test.jar >nohup.out &
And I got this log
nohup: failed to run command '/home/user1/java11/bin/java... B4J Tutorial HTML Web Server - aeric    Feb 12, 2026   (14 reactions) to the remote server. 169903 To run the server on a Linux VPS, we can use nohup command e.g: nohup... B4A Tutorial Remote Database Connector (RDC) - Connect to any remote DB - Erel    Jan 10, 2021   (19 reactions)   tags: JRDC it with nohup to prevent the OS from killing the process when you log out. Java doesn't need to... B4J Question Error when running webserver on vps (ubuntu 18) - tufanv    Dec 13, 2022 Hello,
Normally I run jar files creatd with b4j without any problem on vps but this time, altough it is working good on my own computer, when I try to run on vps I get this errors:
nohup: ignoring input
Error: Unable to initialize main class b4j.example.main
Caused by: java.lang.NoClassDefFoundError: anywheresoftware/b4a/BA
What may be the problem here?
Thanks... B4J Question VPS requires a password - derez    Dec 6, 2018 Launching a server application on linux requires me to key my password. If I use nohup like here
nohup path_to_java/bin/java -jar somejar.jar > nohup.out &
the application is not launched, probably waiting for the password.
For the same reason I can't launch it automatically at startup.
How do I go around this ?
I try not to use sudo but without it the database file cannot be open... Page: 1   2   3   4   5   6   7   |