SA-MP Forums Archive
Control Panel Without ssh2 - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Server (https://sampforum.blast.hk/forumdisplay.php?fid=6)
+--- Forum: Server Support (https://sampforum.blast.hk/forumdisplay.php?fid=19)
+--- Thread: Control Panel Without ssh2 (/showthread.php?tid=448890)



Control Panel Without ssh2 - GreTex - 06.07.2013

Hello guys i want to know that if there is any Control panel without ssh2 extension because When i try to install ssh2 i get failed

so i wanted a control panel without ssh2
it has Restart/stop/start and FTP and Server.cfg editor


Re: Control Panel Without ssh2 - 101 - 06.07.2013

It'll be hard to find, and the one you can I wouldn't trust as much. With SSH2 you can create specific users to run only that server, whilst avoiding giving the panel actual root info.


Re: Control Panel Without ssh2 - GreTex - 06.07.2013

i can't install ssh2


Re: Control Panel Without ssh2 - GWMPT - 06.07.2013

Which linux operating system are you using?


Re: Control Panel Without ssh2 - GreTex - 06.07.2013

centos 5


Re: Control Panel Without ssh2 - 101 - 06.07.2013

Why can't you install it? Whats wrong?


Re: Control Panel Without ssh2 - GWMPT - 06.07.2013

If you want to install it, just run the following commands
Код:
wget http://libssh2.org/download/libssh2-1.4.3.tar.gz
tar xvzf libssh2-1.4.3.tar.gz
cd libssh2-1.4.3
yum install openssl-devel -y
./configure && make install
yum install php-pear -y
pecl install ssh2 channel://pecl.php.net/ssh2-0.12
echo extension=ssh2.so >> /etc/php.ini
service httpd restart



Re: Control Panel Without ssh2 - GreTex - 06.07.2013

i did all that and to check if its installed i did
php -m | grep ssh2

it showed
pawn Код:
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ssh2.so' - /usr/lib64/php/modules/ssh2.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ssh2.so' - /usr/lib64/php/modules/ssh2.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ssh2.so' - /usr/lib64/php/modules/ssh2.so: cannot open shared object file: No such file or directory in Unknown on line 0
PHP Warning:  PHP Startup: Unable to load dynamic library '/usr/lib64/php/modules/ssh2.so' - /usr/lib64/php/modules/ssh2.so: cannot open shared object file: No such file or directory in Unknown on line 0



Re: Control Panel Without ssh2 - ColorHost-Kevin - 06.07.2013

http://blog.dynamichosting.biz/2011/...p-on-centos-5/

Here is a good guide for installing the extension, which from above doesnt look to be.


Re: Control Panel Without ssh2 - GWMPT - 06.07.2013

hmm, try to run again the
Код:
pecl install ssh2 channel://pecl.php.net/ssh2-0.12
command again, and give me the output, thanks.