summaryrefslogtreecommitdiffstats
path: root/juju/juju-vnfmadapter/Juju-vnfmadapterService/docker/docker-env-config.sh
blob: 1cd99b055dbe776a9cd22af4959b23dbe1b18e6b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#!/bin/bash
install_sf(){

	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 update -y
	
	yum install -y wget unzip socat java-1.8.0-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=mysql --datadir=/var/lib/mysql
	
	# Set up tomcat
	wget -q https://archive.apache.org/dist/tomcat/tomcat-8/v8.5.30/bin/apache-tomcat-8.5.30.tar.gz && \
		tar --strip-components=1 -xf apache-tomcat-8.5.30.tar.gz && \
		rm -f apache-tomcat-8.5.30.tar.gz && \
		rm -rf webapps && \
		mkdir -p webapps/ROOT
	echo 'export CATALINA_OPTS="$CATALINA_OPTS -Xms64m -Xmx256m -XX:MaxPermSize=64m"' > /service/bin/setenv.sh
	
	# Set up microservice
	wget -q -O vfc-gvnfm-jujudriver.zip "https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.vfc.nfvo.driver.vnfm.gvnfm&a=juju-vnfmadapterservice-deployment&v=LATEST&e=zip" && \
		unzip -q -o -B vfc-gvnfm-jujudriver.zip && \
		rm -f vfc-gvnfm-jujudriver.zip
	# Set permissions
	find . -type d -exec chmod o-w {} \;
	find . -name "*.sh" -exec chmod +x {} \;
}

add_user(){

	useradd onap
	yum -y install sudo
	chmod u+x /etc/sudoers
	sed -i '/Same thing without a password/a\onap    ALL=(ALL:ALL) NOPASSWD:ALL' /etc/sudoers
	chmod u-x /etc/sudoers
	chown onap:onap -R /service
}

clean_sf_cache(){
															
	yum clean all
}

install_sf
wait
add_user
clean_sf_cache