Skip to content

Commit 93abd79

Browse files
committed
Added error redirection to log output for viz webserver
Updated tau commit in Dockerfile
1 parent f2370cc commit 93abd79

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docker/ubuntu18.04/openmpi4.0.4/Dockerfile.tau2

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -33,21 +33,21 @@ WORKDIR /Downloads
3333

3434
#Download and install tau from git
3535
#Change the tag below to force docker build not to use cache
36-
RUN echo "FORCE REDOWNLOAD 9_22_22_09_20" > /dev/null && git clone https://github.com/UO-OACISS/tau2.git
36+
RUN echo "FORCE REDOWNLOAD 12_15_22_10_38" > /dev/null && git clone https://github.com/UO-OACISS/tau2.git
3737
WORKDIR /Downloads/tau2
3838

3939
#Use known working version of tau2
40-
RUN git checkout 74190e57caacddf2bde3f2afb68ee12405117e16
40+
RUN git checkout 39b2d014c6bd67ff62f993cfca30e62081caa64d
4141

4242
#pthread+mpi
43-
RUN ./configure -cc=mpicc -c++=mpic++ -fortran=gfortran -mpi \
43+
RUN ./configure -cc=mpicc -c++=mpicxx -fortran=gfortran -mpi \
4444
-pthread -bfd=download -unwind=download -pdt=/opt/pdt \
4545
-pdt_c++=g++ -prefix=/opt/tau2 -adios=/opt/adios2 \
4646
-papi=/opt/papi \
4747
&& make -j$JOBS install
4848

4949
#pthread+python+mpi
50-
RUN ./configure -cc=mpicc -c++=mpic++ -fortran=gfortran -mpi \
50+
RUN ./configure -cc=mpicc -c++=mpicxx -fortran=gfortran -mpi \
5151
-pthread -bfd=download -unwind=download -pdt=/opt/pdt \
5252
-pdt_c++=g++ -prefix=/opt/tau2 -adios=/opt/adios2 \
5353
-python -pythoninc=/usr/include/python3.6m -pythonlib=/usr/lib/x86_64-linux-gnu/ \
@@ -63,7 +63,7 @@ RUN ./configure -cc=gcc -c++=g++ -fortran=gfortran \
6363
&& make -j$JOBS install
6464

6565
#openmp+mpi
66-
RUN ./configure -cc=mpicc -c++=mpic++ -fortran=gfortran -mpi \
66+
RUN ./configure -cc=mpicc -c++=mpicxx -fortran=gfortran -mpi \
6767
-openmp -bfd=download -unwind=download -pdt=/opt/pdt \
6868
-pdt_c++=g++ -prefix=/opt/tau2 -adios=/opt/adios2 \
6969
-papi=/opt/papi \

scripts/launch/run_services.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -223,7 +223,7 @@ if (( ${use_viz} == 1 )); then
223223

224224
echo "Chimbuko Services: run webserver ..."
225225
#python3 run_server.py $HOST $viz_port 2>&1 | tee "${log_dir}/webserver.log" &
226-
python3 manager.py runserver --host 0.0.0.0 --port ${viz_port} --debug | tee "${log_dir}/webserver.log" &
226+
python3 manager.py runserver --host 0.0.0.0 --port ${viz_port} --debug 2>&1 | tee "${log_dir}/webserver.log" &
227227
sleep 2
228228

229229
echo "Chimbuko Services: redis ping-pong ..."

0 commit comments

Comments
 (0)