Expand my Community achievements bar.

Dive into Adobe Summit 2024! Explore curated list of AEM sessions & labs, register, connect with experts, ask questions, engage, and share insights. Don't miss the excitement.
SOLVED

Cannot Access CQ5 application

Avatar

Level 1

Hello,

I have a CQ5 authoring instance that I can no longer access. I was attempting to install a new SSL certificate on the server, and following instructions I found online, I did the following:

3. Install keystore into CQ

a. Copy the keystore file (cqkeystore.keystore) into the cq installation folder (D:\cq\author\crx-quickstart)

b. Create a node under /apps with the following structure
apps (sling:Folder)
  system (sling:Folder)
    config.author (sling:Folder)
      org.apache.felix.http (sling:OsgiConfig)

c. Add the following property to org.apache.felix.http node and save

                          
NameTypeValue
org.apache.felix.https.enableBooleantrue
org.osgi.service.http.portLong80
org.osgi.service.http.port.secureLong443
org.apache.felix.https.nioBooleantrue

 

Once I added the node, changed these properties, and saved, I was no longer able to access my CQ5 instance. Originally the app ran on port 4502, however now trying to access on 4502 gives a 404. Trying to access on port 80, I receive the following error:

502 - Web server received an invalid response while acting as a gateway or proxy server.

I cannot access the development environment within the application to revert this change. I either need to: A, figure out how to edit the files without doing it through the /crx/de path. or B, need to figure out how to access the application.again

Any help is appreciated.

Thanks

1 Accepted Solution

Avatar

Correct answer by
Level 1

Solved this issue by using the Auto Installer feature. I created a new package containing an '/apps/server/config' folder that effectively overwrote the change I made that disabled my access to the application. By creating an 'install' folder under 'crx-quickstart' and placing my package in that 'install' folder, CQ5 automatically installed my package on the next server startup, which allowed me to access the application again

View solution in original post

2 Replies

Avatar

Level 10

seems server is running on 4502. 80 might have used by other webserver. Try to login from http://host:port/crx/explorer/

Avatar

Correct answer by
Level 1

Solved this issue by using the Auto Installer feature. I created a new package containing an '/apps/server/config' folder that effectively overwrote the change I made that disabled my access to the application. By creating an 'install' folder under 'crx-quickstart' and placing my package in that 'install' folder, CQ5 automatically installed my package on the next server startup, which allowed me to access the application again