Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

resolve 76% hanging problem; add vncserver dependencies to enable dbca #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion assets/dbca.rsp
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ CHARACTERSET="AL32UTF8"
# Default value : None
# Mandatory : NO
#-----------------------------------------------------------------------------
INITPARAMS="memory_target=0,sga_target=500,pga_aggregate_target=100"
INITPARAMS="memory_target=0,sga_target=500,pga_aggregate_target=100,java_jit_enabled=false"

#-----------------------------------------------------------------------------
# Name : SAMPLESCHEMA
Expand Down
5 changes: 4 additions & 1 deletion assets/setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,10 @@ trap "echo_red '******* Caught SIGINT signal. Stopping...'; exit 2" SIGINT
deps () {

echo "Installing dependencies"
yum -y install binutils compat-libstdc++-33 compat-libstdc++-33.i686 ksh elfutils-libelf elfutils-libelf-devel glibc glibc-common glibc-devel gcc gcc-c++ libaio libaio.i686 libaio-devel libaio-devel.i686 libgcc libstdc++ libstdc++.i686 libstdc++-devel libstdc++-devel.i686 make sysstat unixODBC unixODBC-devel
yum -y install binutils compat-libstdc++-33 compat-libstdc++-33.i686 ksh elfutils-libelf elfutils-libelf-devel \
glibc glibc-common glibc-devel gcc gcc-c++ libaio libaio.i686 libaio-devel libaio-devel.i686 libgcc libstdc++ \
libstdc++.i686 libstdc++-devel libstdc++-devel.i686 make sysstat unixODBC unixODBC-devel \
epel-release tigervnc-server tigervnc-server-minimal less which man
yum clean all
rm -rf /var/lib/{cache,log} /var/log/lastlog

Expand Down