I transitioning an owncloud installation from a C6 server to a new C7 server and used yum install owncloud to install it on the C7 server. I expected /var/www/owncloud to be generated but alas not. Quick Googling just showed examples of installing from the latest owncloud repository but not using yum. Have I missed something obvious when using yum to install?
Am 19.06.20 um 01:08 schrieb H:> I transitioning an owncloud installation from a C6 server to a new C7 server and used yum install owncloud to install it on the C7 server. I expected /var/www/owncloud to be generated but alas not. Quick Googling just showed examples of installing from the latest owncloud repository but not using yum. > > Have I missed something obvious when using yum to install? > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centosHi, the files are in a different directory. See the .conf files under /etc/httpd/conf.d/owncloud* First connection is allowed only from localhost. After finishing the wizard you can enable access by typing ln -s /etc/httpd/conf.d/owncloud-access.conf.avail /etc/httpd/conf.d/z-owncloud-access.conf You find that information in the file owncloud.conf under /etc/httpd/conf.d/ Cheers Juergen
Am 19.06.2020 um 01:08 schrieb H:> I transitioning an owncloud installation from a C6 server to a new C7 server and used yum install owncloud to install it on the C7 server. I expected /var/www/owncloud to be generated but alas not. Quick Googling just showed examples of installing from the latest owncloud repository but not using yum. > > Have I missed something obvious when using yum to install?rpm -qlv <packagename> shows you what you have installed into which locations on the system. Would have answered your question wihout googling from random resources. Alexander
On 06/19/2020 07:30 AM, Alexander Dalloz wrote:> Am 19.06.2020 um 01:08 schrieb H: >> I transitioning an owncloud installation from a C6 server to a new C7 server and used yum install owncloud to install it on the C7 server. I expected /var/www/owncloud to be generated but alas not. Quick Googling just showed examples of installing from the latest owncloud repository but not using yum. >> >> Have I missed something obvious when using yum to install? > > rpm -qlv <packagename> > > shows you what you have installed into which locations on the system. Would have answered your question wihout googling from random resources. > > Alexander > > > _______________________________________________ > CentOS mailing list > CentOS at centos.org > https://lists.centos.org/mailman/listinfo/centosThank you, it installed to /usr/share, not what I expected. I may go with nextcloud instead, though.