Changes between Version 22 and Version 23 of InstallationGuidelines/OpenShift
- Timestamp:
- 07/29/14 11:10:49 (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
InstallationGuidelines/OpenShift
v22 v23 108 108 From Ubuntu, use the terminal, and type: 109 109 {{{ 110 rhc cartridge add postgresql-8.4 -a myapp110 $rhc cartridge add postgresql-8.4 -a myapp 111 111 }}} 112 112 … … 130 130 131 131 Now, Access your openshift web2py admin page through https://YOUR_APP_NAME-$yournamespace.rhcloud.com 132 Enter your password, find a folder named 'models' and find a file named '000_config.py. Edit and save the file. 132 Enter your password, find a folder named 'models' and find a file named '000_config.py. Edit and save the file. 133 In order to edit this file, you will need basic information of your postgresql. In your terminal, type: 134 {{{ 135 $rhs ssh 136 $env | grep OPENSHIFT 137 }}} 138 139 you will see lots of lines, containing your postgresql info. Use this to edit the 000_config.py 133 140 134 141 … … 139 146 Before you start praying, try to access your application at openshift server, using 140 147 {{{ 141 rhc ssh148 $rhc ssh 142 149 }}} 143 150 144 151 then go to your sahana eden directory, and find a directory named 'models'. Inside 'models' directory, type 145 152 {{{ 146 nano 0000_update_check.py153 $nano 0000_update_check.py 147 154 }}} 148 155