Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - safranero

Pages: [1]
1
Apache / Re: Installation subversion on centos web panel
« on: December 28, 2017, 02:59:26 PM »
I can't modify my post.

On the last step on the line:

chown apache.apache repo/

You use nobody against apache.

2
Apache / Installation subversion on centos web panel
« on: December 14, 2017, 09:08:42 AM »
Hello,

After of read differents manuals to installation of subversion in Centos that not works in centos web panel I want to public my instructions for installation of subversion.

First of all, I want to excuse of my bad english. Is more difficult to me explains the instrucctions in other language.

For the installation I use Centos 7 updated and CWP version: 0.9.8.375.

This installation is fresh, without any component aditional and any account created.

1. Firstly update your OS:

Code: [Select]
yum -y update
2. When centos updated you can reset your server for apply the changes if is necessary. I make it because is a fresh installation and don't have any service working.

Code: [Select]
reboot
3. Then, we install the necessary package for subversion.

Code: [Select]
yum install subversion mod_dav_svn
Anotation: I usually create a domain account before of step two and change the index.html in /home/<useraccount>/public_html/ for see that apache works fine. I make it because after of step two is likely that domain account showing the default index of apache because the configuration is not ok.

4. The next step and necessary is reinstall cwp-httpd. It's necessary because apache don't work after installation of subversion and the domain accounts don't works:

Code: [Select]
yum reinstall cwp-httpd
Anotation: For me not is necessary rebuild vhosts, but if don't working the vhosts you can rebuild from the panel.

5. By default the instalation of subversion and the modules saves the files in /etc/httpd/ and cwp uses /usr/local/apache for save the configurations of apache. Then we need copy these files:

Code: [Select]
cp /etc/httpd/conf.modules.d/10-subversion.conf /usr/local/apache/conf.d/

cp /etc/httpd/modules/mod_dav_svn.so /usr/local/apache/modules/
cp /etc/httpd/modules/mod_authz_svn.so /usr/local/apache/modules/
cp /etc/httpd/modules/mod_dontdothat.so /usr/local/apache/modules/

6. Now, we need edite the conf file of httpd:/usr/local/apache/conf/httpd.conf

You can use the prefered editor. I use nano.

We search or uncomment these lines:

Code: [Select]
LoadModule dav_module modules/mod_dav.so
LoadModule dav_fs_module modules/mod_dav_fs.so

For uncomment you only have to delete "#" sign of first character line.

7. Next step is edit /usr/local/apache/conf.d/10-subversion.conf

Add the next lines in end of file

Code: [Select]
<Location /svn>
DAV svn
SVNParentPath /var/www/svn/
AuthType Basic
AuthName "SVN Repository"
AuthUserFile /etc/svn-auth-accounts
Require valid-user
</Location>

8. Now, we create the file for the users of svn

Code: [Select]
htpasswd -cm /etc/svn-auth-accounts <username>
Change <username> for your user.

If you want add more users the line is:

Code: [Select]
htpasswd -m /etc/svn-auth-accounts <username>

Because you not need create the file again.

9. Now, apply permissions and user to the file

Code: [Select]
chown apache.apache /etc/svn-auth-accounts
chmod 644 /etc/svn-auth-accounts

10. Okey, the configuration finished, now we can create our repository.

Code: [Select]
mkdir /var/www/svn
cd /var/www/svn

#Command to create our first repository
svnadmin create repo

#Change permissions
chown apache.apache repo/

11. Finally you needs restart apache:

Code: [Select]
systemctl restart httpd
All have to work fine, your accounts and your svn repo. You can probe your repo from your prefered web navigator.

http://<your_ip>/svn/repo

If all works fine shows a prompt for access to the repo with your created user.

A greeting!

3
CentOS 7 Problems / Re: CWP on Centos 7, Amazon EC2, VHOST not working
« on: December 12, 2017, 02:19:33 PM »
Hello,

I have the same problem. I can see your site, you solved the problem?

A greeting.

Pages: [1]