Sponsored Content
Full Discussion: SSH, again...
Top Forums UNIX for Advanced & Expert Users SSH, again... Post 25243 by RTM on Friday 26th of July 2002 10:39:44 AM
Old 07-26-2002
One of my fellow workers, a UNIX expert (someday to be guru) says yes. He said to take a look at Sunfreeware.com openssh for complete info on set up. Something about setting up a user and empty directory (look at Step Three on the web page).
 

9 More Discussions You Might Find Interesting

1. Cybersecurity

What's the difference between an SSH Client and an SSH Server?

Eh... yeah. What the title says. :D (1 Reply)
Discussion started by: PSC
1 Replies

2. Shell Programming and Scripting

could not send commands SSH session with Net::SSH::Expect

I am using Net::SSH::Expect to connect to the device(iLO) with SSH. After the $ssh->login() I'm able to view the prompt, but not able to send any coommands. With the putty I can connect to the device and execute the commands without any issues. Here is the sample script my $ssh =... (0 Replies)
Discussion started by: hansini
0 Replies

3. Shell Programming and Scripting

Using ssh to add register key on ssh server

Hi, I want to use ssh to add a register key on remote ssh server. Since there are space characters in my register key string, it always failed. If there is no space characters in the string, it worked fine. The following is what I have tried. It seems that "ssh" command doesn't care about double... (9 Replies)
Discussion started by: leaftree
9 Replies

4. UNIX for Dummies Questions & Answers

SSH SSH encountered 1 errors during the transfer

This issue was resolved due to using the correct user transferring the file over to the desktop. (1 Reply)
Discussion started by: Computergal2104
1 Replies

5. Shell Programming and Scripting

Ssh = ssh expect and keep everything not change include parameter postion

I have write a script which contains ssh -p 12345 dcplatform@10.125.42.50 ssh 127.0.0.1 -p 5555 "$CMD" ssh root@$GUEST_IP "$CMD" before I use public key, it works well, now I want to change to "expect", BUT I don't want to change above code and "parameter position" I can post a... (1 Reply)
Discussion started by: yanglei_fage
1 Replies

6. UNIX for Dummies Questions & Answers

SSH tunnel working for ssh but not for sshfs

I'm trying to setup a link between my home pc (work-machine) and a server at work (tar-machine) that is behind a gateway (hop-machine) and not directly accessible. my actions: work-machine$ ssh -L 1234:tar-machine:22 hop-machine work-machine$ ssh -p 1234 user@127.0.0.1 - shh access on... (1 Reply)
Discussion started by: Vathau
1 Replies

7. Shell Programming and Scripting

Check if file exists via ssh in ssh (nested)

I'm using redhat and have an odd issue with a nested ssh call. ssh -i ~/.ssh/transfer-key -q transfer@fserver1 ] && ssh -i ~/.ssh/transfer-key transfer@fserver1 "ssh -i ~/.ssh/sftp-key sftpin@10.0.0.1 ]" && ssh -i ~/.ssh/transfer-key transfer@fserver1 "scp -i ~/.ssh/sftp-key /home/S/outbox/*... (2 Replies)
Discussion started by: say170
2 Replies

8. UNIX for Beginners Questions & Answers

Ssh script to validate ssh connection to multiple serves with status

Hi, I want to validate ssh connection one after one for multiple servers..... password less keys already setup but now i want to validate if ssh is working fine or not... I have .sh script like below and i have servers.txt contains all the list of servers #/bin/bash for host in $(cat... (3 Replies)
Discussion started by: sreeram4
3 Replies

9. Shell Programming and Scripting

Find active SSH servers w/ ssh keys on LAN

Hi, I am trying to complete my bash script in order to find which SSH servers on LAN are still active with the ssh keys, but i am frozen at this step: #!/bin/bash # LAN SSH KEYS DISCOVERY SCRIPT </etc/passwd \ grep /bin/bash | cut -d: -f6 | sudo xargs -i -- sh -c ' && cat... (11 Replies)
Discussion started by: syrius
11 Replies
MojoMojo::Installation(3pm)				User Contributed Perl Documentation			       MojoMojo::Installation(3pm)

NAME
MojoMojo::Installation - Installation instructions for MojoMojo INSTALLING MOJOMOJO
Step 0 Install MojoMojo's prerequisites. See <http://mojomojo.org/documentation/installation>. Step 1 - install Install MojoMojo either using the cpan shell like this: cpan MojoMojo or by downloading the tarball from <http://search.cpan.org/dist/MojoMojo> and running perl Makefile.PL on it manually. If you do this, run make installdeps to get all the required modules installed. Step 2 - configure "mojomojo.conf" is the main configuration file and is in Config::General format. First make sure your config file has a valid DSN for your database (You can use SQLite, MySQL or PostgreSQL - SQLite by default). The setting you change is in the "connect_info" hash in the "Model::DBIC" block. For instance, for MySQL: dsn dbi:mysql:database=mojomojo;host=localhost user db_user password db_password or for SQLite: dsn dbi:SQLite:__HOME__/db/sqlite/mojomojo.db user db_user passwrd db_password or for PostgreSQL: dsn dbi:Pg:dbname=mojomojo;host=localhost;port=5432 user db_user password db_password For MySQL and PostgreSQL you want to create the database first (SQLite does this automatically) create database mojomojo; Once the DSN is setup, we "deploy" the schema and some initial data to the mojomojo database by running the following script: ./script/mojomojo_spawn_db.pl This script has sane defaults for a test install, but you can override these. Run it with --help to see usage information. Step 3 - launch MojoMojo is a Catalyst application and works with Catalyst's built-in web server, or with an external one. Using the Catalyst built-in server Catalyst includes a test server which can be started using: ./script/mojomojo_server.pl -p 3000 where 3000 is the port number and the default if no port is specified. Note that if you install it through the cpan shell, mojomojo_server will be found in your bin directory. Using an external web server MojoMojo has been tested with Apache, lighttpd and nginx. If you need to make a choice, nginx and lighttpd are much lighter in terms of resource consumption, and faster at serving static files, while Apache is more popular and powerful. Comparison information can be found at WikiVs: o <http://www.wikivs.com/wiki/Apache_vs_nginx> o <http://www.wikivs.com/wiki/Lighttpd_vs_nginx> o <http://www.wikivs.com/wiki/Apache_vs_Lighttpd> See <http://mojomojo.org/documentation/deployment> for how to setup MojoMojo with various web servers. Set up Apache using either mod_perl or FastCGI. See http://search.cpan.org/dist/Catalyst/lib/Catalyst/Manual/Cookbook.pod#Using_FastCGI for further information on FastCGI, or you can look at Catalyst::Engine::Apache for info on setting up Catalyst apps in Apache. If your server is connected to a http proxy you may need to add the following line to the main config block: using_frontend_proxy 1 Step 4 - login Login to your MojoMojo and change the admin password. The default login/pass is "admin"/"admin". For troubleshooting, see <http://mojomojo.org/troubleshooting>. Step 5 - create pages Create a new page. Decide what URL you would like for the page then browse to that URL. You will then be asked to add content. For example, if you want to create a page about food, go to /food. perl v5.14.2 2010-05-11 MojoMojo::Installation(3pm)
All times are GMT -4. The time now is 08:12 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy