Mercurial > dive4elements > river
comparison flys-backend/doc/documentation/de/importer-geodaesie.tex @ 3670:6c0d6d74139c
Documented install steps for Oracle Instantclient, Python and GDAL.
flys-backend/trunk@5293 c6561f87-3c4e-4783-a992-168aeb5c3f6f
author | Ingo Weinzierl <ingo.weinzierl@intevation.de> |
---|---|
date | Wed, 29 Aug 2012 13:25:30 +0000 |
parents | 3ea5e835ecce |
children | 924055b11545 |
comparison
equal
deleted
inserted
replaced
3669:25b5af0cdf89 | 3670:6c0d6d74139c |
---|---|
186 | 186 |
187 | 187 |
188 \subsection{Installationsanleitung} | 188 \subsection{Installationsanleitung} |
189 \label{Installationsanleitung} | 189 \label{Installationsanleitung} |
190 \begin{itemize} | 190 \begin{itemize} |
191 \item \todo GDAL Binding installieren | 191 |
192 \item \todo Python installieren | 192 \item Python\\ |
193 \item \todo ogr2ogr installieren | 193 Zum Starten des Importers ist es notwendig Python zu installieren. Dies können |
194 Sie mit folgendem Befehl auf der Kommandozeile erledigen: | |
195 | |
196 \begin{lstlisting} | |
197 zypper in python | |
198 \end{lstlisting} | |
199 | |
200 \item \todo ogr2ogr installieren? | |
201 | |
202 \item \todo python-gdal; woher? | |
203 | |
204 \item Oracle Instantclient\\ | |
205 Der Oracle Instantclient 11.2 wird benötigt, damit der Importer mittels Python | |
206 und GDAL in die bestehende Oracle Datenbank schreiben kann. Dazu ist es | |
207 erforderlich, folgende Archive von Oracle herunterzuladen: | |
208 | |
209 \begin{itemize} | |
210 \item \todo URL zu instantclient-basic-linux-x86-64-11.2.0.2.0.zip | |
211 \item \todo URL zu instantclient-sdk-linux-x86-64-11.2.0.2.0.zip | |
212 \item \todo URL zu instantclient-sqlplus-linux-x86-64-11.2.0.2.0.zip | |
213 \end{itemize} | |
214 | |
215 Anschließend führen Sie folgende Befehle auf der Kommandozeile aus: | |
216 | |
217 \begin{lstlisting} | |
218 | |
219 mkdir /opt | |
220 | |
221 unzip ~/instantclient-basic-linux-x86-64-11.2.0.2.0.zip -d /opt | |
222 unzip ~/instantclient-sdk-linux-x86-64-11.2.0.2.0.zip -d /opt | |
223 unzip ~/instantclient-sqlplus-linux-x86-64-11.2.0.2.0.zip -d /opt | |
224 | |
225 mkdir /opt/instantclient_11_2/lib | |
226 cd /opt/instantclient_11_2/lib | |
227 ln -s ../libclntsh.so.11.1 . | |
228 ln -s ../libclntsh.so.11.1 libclntsh.so | |
229 ln -s ../libnnz11.so . | |
230 ln -s ../libocci.so.11.1 . | |
231 ln -s ../libocci.so.11.1 libocci.so | |
232 ln -s ../libociei.so . | |
233 ln -s ../libocijdbc11.so . | |
234 ln -s ../libsqlplusic.so . | |
235 ln -s ../libsqlplus.so . | |
236 | |
237 rpm -i --nodeps ~/flys-importer/rpm/RPMS/x86_64/libgdal1180-1.8.0-intevation1.x86_64.rpm | |
238 rpm -i --nodeps ~/flys-importer/rpm/RPMS/x86_64/libgdal180-devel-1.8.0-intevation1.x86_64.rpm | |
239 rpm -i --nodeps ~/flys-importer/rpm/RPMS/x86_64/gdal180-1.8.0-intevation1.x86_64.rpm | |
240 | |
241 \end{lstlisting} | |
242 | |
243 Sollten keine Fehler aufgetreten sein, haben Sie den \textit{Oracle | |
244 Instantclient 11.2} erfolgreich entpackt und im Dateisystem unter | |
245 \textit{/opt/instantclient\_11\_2} abgelegt. Mit den Befehlen $rpm -i --nodeps$ | |
246 haben Sie anschließend die notwendigen Bindings installiert, damit der Importer | |
247 die Geodaten in die Oracle Datenbank schreiben kann. | |
248 | |
194 \end{itemize} | 249 \end{itemize} |
195 | 250 |
196 | 251 |
197 \subsection{Konfiguration} | 252 \subsection{Konfiguration} |
198 \label{Konfiguration} | 253 \label{Konfiguration} |