Merge "Two main process in vfc huawei vnfm pod Issue-ID: VFC-1692"
[vfc/nfvo/driver/vnfm/svnfm.git] / huawei / vnfmadapter / VnfmadapterService / docker / docker-env-config.sh
index 3ae4f98..7c4d235 100644 (file)
@@ -2,7 +2,33 @@
 add_user(){
 
        useradd  onap
-                 chown onap:onap -R /service
+}
+
+set_up_mysql_jdk(){
+
+       sed -i 's/enabled=1/enabled=0/' /etc/yum/pluginconf.d/fastestmirror.conf
+       sed -i 's|#baseurl=http://mirror.centos.org/centos|baseurl=http://mirrors.ocf.berkeley.edu/centos|' /etc/yum.repos.d/*.repo
+       yum -y update
+
+       yum -y install wget unzip socat java-11-openjdk-headless
+       sed -i 's|#networkaddress.cache.ttl=-1|networkaddress.cache.ttl=10|' /usr/lib/jvm/jre/lib/security/java.security
+
+       # Set up mysql
+       wget -q http://repo.mysql.com/mysql-community-release-el7-5.noarch.rpm && \
+               rpm -ivh mysql-community-release-el7-5.noarch.rpm && \
+               rm -f mysql-community-release-el7-5.noarch.rpm
+       yum -y update
+       yum -y install mysql-server
+       mysql_install_db --user=onap --datadir=/var/lib/mysql
+       chown onap:onap -R /var/run/mysqld
+       chmod g+s /var/run/mysqld
+       setfacl -d --set u:onap:rwx /var/run/mysqld
+       chown onap:onap /var/log/mysqld.log
+       chmod g+s /var/log/mysqld.log
+       chown onap:onap -R /var/lib/mysql-files
+       chmod g+s /var/lib/mysql-files
+       setfacl -d --set u:onap:rwx /var/lib/mysql-files
+       chown onap:onap /etc/my.cnf
 }
 
 set_up_tomcat(){
@@ -35,6 +61,9 @@ clean_sf_cache(){
        yum clean all
 }
 
+add_user
+set_up_mysql_jdk
+wait
 set_up_tomcat
 wait
 clean_sf_cache