Sorry for this rudimentary question, but I am not a Linux guy at all and have never worked with Solr before.
I have deployed a new VM on Azure with the Bitnami Solr 6.4 image.
I am using the web admin UI to create a new core. It states that the instanceDir and the dataDir need to exist prior to creating the core. Upon attempting to create these directories, I am confronted with a Permission Denied issue.
mkdir /opt/bitnami/apache-solr/server/solr/extremeledcore: permission denied
It seems the owner of the solr
directory is a user of solr
, and only the owner is allowed to create directories.
But the problem is, I have no idea the credentials of user solr
. I presume it is a default user created during the install. I have a different username when logging into the VM, let's call it vmadmin
, which is how I login to the server using putty and FileZilla. And attempting to mkdir
in either FileZilla or Putty, results in a Permission Denied
error.
Note it is also a bit confusing that when I login as vmadmin
in putty, the prompt shows bitnami@SolrVM
, which I believe is typically in the format of username@servername
...but I logged in as vmadmin
not bitnami
....but I digress.
The only other login credientials I am aware of are for the solr
admin panel itself and that user name created by the solr install is simply user
. So I have no idea how to login as solr
or override the properties to allow my VM admin user to mkdir
.
~Windows Guy in a Linux World