Çözüm
# echo | openssl rsa -in cakey.pem -out cakey.pem
Enter pass phrase for cakey.pem:
writing RSA key
# echo | openssl rsa -in cakey.pem -out cakey.pem
Enter pass phrase for cakey.pem:
writing RSA key
cd /usr/local/directadmin/scripts
./move_domain.sh domain.com olduser newuser
sudo apt-get install gcp
function generatePassword($length=9, $strength=0) {
srand((double)microtime()*1000000);
$chars = 'abcdefghijklmnopqrstuvwxyz0123456789';
if ($strength > 1) $chars .= 'ABDGHJLMNPQRSTVWXZ';
if ($strength > 2) $chars .= "!@#$%";
if ($strength > 3) $chars .= '^&*(-_=+)';
$i = 0;$key = '';
while ($i <= $length) {$key .= $chars[rand(0, strlen($chars))];$i++;}
return $key;
}
echo generatePassword(9);
echo generatePassword(9,1);
echo generatePassword(9,2);
echo generatePassword(9,3);
echo generatePassword(9,4);
echo generatePassword(50,4);
$ cd repo
$ git config --bool core.bare true
$ mv .git ../repo.git
$ rm -Rf repo