How to write to remote linux directory - apache

How to expose a directory in remote ubuntu server so that I can read & write to that directory from remote machines.
Actually, I have a web application and I need to write to the AWS EC2 instance's directory and create directories using java program running in another server.
Note: I do not want to run a java program in AWS instance just for writing files.
Thanks in advance

I think you can use sftp from Java: https://www.example-code.com/java/sftp.asp or https://kodehelp.com/java-program-for-uploading-file-to-sftp-server

Related

Steps to transfer file from One Windows Remote Server to another Windows Remote Server using OS Process Sampler in JMeter

I have transferred or copied a files from local machine to Server successfully using OS Process Sampler but unable to transfer a file from One remote server to another remote server on windows.
Can anyone explain me the process or share the steps or command which are being used to do the same.
Thanks
If you have OpenSSH servers on both machines you can use SSH Command sampler to execute scp command for transferring a file from one remote machine to another remote machine
In case of Windows you might have to provide the full path to scp.exe binary like:
C:\Windows\System32\OpenSSH\scp.exe
The exact configuration may differ depending on source/destination paths, whether public key authentication is enabled or not, etc.
Also SSH Command sampler doesn't come with JMeter, you will need to install it as a part of SSH Protocol Support bundle using JMeter Plugins Manager

Apache Error While Import .war file. "Error: FAIL - Application at context path [/folder] could not be started"

After deploying the war file from apache server it shows the Running status fail. Then I deploying the .war file its shows error like FAIL - Application at context path [/folder] could not be started. How can I solve this issue and how can I run my war file in Apache server. Kindly guide me to solve this issue.
You need a java server to run war files. A common way to integrate this with Apache is to run your war file in a java server such as tomcat or wildfly, then with apache, reverse proxy to your java server using a virtual host. This way apache works as your gateway interface, then the java server actually handles your logic for your specific application.
Unless you are using Apache Tomcat? If so, please provide more context. What server are using and what are the logs?

Create a simple sftp server for use with Mule

I am looking to setup a local mock SFTP server to use with Mule.
I have a SFTP endpoint and would like to process files from c:/temp/file directory on my local machine.
I have looked at MUnit but would like to run my Mule project like I would in Production and I feel MUnit is more geared towards Unit Testing.
I have looked at FreeSSH and OpenSSH but due to privileges on my laptop I have been unable to install them because they run scripts. I have also looked at CrushFTP but have had problems connecting to the sftp server.
Could anyone recommend a simple SFTP server I could setup locally to work with the Mule connector?
Thanks
I used solarwinds SFTP server to explore mule sftp connector.
http://www.solarwinds.com/free-tools/free-sftp-server/
I made sham-ssh which contains an in-process SFTP server that I use for production-like functional testing. It allows you to use SSH or SFTP over a localhost network connection, and uses a directory on your hard drive to store the files. It's not 1.0 yet, and has no documentation yet, but might work for you.

Access Neo4J shell via SSH?

I installed Neo4J on a server of a hosting provider. The app that I run on it works fine. However, how would I access Neo4J shell? As I understand, I would do it through http://www.myapp.com:PORT normally (if I uncomment accept all internal connections in Neo4J config). But is there a way to access shell, admin and web interface without uncommenting those external connections line? Like directly from SSH for example? How?
Thanks!
There's a neo4j-shell command within the bin folder. That will give you ssh access to running queries against neo4j

upload a jar file in remote Weblogic server using wlst

Is there a way to upload a jar file to a specific location on remote weblogic server using wlst?
This is my scenario -
I need to upload aspectjweaver.jar to the remote server. This needs to be done before weblogic startup, as weaving takes place during startup .
FTP is not an option because those ports are blocked.