Tag: server
-
Setting up FTP Server for WordPress in Centos
Setting up FTP Server for WordPress in Centos. STEP-1 Install Software Dependencies: [mp@web-srv1 ~]$sudo yum install vsftpd ftp -y [mp@web-srv1 ~]$yum install gcc php-devel php-pear libssh2 libssh2-devel make –y STEP-2 FTP Server Setup: #Make changes in /etc/vsftpd/vsftpd.conf and Uncomment following Lines anonymous_enable=NO ascii_upload_enable=YES ascii_download_enable=YES chroot_local_user=YES [mp@web-srv1 ~]$sudo /etc/init.d/vsftpd start [mp@web-srv1 ~]$chkconfig vsftpd on STEP-3 User…
-
Subversion SVN Server on Linux Part-1
Introduction: Subversion SVN Server most widely used software version and revision control open source software, used by developer to maintain historical data as source code and file. Software Dependencies: Apache, Subversion, mod_dav_svn and mod_ssl Installation: [root@localhost ~]# yum install httpd subversion mod_dav_svn mod_ssl -y Prerequisites: Make directory where do you want to put your svn…