Two main process in vfc huawei vnfm pod 62/113062/1
authorsekharhuawei <reddi.shekhar@huawei.com>
Wed, 23 Sep 2020 13:26:27 +0000 (18:56 +0530)
committersekharhuawei <reddi.shekhar@huawei.com>
Wed, 23 Sep 2020 13:26:27 +0000 (18:56 +0530)
Issue-ID: VFC-1692

Signed-off-by: sekharhuawei <reddi.shekhar@huawei.com>
Change-Id: I7f5467f8ec7a17ed91ba82b3a9b0e211c603d04f

huawei/vnfmadapter/VnfmadapterService/docker/Dockerfile
huawei/vnfmadapter/VnfmadapterService/docker/docker-entrypoint.sh
huawei/vnfmadapter/VnfmadapterService/docker/docker-env-config.sh

index 696d4cd..a257f9e 100644 (file)
@@ -6,6 +6,9 @@ ENV CATALINA_HOME /service
 ADD . /service
 WORKDIR /service
 RUN bash docker-env-config.sh
+VOLUME /var/lib/mysql
 
+
+EXPOSE 8482
 USER onap
 ENTRYPOINT /service/docker-entrypoint.sh
index 9cfd4dc..e61bbd1 100755 (executable)
@@ -46,11 +46,17 @@ echo
 # Configure service based on docker environment variables
 ./instance-config.sh
 
+# Start mysql
+/usr/bin/mysqld_safe &
+
 # Perform one-time config
 if [ ! -e init.log ]; then
     # Perform workarounds due to defects in release binary
     ./instance-workaround.sh
 
+    # Init mysql; set root password
+    ./init-mysql.sh
+
     # microservice-specific one-time initialization
     ./instance-init.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