Pimcore installation on webserver - pimcore

I started to test the new Pimcore during the last few days. I realized, you can't install Pimcore with the common vendor/bin/pimcore-install command anymore. So how I am supposed to install Pimcore on my webserver after I loaded the files via FTP to the server.
Do I need a SSL connection? If this is the case, I have to switch me provider.
Thanks a lot.

Yes you need a SSH connection to run the needed install commands via the CLI.

I don't think you need a SSL connection but you do need CLI terminal in order to you PHP-CLI commands and PIMCore CLI commands in your web server.

Related

command prompt when i try install any dependence

when I try to install any dependence in command prompt get this error message and tried to google but nothing any one to help me please
please I need help someone to help me
try installing locally. and add this path to your system variable: C:\Program Files\nodejs
Reinstall the node.
You have two ways to install Node.js on your computer.
Option 1 – Setup by running the .msi installation file
Its a typical Windows installation and automated. No need to add
entries in environment varaiable
Option 2 – Setup by extracting .zip file
This method does not require admin access and can be used to install
on nodejs on a system on which you dont have admin access such as you
official laptop or desktop.
Removing nodejs is as simple as deleting the folder. You will have
to add entries in environment variable if you want to execute node
command from any location in windows command prompt. https://nodejs.org/en/download/
Based on the screenshot.your access is denied.Would suggest starting the terminal as an administrator before running the command.

How to run React Web Application forever

I have created a web application using React framework. I am able to Run it in localhost using npm start command.
I have a server in AWS ubuntu 14.04. I have uploaded all code there and run the application using npm command. It is working well. But if i close the terminal then it has been stopped. I know we need to run that instance or service. But how can we do it forever without any UI of ubuntu?
Did you link the public directory's file(HTMl/PHP file) to your dedicated host server?
If not, Look to do how to setup it with AWS in local you can do it with virtual hosting. I'm sure in AWS there'll be any same way to do.
You can use a library called forever which will keep the process running in the background.
https://github.com/foreverjs/forever

Adding Support for SCP and SFTP for Curl on Linux

I've been been desperately trying to add SFTP and SCP support for Curl on my CentOS box. I found something resembling a solution here:
http://andrewberls.com/blog/post/adding-sftp-support-to-curl
I followed these steps but found that when attempting to get a file via both SCP and SFTP, the connection hangs once the file has been found. I cannot fix this and cannot find an alternative solution.
I have to use Curl for a job at work and therefore cannot use another lib. Has anyone managed to successfully add support for SCP and SFTP on Curl? I have a test server setup and other protocols such as FTP work as expected.
Any help would be greatly appreciated!
Thanks in advance,
Peter
Although Curl does support SFTP, support isn't automatically included in the default package.
This website: http://andrewberls.com/blog/post/adding-sftp-support-to-curl provided the details which helped me add the required support for SFTP. As the site didn't work 100% for me, I've outlined the different steps taken below.
Manually downloading libssh2 didn't work for me so I used yum to install the two packages:
yum install libssh2 libssh2-devel
and then followed step two configuring Curl to install using the above libraries
The final step was to restart sshd:
service sshd restart
There you have it. Double check that SFTP is on the list of support protocols by running
curl -V
When I initially tested, Curl complained about key authentication issues, but you can force Curl to use any authentication to connect:
curl --anyauth sftp://user:passwd#127.0.0.1/directory -o Test.txt
This will round robin the different supported authentication methods and let you use you login credentials instead.
I hope this helps alleviate any other headaches for people trying to achieve the same.

how to install ForgeRock Open Identity Stack

I download frstack from
https://github.com/wstrange/frstack#install-the-forgerock-open-identity-stack-ois
After I install Ansible and Vagrant, I don't know how to make it work
Are there any references available?
Thanks
Author of that project here. That is very much a work in progress - so I would not start with that.
Just get a tomcat instance running and deploy OpenAM to it. Once you understand the basics then you can look at an automated deployment using Ansible.

Can't login to openshift origin?

I installed openshift origin in CentOS 6.5 minimal installation on Windows Azure vps using oo-installer. I used same server as both broker and node. Installation completed without any errors. After installations when I tried to login to the openshift console using username/password as openshift/openshift and admin/admin but it is giving an error stating as bad password. I tried to connect to the server using rhc but same results occurred. Now where can I change my password? Where will be the openshift's log files? How can I diagnose my openshift installation?
The default credentials are 'demo/changeme', according to this guide. They worked for my Origin install.
You can change the password and add users with htpasswd (check out this post). So, for example:
sudo yum install -y htpasswd
htpasswd -c /etc/openshift/htpasswd demo
A lot of the relevant log files were in /var/log/openshift for me.
I found the command oo-diagnostics -v –abortok useful for diagnosing issues.
Hope that helps!

Resources