Details

    • Type: Bug
    • Status: Closed (View Workflow)
    • Priority: Major
    • Resolution: Done
    • Affects Version/s: None
    • Fix Version/s: None
    • Labels:
    • Story Points:
      0.5
    • Sprint:
      Spring 2019 Sprint 5, Spring 2019 Sprint 6, Summer 2019 Sprint 7, Summer 2019 Sprint 8

      Description

      Now that testappstore.bioviz.org is set up, need to configure apache to only accept https requests

        Attachments

          Activity

          ann.loraine Ann Loraine created issue -
          ann.loraine Ann Loraine made changes -
          Field Original Value New Value
          Epic Link IGBF-1388 [ 17463 ]
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          ann.loraine Ann Loraine made changes -
          Sprint Spring 2019 Sprint 5 [ 63 ]
          Labels Intermediate
          ann.loraine Ann Loraine made changes -
          Sprint Spring 2019 Sprint 5 [ 63 ] Spring 2019 Sprint 5, Spring 2019 Sprint 6 [ 63, 64 ]
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          Hide
          ann.loraine Ann Loraine added a comment -

          Dr. Loraine has certificates.

          Show
          ann.loraine Ann Loraine added a comment - Dr. Loraine has certificates.
          ann.loraine Ann Loraine made changes -
          Story Points 0.25 0.5
          ann.loraine Ann Loraine made changes -
          Labels Intermediate intermediate
          ann.loraine Ann Loraine made changes -
          Sprint Spring 2019 Sprint 5, Spring 2019 Sprint 6 [ 63, 64 ] Spring 2019 Sprint 5, Spring 2019 Sprint 6, Summer 2019 Sprint 7 [ 63, 64, 66 ]
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          sameer Sameer Shanbhag (Inactive) made changes -
          Assignee Sameer Shanbhag [ sameer ]
          sameer Sameer Shanbhag (Inactive) made changes -
          Status Open [ 1 ] In Progress [ 3 ]
          Hide
          ann.loraine Ann Loraine added a comment -

          I just reviewed the Google doc for how to set up https. I added some comments and questions. Can you take a look and update the Google doc as needed? Thank you!

          Show
          ann.loraine Ann Loraine added a comment - I just reviewed the Google doc for how to set up https. I added some comments and questions. Can you take a look and update the Google doc as needed? Thank you!
          sameer Sameer Shanbhag (Inactive) made changes -
          Status In Progress [ 3 ] Needs 1st Level Review [ 10005 ]
          Hide
          sameer Sameer Shanbhag (Inactive) added a comment -

          [~aloraine]

          I have updated the document with all the changes required, you can find the document below:

          https://docs.google.com/document/d/1_9C03q6TD5wjLqfVLKsuDsIEQ4-qrS0JhONO5VBOwaA/edit?ts=5ce56b5e

          It would be great if I have another EC2 Instance setup for this so that I can do the setup again and test the steps documented.

          Show
          sameer Sameer Shanbhag (Inactive) added a comment - [~aloraine] I have updated the document with all the changes required, you can find the document below: https://docs.google.com/document/d/1_9C03q6TD5wjLqfVLKsuDsIEQ4-qrS0JhONO5VBOwaA/edit?ts=5ce56b5e It would be great if I have another EC2 Instance setup for this so that I can do the setup again and test the steps documented.
          Hide
          sameer Sameer Shanbhag (Inactive) added a comment -

          [~aloraine]

          I was going through the whole setup procedure from the Documentation below and we face some permission issues while we set it up on Prutha Kulkarni Instance.

          I have updated the Document which solves all the permission related issues and Static Content issues[Will Create a JIRA Ticket for this small change]

          Note:
          Issues Not Solved:
          I am facing problem while Rebuilding Indexes which is a Django feature and I'm not sure what is causing the same. I have found out an ugly fix for that but I am not rooting in for that. Maybe Sai Charan Reddy Vallapureddy can help me with that.

          Show
          sameer Sameer Shanbhag (Inactive) added a comment - [~aloraine] I was going through the whole setup procedure from the Documentation below and we face some permission issues while we set it up on Prutha Kulkarni Instance. I have updated the Document which solves all the permission related issues and Static Content issues [Will Create a JIRA Ticket for this small change] Note: Issues Not Solved: I am facing problem while Rebuilding Indexes which is a Django feature and I'm not sure what is causing the same. I have found out an ugly fix for that but I am not rooting in for that. Maybe Sai Charan Reddy Vallapureddy can help me with that.
          Hide
          svallapu Sai Charan Reddy Vallapureddy (Inactive) added a comment -

          These steps might help you. Sameer Shanbhag

          rm /var/www/vhosts/appstore/apps/migrations/0001_initial.py
          rm /var/www/vhosts/appstore/download/migrations/0001_initial.py
          rm /var/www/vhosts/appstore/submit_app/migrations/0001_initial.py

          -->Remove content in the database by removing the file

          rm dbsqlite3(make a backup)

          --> load tables and load data

          python manage.py makemigrations
          python manage.py migrate
          python manage.py loaddata appsDB.json
          python manage.py rebuild_index

          --> Give write permissions to the newly created dbsqlite3 file

          sudo su
          chmod 664 /var/www/vhosts/appstore/db.sqlite3
          chown :www-data /var/www/vhosts/appstore/db.sqlite3
          chown :www-data /var/www/vhosts/appstore

          --> Give write permissions to the newly created whoosh_index file

          sudo chown -R www-data:www-data whoosh_index

          --> Restart Apache

          sudo service apache2 restart

          Show
          svallapu Sai Charan Reddy Vallapureddy (Inactive) added a comment - These steps might help you. Sameer Shanbhag rm /var/www/vhosts/appstore/apps/migrations/0001_initial.py rm /var/www/vhosts/appstore/download/migrations/0001_initial.py rm /var/www/vhosts/appstore/submit_app/migrations/0001_initial.py -->Remove content in the database by removing the file rm dbsqlite3(make a backup) --> load tables and load data python manage.py makemigrations python manage.py migrate python manage.py loaddata appsDB.json python manage.py rebuild_index --> Give write permissions to the newly created dbsqlite3 file sudo su chmod 664 /var/www/vhosts/appstore/db.sqlite3 chown :www-data /var/www/vhosts/appstore/db.sqlite3 chown :www-data /var/www/vhosts/appstore --> Give write permissions to the newly created whoosh_index file sudo chown -R www-data:www-data whoosh_index --> Restart Apache sudo service apache2 restart
          Hide
          sameer Sameer Shanbhag (Inactive) added a comment -

          Done that Sai Charan Reddy Vallapureddy was facing a different error while rebuilding indexes. The document is ready for the Final Review.

          Show
          sameer Sameer Shanbhag (Inactive) added a comment - Done that Sai Charan Reddy Vallapureddy was facing a different error while rebuilding indexes. The document is ready for the Final Review.
          sameer Sameer Shanbhag (Inactive) made changes -
          Status Needs 1st Level Review [ 10005 ] Needs Testing [ 10002 ]
          sameer Sameer Shanbhag (Inactive) made changes -
          Assignee Sameer Shanbhag [ sameer ]
          ann.loraine Ann Loraine made changes -
          Sprint Spring 2019 Sprint 5, Spring 2019 Sprint 6, Summer 2019 Sprint 7 [ 63, 64, 66 ] Spring 2019 Sprint 5, Spring 2019 Sprint 6, Summer 2019 Sprint 7, Summer 2019 Sprint 8 [ 63, 64, 66, 67 ]
          ann.loraine Ann Loraine made changes -
          Rank Ranked higher
          Hide
          ann.loraine Ann Loraine added a comment -

          Add a note to google doc regarding change needed for haystack.

          Show
          ann.loraine Ann Loraine added a comment - Add a note to google doc regarding change needed for haystack.
          ann.loraine Ann Loraine made changes -
          Status Needs Testing [ 10002 ] Open [ 1 ]
          ann.loraine Ann Loraine made changes -
          Assignee Sameer Shanbhag [ sameer ]
          sameer Sameer Shanbhag (Inactive) made changes -
          Status Open [ 1 ] In Progress [ 3 ]
          sameer Sameer Shanbhag (Inactive) made changes -
          Status In Progress [ 3 ] Needs Testing [ 10002 ]
          Hide
          sameer Sameer Shanbhag (Inactive) added a comment -

          Added the Haystack edit Hack to the Document. The Document is ready to be tested.

          https://docs.google.com/document/d/1_9C03q6TD5wjLqfVLKsuDsIEQ4-qrS0JhONO5VBOwaA/edit?ts=5ce56b5e

          Show
          sameer Sameer Shanbhag (Inactive) added a comment - Added the Haystack edit Hack to the Document. The Document is ready to be tested. https://docs.google.com/document/d/1_9C03q6TD5wjLqfVLKsuDsIEQ4-qrS0JhONO5VBOwaA/edit?ts=5ce56b5e
          sameer Sameer Shanbhag (Inactive) made changes -
          Assignee Sameer Shanbhag [ sameer ]
          prutha Prutha Kulkarni (Inactive) made changes -
          Assignee Prutha Kulkarni [ prutha ]
          prutha Prutha Kulkarni (Inactive) made changes -
          Status Needs Testing [ 10002 ] Testing In Progress [ 10003 ]
          Hide
          prutha Prutha Kulkarni (Inactive) added a comment -

          The app store is working on https. Functional testing has been done for the same. tested sorting and other functionalities along with submit app flow.
          Everything is working fine.

          Show
          prutha Prutha Kulkarni (Inactive) added a comment - The app store is working on https. Functional testing has been done for the same. tested sorting and other functionalities along with submit app flow. Everything is working fine.
          prutha Prutha Kulkarni (Inactive) made changes -
          Assignee Prutha Kulkarni [ prutha ] Sameer Shanbhag [ sameer ]
          prutha Prutha Kulkarni (Inactive) made changes -
          Resolution Done [ 10000 ]
          Status Testing In Progress [ 10003 ] Closed [ 6 ]
          ann.loraine Ann Loraine made changes -
          Workflow Loraine Lab Workflow [ 18395 ] Fall 2019 Workflow Update [ 20115 ]
          ann.loraine Ann Loraine made changes -
          Workflow Fall 2019 Workflow Update [ 20115 ] Revised Fall 2019 Workflow Update [ 22251 ]

            People

            • Assignee:
              sameer Sameer Shanbhag (Inactive)
              Reporter:
              ann.loraine Ann Loraine
            • Votes:
              0 Vote for this issue
              Watchers:
              4 Start watching this issue

              Dates

              • Created:
                Updated:
                Resolved: