I'm interested how I can use Apache Felix with SSH? I want to access Felix shell from remote computer using SSH. I know that there is a telnet support but it's too unsafe. Is there any solution?
Apache Felix shell with SSH
2k Views Asked by Peter Penzov 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 OSGI
- Singleton to OSGi Declarative Services: Seeking Guidance
- How to use ExecutorService in Kubernetes PODs
- Liferay DXP Service builder @BeanReference field is null
- cant start bundle on apache felix
- Java OSGi implementation for the project
- How to update the resource property using the valuemap in the Sling servlet?
- Drools 8 OSGi support
- OSGi: missing requirement osgi.wiring.package with local bundle
- How to find correct AEM constant class names?
- KieServices are not injecting with guice
- Unknown OSGi execution environment: 'JavaSE-21'
- Java on AWS/EKS fails with resolving correct version of org.osgi.framework.launch.FrameworkFactory
- osgi.extender; (osgi.extender=osgi.serviceloader.registrar) in Jenkins
- How can i get the service ref after i changed org.apache.felix.scr.annotations to org.osgi.service.component.annotations
- Install feature webconsole in karaf 4.3.10 error needs osgi.http (not sure which jar package)
Related Questions in APACHE-FELIX
- cant start bundle on apache felix
- ONOS does not find the generated .OAR
- There is an issue with the Apache Felix SCR implementation of OSGi DS
- OSGi : Change bundles cache algorithm
- migrating osgi from bndlib to osgi r6 declrative services
- The org.apache.felix.gogo.commands missing requirement while installing a featue
- What is the difference between DS reference scope "prototype" and "prototype_required"?
- What is the maven command for build Apache Felix - OSGi - framework project?
- Error when using Apache Felix and OSGi for dynamic module loading in Kotlin
- In Karaf OSGI Bundle is in Resolved state but Diag shows nothing
- How to fix org.osgi.framework.BundleException: Imported package names cannot be zero length
- Nexus OSS does not start
- OSGi HTTP whiteboard static welcome document
- How to enable Async support for Sling Servlet - Felix
- unable to run client command for apache karaf 4.3.3 through remote server
Related Questions in GOGO-SHELL
- Deploying required bundles for Vaadin OSGI portlet to Liferay 7.3
- Is there a simply way to list of consumer components for an Interface?
- Gogo Shell command disappears if I reference service
- Execute OSGI console commands programmatically
- From Gogo Shell, get version of com.liferay.portal.kernel
- Is there a more detailed or customizable help page for OSGi commands?
- Splitting an OSGi console into input and output consoles
- How to change the default command scope in OSGi with GoGo Shell and enforce custom scopes for custom commands?
- How to customize OSGi prompt in apache felix gogo shell
- Unable to start Gogo shell getting connect failed error
- My service implementation is not seen by Liferay, despite high service.ranking
- Liferay module (OSGi bundle) stays in "Stopping"
- Telnet to Gogo shell works well but telnet with bash script returns connection closed by foreign host
- Liferay override document library web
- How to see why bundle requirements are not fulfilled in Apache Felix Log?
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?
Yes, there is one, as described here (the guide is relative to eclipse's equinox but it doesn't matter) using a combination of gogo shell, apache mina sshd server and three equinox console bundles (core+ssh plugin+jaas plugin for ssh authentication) you will be able to connect to mina's ssh server and your commands related to OSGi will be executed by the gogo shell.
You'll need these bundles:
As described here, you will also need these properties in your Felix configuration file:
The equinox JAAS bundle will search for a
org.eclipse.equinox.console.authentication.configfile, that will enable the login module:I'm not quite sure where this will be searched using Felix (i'm not sure this is done in a standard OSGi way), but the
confdirectory is a good guess.The user equinox/equinox will already be present, other users can be created with the console commands provided.
Edit: For the equinox console/supportability bundle you can get the Mars release from here expanding the section Add-on Bundles:
org.eclipse.equinox.console_1.1.100.v20141023-1406.jar
You'll also need the supportability bundle that you can get from here(the last version is from 2011).