Posts
Showing posts from December, 2024
How to create Application Server profile in Linux using command line mode
- Get link
- X
- Other Apps
what are the certificate exam in AWS amazon web service cloud
- Get link
- X
- Other Apps
Amazon offer a variety of certificate exam. which are categorized by roles and expertise level of candidate. 1. Foundation Level - this is called Aws certified cloud practitioner. where it validates basic of aws cloud knowledge. Exam duration:- 90 minutes Cost: $100, 2, Associate Level Exam duration:- 130 minutes Cost: $150, 3.Professional Level Exam duration:- 180 minutes Cost: $300, 4, Specialty Certifications Exam duration:- 170-180 minutes Cost: $300,
what is the difference between tomcat and tomcatEE
- Get link
- X
- Other Apps
Tomcat is a Catalina container, or is a servlet container that support or execute the servlet and java server page (JSP) and it is light weight web-server most suitable to host small or simple applications. TomcatEE - TomcatEE is a extended version of tomcat. which support full java EE features. it also includes additional technologies like EJB(enterprise java beans), Java Transaction API JTA,CDI TomcatEE support microservices this act as an application server where tomcat run as web server.
how to find process or service with the help of port in linux
- Get link
- X
- Other Apps
In Linux there is command called lsof using this command. user can find which process is associated with any port. and this command always help to resolve port-conflict issue in server Example: let suppose tomcat one instance is running with 8080 port and there is more instance created later but user forgot to change the default port. then newly create tomcat instance will try to start in same port 8080. in such case user can identified which process is using that port. Example:- lsof -i:8080
How to switch from one directory to other directory in Linux or Unix operating system
- Get link
- X
- Other Apps