I have a linux shared hosting with cpanel, I want to install Etherpad (http://etherpad.org/) on it. Please tell me steps how to do it?
Related
I created a java application on Openshift. I am able to login to my linux instance using my username and my private key. Now i need to install a third party software on my linux instance but when i try to do that it say Permission Denied.
/usr/bin/install: cannot create regular file
`/usr/local/lib/libogg.so.0.8.2': Permission denied
The reason for this is that i am not logged in as root.
I have scoured through net for like 6 hrs now and didn't find any solution how to login as root in my redhat linux server to install the software. I don't want to change the default install scripts. I am using a free version of Redhat.
Help Required!
It looks like you refer to OpenShift Online (cloud PaaS) gear that you are sshing into as to:
my redhat linux server
If that is the case, please note that users do not have root privileges on their OpenShift Online gears.
If you have your own RHEL server, you should know your root credentials. If it's a different server/not installed by you, you would need to ask its admin to add you to sudoers.
i think use two command for software installation like as
#yum install software package
#rpm -ivh software package
we use redhat linux
Good day!
I have some server with nodeJs and i want easy deploy my code to remote machine.
Case: simple netbook with Lubuntu+VisualStudio Code->run->delpoy to server (Ubuntu Server 14.04).
May be some solutions exists?
Thank you!
P.S. possible this may can help? build cordova by ssh
P.S. i change theme, because old theme is not 100% valid.
I'm trying to put in production my shiny app. I can run my shiny app locally on my Windows machine, from R. However, since we need to use Linux to deploy the app over the web, we decided to use a Linux server for that. We access this Linux server remotely, from our local machines (running Windows).
I followed the instruction at the RStudio website, and successful installed Shine Server on the Linux server. Its's running on it. I don't know what to do next. So, my question is: what should I do next? Please, remember that I access the Linux server remotely (using puty). Also, I have almost no knowledge of Linux.
Any guidance on what to do next is very welcome.
Some info that may be useful:
I use a Ubuntu 12.04.3
I ran as root (I think, but I can use sudo, for sure).
Another person has access to this server besides me.
We use R 3.0.2
you can follow the instructions here:
https://groups.google.com/forum/#!msg/shiny-discuss/NuZp0ziVXvw/BXHcIoXThnoJ
Short answer:
# this is all one line
sudo wget\
https://raw.github.com/rstudio/shiny-server/master/config/upstart/shiny-server.conf\
-O /etc/init/shiny-server.conf
# Start the server
sudo start shiny-server
Then just open a browser and point to it
I'm using XAMPP for windows to build my website projects, but I need to create a website in a UNIX/LINUX based server, but since I'm using XAMPP it is a Windows based server.
Somebody knows how can I do that in a windows machine, without having to install Linux in my machine?
Thanks in advance!
Install VirtualBox and run a VM of your favorite linux distribution. My suggestion would be Debian or Ubuntu.
I recently opened up a webserver in Amazon EC2. I managed to log in to the server using SSH with my mac. I also managed to install the EC2 API tool provided from Amazon. I have the XAMPP installation on my desktop. And I opened up a linux instance. I don't think I have a EBS(Elastic Block Store) mounted to the instance yet, I don't know how to do that. But How do copy the XAMPP installation file from my desktop to the server instance? Pls give me step-by-step instructions
I manage to solve my own question. I was using the scp protocol to transfer the XAMPP installation file. More info on this link: Secure Remote Logins and File Copying. This is the first time I used it, but you just type the command: scp -i ***.pem ec2-user#some_public_DNS /The/file/on/your/desktop. The file will then be transfer in a secure way to the remote server
I'm curious as to why you'd try to put XAMPP on an EC2 instance instead of simply using your system's package management system (e.g., yum, apt-get) to install what you need. This just seems like trying to hammer nails with the back of a screwdriver.