Configuration cleanup for Solr 5 - mostly cleaning up solrconfig.xml
[lui-solr.git] / zookeeper / etc / create-solrtest.keystore.sh
1 #!/bin/bash -ex
2
3 # Licensed to the Apache Software Foundation (ASF) under one or more
4 # contributor license agreements.  See the NOTICE file distributed with
5 # this work for additional information regarding copyright ownership.
6 # The ASF licenses this file to You under the Apache License, Version 2.0
7 # (the "License"); you may not use this file except in compliance with
8 # the License.  You may obtain a copy of the License at
9 #
10 #     http://www.apache.org/licenses/LICENSE-2.0
11 #
12 # Unless required by applicable law or agreed to in writing, software
13 # distributed under the License is distributed on an "AS IS" BASIS,
14 # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 # See the License for the specific language governing permissions and
16 # limitations under the License.
17
18 ############
19  
20 # This script shows how the solrtest.keystore file used for solr tests 
21 # and these example configs was generated.
22 #
23 # Running this script should only be necessary if the keystore file
24 # needs to be replaced, which shouldn't be required until sometime around
25 # the year 4751.
26 #
27 # NOTE: the "-ext" option used in the "keytool" command requires that you have
28 # the java7 version of keytool, but the generated key will work with any 
29 # version of java
30
31 echo "### remove old keystore"
32 rm -f solrtest.keystore
33
34 echo "### create keystore and keys"
35 keytool -keystore solrtest.keystore -storepass "secret" -alias solrtest -keypass "secret" -genkey -keyalg RSA -dname "cn=localhost, ou=SolrTest, o=lucene.apache.org, c=US" -ext "san=ip:127.0.0.1" -validity 999999
36
37