Vesta Control Panel - Forum

Community Forum

Skip to content

Advanced search
  • Quick links
    • Main site
    • Github repo
    • Google Search
  • FAQ
  • Login
  • Register
  • Board index Dev Section 3rd Party Software
  • Search

Vesta Auto App Installer [Version 1.0 OUTDATED]

Section with additional software for Vesta
Locked
  • Print view
Advanced search
35 posts
  • Previous
  • 1
  • 2
  • 3
  • 4
  • Next
imperio
VestaCP Team
Posts: 7000
Joined: Sat Dec 01, 2012 12:37 pm
Contact:
Contact imperio
Website

Re: Vesta Automatic App Installer [Version 1.0]

Post by imperio » Mon Jan 19, 2015 9:57 am

We think about it in the following versions
Top

joem
Posts: 378
Joined: Thu Nov 13, 2014 8:33 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: Vesta Automatic App Installer [Version 1.0]

Post by joem » Mon Jan 19, 2015 10:41 am

imperio wrote:We think about it in the following versions

Do you by chance happen know how much, or how many cli files have been changed for the new version?
Top

mephivio
Posts: 198
Joined: Thu Mar 27, 2014 7:35 am

Os: Debian 8x
Web: nginx + php-fpm
Re: Vesta Automatic App Installer [Version 1.0]

Post by mephivio » Mon Jan 19, 2015 7:24 pm

Hi Joem

Do you have a new release with new packages ?
thanks again for your work

J
Top

joem
Posts: 378
Joined: Thu Nov 13, 2014 8:33 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: Vesta Automatic App Installer [Version 1.0]

Post by joem » Wed Jan 21, 2015 6:25 am

mephivio wrote:Hi Joem

Do you have a new release with new packages ?
thanks again for your work

J
When the new update comes out I plan to have an update 2 to 3 days later.
Top

bryankaraffa
Posts: 2
Joined: Fri Feb 13, 2015 8:02 pm

Re: Vesta Automatic App Installer [Version 1.0]

Post by bryankaraffa » Fri Feb 13, 2015 8:07 pm

Is there a git repo for this that we can contribute to? I have been working on my own set of bash scripts that will accomplish the same thing but wouldn't mind contributing to what you're developing to improve Vesta CP. Let me know if you're interested

So far, just have WordPress, but planning on making it more modular which would enable other PHP Apps to be installed just as easy...
https://github.com/bryankaraffa/vestacp-admin-scripts

Feel free to fork / contribute if you want or send me the link to your git repo and maybe we can collaborate to make this an official feature :)
Top

warwit
Posts: 2
Joined: Sat Mar 07, 2015 12:52 am

Re: Vesta Automatic App Installer [Version 1.0]

Post by warwit » Sat Mar 07, 2015 1:22 am

This is awesome, thanks.

I'm new to a lot of this higher level server stuff, but how difficult would a Magento auto-installer be to implement? I know it's got a reputation as being tedious to maintain and that many autoinstallers like this exclude it more times than not, so it would make sense if it weren't in the plans. But for those using VestaCP for reseller type stuff, there's a lot of value there.

Thoughts?
Top

bryankaraffa
Posts: 2
Joined: Fri Feb 13, 2015 8:02 pm

Re: Vesta Automatic App Installer [Version 1.0]

Post by bryankaraffa » Sun Mar 08, 2015 4:26 am

warwit wrote:This is awesome, thanks.

I'm new to a lot of this higher level server stuff, but how difficult would a Magento auto-installer be to implement? I know it's got a reputation as being tedious to maintain and that many autoinstallers like this exclude it more times than not, so it would make sense if it weren't in the plans. But for those using VestaCP for reseller type stuff, there's a lot of value there.

Thoughts?
I just added a Magento auto-installer script to my set of VestaCP scripts. Here's how to use it:

Clone the github repo:

Code: Select all

git clone https://github.com/bryankaraffa/vestacp-admin-scripts.git
cd into the newly created directory

Code: Select all

cd vestacp-admin-scripts
Run the Magento auto-installer. This will create the website, create a mysql database, download and extract the Magento .tar.gz from their site

Code: Select all

$ ./create-magento-site.sh 
Your VestaCP hostname, followed by [ENTER]:
yourvestacphost.com
Your VestaCP username, followed by [ENTER]:
admin
Your VestaCP user password, followed by [ENTER]:
Desired domain name for Magento site, followed by [ENTER]:
mymagentoshop.yourvestacphost.com
[create-magento-site] Creating domain via API call
[create-magento-site] Rebuilding the web configs via API call
[create-magento-site] Downloading magento latest.tar.gz
[create-magento-site] Unpacking magento latest.tar.gz
[create-magento-site] Uploading magento files to ~/web/mymagentoshop.yourvestacphost.com/public_html
[create-magento-site] Removing ~/web/mymagentoshop.yourvestacphost.com/public_html/index.html
[create-magento-site] Creating Database via API call
0[create-magento-site] ********************************************
[create-magento-site] MySQL DB Credentials
[create-magento-site] Database: admin_wp_mymagentoshopyourvestacphostcom
[create-magento-site] Username: admin_wp_mymagento
[create-magento-site] Password: UmqIWseN2YDVVKio
[create-magento-site] ********************************************
[create-magento-site] Completed!
[create-magento-site] You can now visit the website to finish the installation.

I primarily use these to quickly create + setup websites for customers and my own development purposes.. A lot easier and faster than repeating the same steps over and over any time I wanted to "just try something"
Top

flacosa
Posts: 43
Joined: Thu Mar 05, 2015 11:40 pm

Re: Vesta Automatic App Installer [Version 1.0]

Post by flacosa » Wed Mar 11, 2015 10:13 am

You can install the app in the public_html directory without having to use a subdirectory ?

directly public_html
Thank You
Top

joem
Posts: 378
Joined: Thu Nov 13, 2014 8:33 am

Os: CentOS 6x
Web: nginx + php-fpm
Re: Vesta Automatic App Installer [Version 1.0]

Post by joem » Thu Mar 12, 2015 12:05 am

bryankaraffa wrote:Is there a git repo for this that we can contribute to? I have been working on my own set of bash scripts that will accomplish the same thing but wouldn't mind contributing to what you're developing to improve Vesta CP. Let me know if you're interested

So far, just have WordPress, but planning on making it more modular which would enable other PHP Apps to be installed just as easy...
https://github.com/bryankaraffa/vestacp-admin-scripts

Feel free to fork / contribute if you want or send me the link to your git repo and maybe we can collaborate to make this an official feature :)
Sorry no repo for this and no plans to add one. I don't really care for the github thing.

warwit wrote:This is awesome, thanks.

I'm new to a lot of this higher level server stuff, but how difficult would a Magento auto-installer be to implement? I know it's got a reputation as being tedious to maintain and that many autoinstallers like this exclude it more times than not, so it would make sense if it weren't in the plans. But for those using VestaCP for reseller type stuff, there's a lot of value there.

Thoughts?

Sorry I will not be adding Magento.
flacosa wrote:You can install the app in the public_html directory without having to use a subdirectory ?

directly public_html
Thank You
Yes
Top

ashutosh
Posts: 1
Joined: Fri Apr 03, 2015 8:51 am

Re: Vesta Automatic App Installer [Version 1.0]

Post by ashutosh » Fri Apr 03, 2015 8:58 am

Thanks for your script . it worked well till i used mysql locally.but recently i moved the mysql to other server and app installer fails . i tried to change the host . still it says connection failed .

Note:--vesta server can communicate with mysql server as i can install the application manualy . also i can create database on mysql server form vesta panel.
Top


Locked
  • Print view

35 posts
  • Previous
  • 1
  • 2
  • 3
  • 4
  • Next

Return to “3rd Party Software”



  • Board index
  • All times are UTC
  • Delete all board cookies
  • The team
Powered by phpBB® Forum Software © phpBB Limited
*Original Author: Brad Veryard
*Updated to 3.2 by MannixMD
 

 

cron

Login  •  Register

I forgot my password